aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/kernel-parameters.txt
blob: 7bcdebffdab3850d9d3471a2f3ca5ea3b1f0b32a (plain) (blame)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
                          Kernel Parameters
                          ~~~~~~~~~~~~~~~~~

The following is a consolidated list of the kernel parameters as implemented
(mostly) by the __setup() macro and sorted into English Dictionary order
(defined as ignoring all punctuation and sorting digits before letters in a
case insensitive manner), and with descriptions where known.

Module parameters for loadable modules are specified only as the
parameter name with optional '=' and value as appropriate, such as:

	modprobe usbcore blinkenlights=1

Module parameters for modules that are built into the kernel image
are specified on the kernel command line with the module name plus
'.' plus parameter name, with '=' and value if appropriate, such as:

	usbcore.blinkenlights=1

Hyphens (dashes) and underscores are equivalent in parameter names, so
	log_buf_len=1M print-fatal-signals=1
can also be entered as
	log-buf-len=1M print_fatal_signals=1


This document may not be entirely up to date and comprehensive. The command
"modinfo -p ${modulename}" shows a current list of all parameters of a loadable
module. Loadable modules, after being loaded into the running kernel, also
reveal their parameters in /sys/module/${modulename}/parameters/. Some of these
parameters may be changed at runtime by the command
"echo -n ${value} > /sys/module/${modulename}/parameters/${parm}".

The parameters listed below are only valid if certain kernel build options were
enabled and if respective hardware is present. The text in square brackets at
the beginning of each description states the restrictions within which a
parameter is applicable:

	ACPI	ACPI support is enabled.
	AGP	AGP (Accelerated Graphics Port) is enabled.
	ALSA	ALSA sound support is enabled.
	APIC	APIC support is enabled.
	APM	Advanced Power Management support is enabled.
	AVR32	AVR32 architecture is enabled.
	AX25	Appropriate AX.25 support is enabled.
	BLACKFIN Blackfin architecture is enabled.
	DRM	Direct Rendering Management support is enabled.
	EDD	BIOS Enhanced Disk Drive Services (EDD) is enabled
	EFI	EFI Partitioning (GPT) is enabled
	EIDE	EIDE/ATAPI support is enabled.
	FB	The frame buffer device is enabled.
	HW	Appropriate hardware is enabled.
	IA-64	IA-64 architecture is enabled.
	IMA     Integrity measurement architecture is enabled.
	IOSCHED	More than one I/O scheduler is enabled.
	IP_PNP	IP DHCP, BOOTP, or RARP is enabled.
	ISAPNP	ISA PnP code is enabled.
	ISDN	Appropriate ISDN support is enabled.
	JOY	Appropriate joystick support is enabled.
	LIBATA  Libata driver is enabled
	LP	Printer support is enabled.
	LOOP	Loopback device support is enabled.
	M68k	M68k architecture is enabled.
			These options have more detailed description inside of
			Documentation/m68k/kernel-options.txt.
	MCA	MCA bus support is enabled.
	MDA	MDA console support is enabled.
	MOUSE	Appropriate mouse support is enabled.
	MSI	Message Signaled Interrupts (PCI).
	MTD	MTD (Memory Technology Device) support is enabled.
	NET	Appropriate network support is enabled.
	NUMA	NUMA support is enabled.
	GENERIC_TIME The generic timeofday code is enabled.
	NFS	Appropriate NFS support is enabled.
	OSS	OSS sound support is enabled.
	PV_OPS	A paravirtualized kernel is enabled.
	PARIDE	The ParIDE (parallel port IDE) subsystem is enabled.
	PARISC	The PA-RISC architecture is enabled.
	PCI	PCI bus support is enabled.
	PCIE	PCI Express support is enabled.
	PCMCIA	The PCMCIA subsystem is enabled.
	PNP	Plug & Play support is enabled.
	PPC	PowerPC architecture is enabled.
	PPT	Parallel port support is enabled.
	PS2	Appropriate PS/2 support is enabled.
	RAM	RAM disk support is enabled.
	ROOTPLUG The example Root Plug LSM is enabled.
	S390	S390 architecture is enabled.
	SCSI	Appropriate SCSI support is enabled.
			A lot of drivers has their options described inside of
			Documentation/scsi/.
	SECURITY Different security models are enabled.
	SELINUX SELinux support is enabled.
	SERIAL	Serial support is enabled.
	SH	SuperH architecture is enabled.
	SMP	The kernel is an SMP kernel.
	SPARC	Sparc architecture is enabled.
	SWSUSP	Software suspend (hibernation) is enabled.
	SUSPEND	System suspend states are enabled.
	FTRACE	Function tracing enabled.
	TS	Appropriate touchscreen support is enabled.
	UMS	USB Mass Storage support is enabled.
	USB	USB support is enabled.
	USBHID	USB Human Interface Device support is enabled.
	V4L	Video For Linux support is enabled.
	VGA	The VGA console has been enabled.
	VT	Virtual terminal support is enabled.
	WDT	Watchdog support is enabled.
	XT	IBM PC/XT MFM hard disk support is enabled.
	X86-32	X86-32, aka i386 architecture is enabled.
	X86-64	X86-64 architecture is enabled.
			More X86-64 boot options can be found in
			Documentation/x86/x86_64/boot-options.txt .
	X86	Either 32bit or 64bit x86 (same as X86-32+X86-64)

In addition, the following text indicates that the option:

	BUGS=	Relates to possible processor bugs on the said processor.
	KNL	Is a kernel start-up parameter.
	BOOT	Is a boot loader parameter.

Parameters denoted with BOOT are actually interpreted by the boot
loader, and have no meaning to the kernel directly.
Do not modify the syntax of boot loader parameters without extreme
need or coordination with <Documentation/x86/boot.txt>.

There are also arch-specific kernel-parameters not documented here.
See for example <Documentation/x86/x86_64/boot-options.txt>.

Note that ALL kernel parameters listed below are CASE SENSITIVE, and that
a trailing = on the name of any parameter states that that parameter will
be entered as an environment variable, whereas its absence indicates that
it will appear as a kernel argument readable via /proc/cmdline by programs
running once the system is up.

The number of kernel parameters is not limited, but the length of the
complete command line (parameters including spaces etc.) is limited to
a fixed number of characters. This limit depends on the architecture
and is between 256 and 4096 characters. It is defined in the file
./include/asm/setup.h as COMMAND_LINE_SIZE.


	acpi=		[HW,ACPI,X86]
			Advanced Configuration and Power Interface
			Format: { force | off | ht | strict | noirq | rsdt }
			force -- enable ACPI if default was off
			off -- disable ACPI if default was on
			noirq -- do not use ACPI for IRQ routing
			ht -- run only enough ACPI to enable Hyper Threading
			strict -- Be less tolerant of platforms that are not
				strictly ACPI specification compliant.
			rsdt -- prefer RSDT over (default) XSDT

			See also Documentation/power/pm.txt, pci=noacpi

	acpi_apic_instance=	[ACPI, IOAPIC]
			Format: <int>
			2: use 2nd APIC table, if available
			1,0: use 1st APIC table
			default: 0

	acpi_backlight=	[HW,ACPI]
			acpi_backlight=vendor
			acpi_backlight=video
			If set to vendor, prefer vendor specific driver
			(e.g. thinkpad_acpi, sony_acpi, etc.) instead
			of the ACPI video.ko driver.

	acpi.debug_layer=	[HW,ACPI,ACPI_DEBUG]
	acpi.debug_level=	[HW,ACPI,ACPI_DEBUG]
			Format: <int>
			CONFIG_ACPI_DEBUG must be enabled to produce any ACPI
			debug output.  Bits in debug_layer correspond to a
			_COMPONENT in an ACPI source file, e.g.,
			    #define _COMPONENT ACPI_PCI_COMPONENT
			Bits in debug_level correspond to a level in
			ACPI_DEBUG_PRINT statements, e.g.,
			    ACPI_DEBUG_PRINT((ACPI_DB_INFO, ...
			The debug_level mask defaults to "info".  See
			Documentation/acpi/debug.txt for more information about
			debug layers and levels.

			Enable processor driver info messages:
			    acpi.debug_layer=0x20000000
			Enable PCI/PCI interrupt routing info messages:
			    acpi.debug_layer=0x400000
			Enable AML "Debug" output, i.e., stores to the Debug
			object while interpreting AML:
			    acpi.debug_layer=0xffffffff acpi.debug_level=0x2
			Enable all messages related to ACPI hardware:
			    acpi.debug_layer=0x2 acpi.debug_level=0xffffffff

			Some values produce so much output that the system is
			unusable.  The "log_buf_len" parameter may be useful
			if you need to capture more output.

	acpi_display_output=	[HW,ACPI]
			acpi_display_output=vendor
			acpi_display_output=video
			See above.

	acpi_irq_balance [HW,ACPI]
			ACPI will balance active IRQs
			default in APIC mode

	acpi_irq_nobalance [HW,ACPI]
			ACPI will not move active IRQs (default)
			default in PIC mode

	acpi_irq_isa=	[HW,ACPI] If irq_balance, mark listed IRQs used by ISA
			Format: <irq>,<irq>...

	acpi_irq_pci=	[HW,ACPI] If irq_balance, clear listed IRQs for
			use by PCI
			Format: <irq>,<irq>...

	acpi_no_auto_ssdt	[HW,ACPI] Disable automatic loading of SSDT

	acpi_os_name=	[HW,ACPI] Tell ACPI BIOS the name of the OS
			Format: To spoof as Windows 98: ="Microsoft Windows"

	acpi_osi=	[HW,ACPI] Modify list of supported OS interface strings
			acpi_osi="string1"	# add string1 -- only one string
			acpi_osi="!string2"	# remove built-in string2
			acpi_osi=		# disable all strings

	acpi_pm_good	[X86]
			Override the pmtimer bug detection: force the kernel
			to assume that this machine's pmtimer latches its value
			and always returns good values.

 	acpi.power_nocheck=	[HW,ACPI]
 			Format: 1/0 enable/disable the check of power state.
 			On some bogus BIOS the _PSC object/_STA object of
 			power resource can't return the correct device power
 			state. In such case it is unneccessary to check its
 			power state again in power transition.
 			1 : disable the power state check

	acpi_sci=	[HW,ACPI] ACPI System Control Interrupt trigger mode
			Format: { level | edge | high | low }

	acpi_serialize	[HW,ACPI] force serialization of AML methods

	acpi_skip_timer_override [HW,ACPI]
			Recognize and ignore IRQ0/pin2 Interrupt Override.
			For broken nForce2 BIOS resulting in XT-PIC timer.

	acpi_sleep=	[HW,ACPI] Sleep options
			Format: { s3_bios, s3_mode, s3_beep, s4_nohwsig,
				  old_ordering, s4_nonvs }
			See Documentation/power/video.txt for information on
			s3_bios and s3_mode.
			s3_beep is for debugging; it makes the PC's speaker beep
			as soon as the kernel's real-mode entry point is called.
			s4_nohwsig prevents ACPI hardware signature from being
			used during resume from hibernation.
			old_ordering causes the ACPI 1.0 ordering of the _PTS
			control method, with respect to putting devices into
			low power states, to be enforced (the ACPI 2.0 ordering
			of _PTS is used by default).
			s4_nonvs prevents the kernel from saving/restoring the
			ACPI NVS memory during hibernation.

	acpi_use_timer_override [HW,ACPI]
			Use timer override. For some broken Nvidia NF5 boards
			that require a timer override, but don't have HPET

	acpi_enforce_resources=	[ACPI]
			{ strict | lax | no }
			Check for resource conflicts between native drivers
			and ACPI OperationRegions (SystemIO and SystemMemory
			only). IO ports and memory declared in ACPI might be
			used by the ACPI subsystem in arbitrary AML code and
			can interfere with legacy drivers.
			strict (default): access to resources claimed by ACPI
			is denied; legacy drivers trying to access reserved
			resources will fail to bind to device using them.
			lax: access to resources claimed by ACPI is allowed;
			legacy drivers trying to access reserved resources
			will bind successfully but a warning message is logged.
			no: ACPI OperationRegions are not marked as reserved,
			no further checks are performed.

	ad1848=		[HW,OSS]
			Format: <io>,<irq>,<dma>,<dma2>,<type>

	add_efi_memmap	[EFI; X86] Include EFI memory map in
			kernel's map of available physical RAM.

	advansys=	[HW,SCSI]
			See header of drivers/scsi/advansys.c.

	advwdt=		[HW,WDT] Advantech WDT
			Format: <iostart>,<iostop>

	aedsp16=	[HW,OSS] Audio Excel DSP 16
			Format: <io>,<irq>,<dma>,<mss_io>,<mpu_io>,<mpu_irq>
			See also header of sound/oss/aedsp16.c.

	agp=		[AGP]
			{ off | try_unsupported }
			off: disable AGP support
			try_unsupported: try to drive unsupported chipsets
				(may crash computer or cause data corruption)

	aha152x=	[HW,SCSI]
			See Documentation/scsi/aha152x.txt.

	aha1542=	[HW,SCSI]
			Format: <portbase>[,<buson>,<busoff>[,<dmaspeed>]]

	aic7xxx=	[HW,SCSI]
			See Documentation/scsi/aic7xxx.txt.

	aic79xx=	[HW,SCSI]
			See Documentation/scsi/aic79xx.txt.

	amd_iommu=	[HW,X86-84]
			Pass parameters to the AMD IOMMU driver in the system.
			Possible values are:
			isolate - enable device isolation (each device, as far
			          as possible, will get its own protection
			          domain) [default]
			share - put every device behind one IOMMU into the
				same protection domain
			fullflush - enable flushing of IO/TLB entries when
				    they are unmapped. Otherwise they are
				    flushed before they will be reused, which
				    is a lot of faster

	amijoy.map=	[HW,JOY] Amiga joystick support
			Map of devices attached to JOY0DAT and JOY1DAT
			Format: <a>,<b>
			See also Documentation/kernel/input/joystick.txt

	analog.map=	[HW,JOY] Analog joystick and gamepad support
			Specifies type or capabilities of an analog joystick
			connected to one of 16 gameports
			Format: <type1>,<type2>,..<type16>

	apc=		[HW,SPARC]
			Power management functions (SPARCstation-4/5 + deriv.)
			Format: noidle
			Disable APC CPU standby support. SPARCstation-Fox does
			not play well with APC CPU idle - disable it if you have
			APC and your system crashes randomly.

	apic=		[APIC,X86-32] Advanced Programmable Interrupt Controller
			Change the output verbosity whilst booting
			Format: { quiet (default) | verbose | debug }
			Change the amount of debugging information output
			when initialising the APIC and IO-APIC components.

	apm=		[APM] Advanced Power Management
			See header of arch/x86/kernel/apm_32.c.

	arcrimi=	[HW,NET] ARCnet - "RIM I" (entirely mem-mapped) cards
			Format: <io>,<irq>,<nodeID>

	ataflop=	[HW,M68k]

	atarimouse=	[HW,MOUSE] Atari Mouse

	atascsi=	[HW,SCSI] Atari SCSI

	atkbd.extra=	[HW] Enable extra LEDs and keys on IBM RapidAccess,
			EzKey and similar keyboards

	atkbd.reset=	[HW] Reset keyboard during initialization

	atkbd.set=	[HW] Select keyboard code set
			Format: <int> (2 = AT (default), 3 = PS/2)

	atkbd.scroll=	[HW] Enable scroll wheel on MS Office and similar
			keyboards

	atkbd.softraw=	[HW] Choose between synthetic and real raw mode
			Format: <bool> (0 = real, 1 = synthetic (default))

	atkbd.softrepeat= [HW]
			Use software keyboard repeat

	autotest	[IA64]

	baycom_epp=	[HW,AX25]
			Format: <io>,<mode>

	baycom_par=	[HW,AX25] BayCom Parallel Port AX.25 Modem
			Format: <io>,<mode>
			See header of drivers/net/hamradio/baycom_par.c.

	baycom_ser_fdx=	[HW,AX25]
			BayCom Serial Port AX.25 Modem (Full Duplex Mode)
			Format: <io>,<irq>,<mode>[,<baud>]
			See header of drivers/net/hamradio/baycom_ser_fdx.c.

	baycom_ser_hdx=	[HW,AX25]
			BayCom Serial Port AX.25 Modem (Half Duplex Mode)
			Format: <io>,<irq>,<mode>
			See header of drivers/net/hamradio/baycom_ser_hdx.c.

	boot_delay=	Milliseconds to delay each printk during boot.
			Values larger than 10 seconds (10000) are changed to
			no delay (0).
			Format: integer

	bootmem_debug	[KNL] Enable bootmem allocator debug messages.

	bttv.card=	[HW,V4L] bttv (bt848 + bt878 based grabber cards)
	bttv.radio=	Most important insmod options are available as
			kernel args too.
	bttv.pll=	See Documentation/video4linux/bttv/Insmod-options
	bttv.tuner=	and Documentation/video4linux/bttv/CARDLIST

	BusLogic=	[HW,SCSI]
			See drivers/scsi/BusLogic.c, comment before function
			BusLogic_ParseDriverOptions().

	c101=		[NET] Moxa C101 synchronous serial card

	cachesize=	[BUGS=X86-32] Override level 2 CPU cache size detection.
			Sometimes CPU hardware bugs make them report the cache
			size incorrectly. The kernel will attempt work arounds
			to fix known problems, but for some CPUs it is not
			possible to determine what the correct size should be.
			This option provides an override for these situations.

	capability.disable=
			[SECURITY] Disable capabilities.  This would normally
			be used only if an alternative security model is to be
			configured.  Potentially dangerous and should only be
			used if you are entirely sure of the consequences.

	ccw_timeout_log [S390]
			See Documentation/s390/CommonIO for details.

	cgroup_disable= [KNL] Disable a particular controller
			Format: {name of the controller(s) to disable}
				{Currently supported controllers - "memory"}

	checkreqprot	[SELINUX] Set initial checkreqprot flag value.
			Format: { "0" | "1" }
			See security/selinux/Kconfig help text.
			0 -- check protection applied by kernel (includes
				any implied execute protection).
			1 -- check protection requested by application.
			Default value is set via a kernel config option.
			Value can be changed at runtime via
				/selinux/checkreqprot.

	cio_ignore=	[S390]
			See Documentation/s390/CommonIO for details.

	clock=		[BUGS=X86-32, HW] gettimeofday clocksource override.
			[Deprecated]
			Forces specified clocksource (if available) to be used
			when calculating gettimeofday(). If specified
			clocksource is not available, it defaults to PIT.
			Format: { pit | tsc | cyclone | pmtmr }

	clocksource=	[GENERIC_TIME] Override the default clocksource
			Format: <string>
			Override the default clocksource and use the clocksource
			with the name specified.
			Some clocksource names to choose from, depending on
			the platform:
			[all] jiffies (this is the base, fallback clocksource)
			[ACPI] acpi_pm
			[ARM] imx_timer1,OSTS,netx_timer,mpu_timer2,
				pxa_timer,timer3,32k_counter,timer0_1
			[AVR32] avr32
			[X86-32] pit,hpet,tsc,vmi-timer;
				scx200_hrt on Geode; cyclone on IBM x440
			[MIPS] MIPS
			[PARISC] cr16
			[S390] tod
			[SH] SuperH
			[SPARC64] tick
			[X86-64] hpet,tsc

	clearcpuid=BITNUM [X86]
			Disable CPUID feature X for the kernel. See
			arch/x86/include/asm/cpufeature.h for the valid bit
			numbers. Note the Linux specific bits are not necessarily
			stable over kernel options, but the vendor specific
			ones should be.
			Also note that user programs calling CPUID directly
			or using the feature without checking anything
			will still see it. This just prevents it from
			being used by the kernel or shown in /proc/cpuinfo.
			Also note the kernel might malfunction if you disable
			some critical bits.

	code_bytes	[X86] How many bytes of object code to print
			in an oops report.
			Range: 0 - 8192
			Default: 64

	com20020=	[HW,NET] ARCnet - COM20020 chipset
			Format:
			<io>[,<irq>[,<nodeID>[,<backplane>[,<ckp>[,<timeout>]]]]]

	com90io=	[HW,NET] ARCnet - COM90xx chipset (IO-mapped buffers)
			Format: <io>[,<irq>]

	com90xx=	[HW,NET]
			ARCnet - COM90xx chipset (memory-mapped buffers)
			Format: <io>[,<irq>[,<memstart>]]

	condev=		[HW,S390] console device
	conmode=

	console=	[KNL] Output console device and options.

		tty<n>	Use the virtual console device <n>.

		ttyS<n>[,options]
		ttyUSB0[,options]
			Use the specified serial port.  The options are of
			the form "bbbbpnf", where "bbbb" is the baud rate,
			"p" is parity ("n", "o", or "e"), "n" is number of
			bits, and "f" is flow control ("r" for RTS or
			omit it).  Default is "9600n8".

			See Documentation/serial-console.txt for more
			information.  See
			Documentation/networking/netconsole.txt for an
			alternative.

		uart[8250],io,<addr>[,options]
		uart[8250],mmio,<addr>[,options]
			Start an early, polled-mode console on the 8250/16550
			UART at the specified I/O port or MMIO address,
			switching to the matching ttyS device later.  The
			options are the same as for ttyS, above.

                If the device connected to the port is not a TTY but a braille
                device, prepend "brl," before the device type, for instance
			console=brl,ttyS0
		For now, only VisioBraille is supported.

	coredump_filter=
			[KNL] Change the default value for
			/proc/<pid>/coredump_filter.
			See also Documentation/filesystems/proc.txt.

	cpcihp_generic=	[HW,PCI] Generic port I/O CompactPCI driver
			Format:
			<first_slot>,<last_slot>,<port>,<enum_bit>[,<debug>]

	crashkernel=nn[KMG]@ss[KMG]
			[KNL] Reserve a chunk of physical memory to
			hold a kernel to switch to with kexec on panic.

	crashkernel=range1:size1[,range2:size2,...][@offset]
			[KNL] Same as above, but depends on the memory
			in the running system. The syntax of range is
			start-[end] where start and end are both
			a memory unit (amount[KMG]). See also
			Documentation/kdump/kdump.txt for a example.

	cs89x0_dma=	[HW,NET]
			Format: <dma>

	cs89x0_media=	[HW,NET]
			Format: { rj45 | aui | bnc }

	dasd=		[HW,NET]
			See header of drivers/s390/block/dasd_devmap.c.

	db9.dev[2|3]=	[HW,JOY] Multisystem joystick support via parallel port
			(one device per port)
			Format: <port#>,<type>
			See also Documentation/input/joystick-parport.txt

	debug		[KNL] Enable kernel debugging (events log level).

	debug_locks_verbose=
			[KNL] verbose self-tests
			Format=<0|1>
			Print debugging info while doing the locking API
			self-tests.
			We default to 0 (no extra messages), setting it to
			1 will print _a lot_ more information - normally
			only useful to kernel developers.

	debug_objects	[KNL] Enable object debugging

	no_debug_objects
			[KNL] Disable object debugging

	debugpat	[X86] Enable PAT debugging

	decnet.addr=	[HW,NET]
			Format: <area>[,<node>]
			See also Documentation/networking/decnet.txt.

	default_hugepagesz=
			[same as hugepagesz=] The size of the default
			HugeTLB page size. This is the size represented by
			the legacy /proc/ hugepages APIs, used for SHM, and
			default size when mounting hugetlbfs filesystems.
			Defaults to the default architecture's huge page size
			if not specified.

	dhash_entries=	[KNL]
			Set number of hash buckets for dentry cache.

	digi=		[HW,SERIAL]
			IO parameters + enable/disable command.

	digiepca=	[HW,SERIAL]
			See drivers/char/README.epca and
			Documentation/serial/digiepca.txt.

	disable_mtrr_cleanup [X86]
			The kernel tries to adjust MTRR layout from continuous
			to discrete, to make X server driver able to add WB
			entry later. This parameter disables that.

	disable_mtrr_trim [X86, Intel and AMD only]
			By default the kernel will trim any uncacheable
			memory out of your available memory pool based on
			MTRR settings.  This parameter disables that behavior,
			possibly causing your machine to run very slowly.

	disable_timer_pin_1 [X86]
			Disable PIN 1 of APIC timer
			Can be useful to work around chipset bugs.

	dmasound=	[HW,OSS] Sound subsystem buffers

	dma_debug=off	If the kernel is compiled with DMA_API_DEBUG support,
			this option disables the debugging code at boot.

	dma_debug_entries=<number>
			This option allows to tune the number of preallocated
			entries for DMA-API debugging code. One entry is
			required per DMA-API allocation. Use this if the
			DMA-API debugging code disables itself because the
			architectural default is too low.

	dma_debug_driver=<driver_name>
			With this option the DMA-API debugging driver
			filter feature can be enabled at boot time. Just
			pass the driver to filter for as the parameter.
			The filter can be disabled or changed to another
			driver later using sysfs.

	dscc4.setup=	[NET]

	dtc3181e=	[HW,SCSI]

	dynamic_printk	Enables pr_debug()/dev_dbg() calls if
			CONFIG_DYNAMIC_PRINTK_DEBUG has been enabled.
			These can also be switched on/off via
			<debugfs>/dynamic_printk/modules

	earlycon=	[KNL] Output early console device and options.
		uart[8250],io,<addr>[,options]
		uart[8250],mmio,<addr>[,options]
			Start an early, polled-mode console on the 8250/16550
			UART at the specified I/O port or MMIO address.
			The options are the same as for ttyS, above.

	earlyprintk=	[X86,SH,BLACKFIN]
			earlyprintk=vga
			earlyprintk=serial[,ttySn[,baudrate]]
			earlyprintk=dbgp

			Append ",keep" to not disable it when the real console
			takes over.

			Only vga or serial or usb debug port at a time.

			Currently only ttyS0 and ttyS1 are supported.

			Interaction with the standard serial driver is not
			very good.

			The VGA output is eventually overwritten by the real
			console.

	eata=		[HW,SCSI]

	edd=		[EDD]
			Format: {"off" | "on" | "skip[mbr]"}

	eisa_irq_edge=	[PARISC,HW]
			See header of drivers/parisc/eisa.c.

	elanfreq=	[X86-32]
			See comment before function elanfreq_setup() in
			arch/x86/kernel/cpu/cpufreq/elanfreq.c.

	elevator=	[IOSCHED]
			Format: {"anticipatory" | "cfq" | "deadline" | "noop"}
			See Documentation/block/as-iosched.txt and
			Documentation/block/deadline-iosched.txt for details.

	elfcorehdr=	[IA64,PPC,SH,X86]
			Specifies physical address of start of kernel core
			image elf header. Generally kexec loader will
			pass this option to capture kernel.
			See Documentation/kdump/kdump.txt for details.

	enable_mtrr_cleanup [X86]
			The kernel tries to adjust MTRR layout from continuous
			to discrete, to make X server driver able to add WB
			entry later. This parameter enables that.

	enable_timer_pin_1 [X86]
			Enable PIN 1 of APIC timer
			Can be useful to work around chipset bugs
			(in particular on some ATI chipsets).
			The kernel tries to set a reasonable default.

	enforcing	[SELINUX] Set initial enforcing status.
			Format: {"0" | "1"}
			See security/selinux/Kconfig help text.
			0 -- permissive (log only, no denials).
			1 -- enforcing (deny and log).
			Default value is 0.
			Value can be changed at runtime via /selinux/enforce.

	ether=		[HW,NET] Ethernet cards parameters
			This option is obsoleted by the "netdev=" option, which
			has equivalent usage. See its documentation for details.

	eurwdt=		[HW,WDT] Eurotech CPU-1220/1410 onboard watchdog.
			Format: <io>[,<irq>]

	failslab=
	fail_page_alloc=
	fail_make_request=[KNL]
			General fault injection mechanism.
			Format: <interval>,<probability>,<space>,<times>
			See also /Documentation/fault-injection/.

	fd_mcs=		[HW,SCSI]
			See header of drivers/scsi/fd_mcs.c.

	fdomain=	[HW,SCSI]
			See header of drivers/scsi/fdomain.c.

	floppy=		[HW]
			See Documentation/blockdev/floppy.txt.

	force_pal_cache_flush
			[IA-64] Avoid check_sal_cache_flush which may hang on
			buggy SAL_CACHE_FLUSH implementations. Using this
			parameter will force ia64_sal_cache_flush to call
			ia64_pal_cache_flush instead of SAL_CACHE_FLUSH.

	ftrace=[tracer]
			[FTRACE] will set and start the specified tracer
			as early as possible in order to facilitate early
			boot debugging.

	ftrace_dump_on_oops
			[FTRACE] will dump the trace buffers on oops.

	ftrace_filter=[function-list]
			[FTRACE] Limit the functions traced by the function
			tracer at boot up. function-list is a comma separated
			list of functions. This list can be changed at run
			time by the set_ftrace_filter file in the debugfs
			tracing directory. 

	ftrace_notrace=[function-list]
			[FTRACE] Do not trace the functions specified in
			function-list. This list can be changed at run time
			by the set_ftrace_notrace file in the debugfs
			tracing directory.

	gamecon.map[2|3]=
			[HW,JOY] Multisystem joystick and NES/SNES/PSX pad
			support via parallel port (up to 5 devices per port)
			Format: <port#>,<pad1>,<pad2>,<pad3>,<pad4>,<pad5>
			See also Documentation/input/joystick-parport.txt

	gamma=		[HW,DRM]

	gart_fix_e820=  [X86_64] disable the fix e820 for K8 GART
			Format: off | on
			default: on

	gdth=		[HW,SCSI]
			See header of drivers/scsi/gdth.c.

	gpt		[EFI] Forces disk with valid GPT signature but
			invalid Protective MBR to be treated as GPT.

	gvp11=		[HW,SCSI]

	hashdist=	[KNL,NUMA] Large hashes allocated during boot
			are distributed across NUMA nodes.  Defaults on
			for 64bit NUMA, off otherwise.
			Format: 0 | 1 (for off | on)

	hcl=		[IA-64] SGI's Hardware Graph compatibility layer

	hd=		[EIDE] (E)IDE hard drive subsystem geometry
			Format: <cyl>,<head>,<sect>

	highmem=nn[KMG]	[KNL,BOOT] forces the highmem zone to have an exact
			size of <nn>. This works even on boxes that have no
			highmem otherwise. This also works to reduce highmem
			size on bigger boxes.

	highres=	[KNL] Enable/disable high resolution timer mode.
			Valid parameters: "on", "off"
			Default: "on"

	hisax=		[HW,ISDN]
			See Documentation/isdn/README.HiSax.

	hlt		[BUGS=ARM,SH]

	hpet=		[X86-32,HPET] option to control HPET usage
			Format: { enable (default) | disable | force |
				verbose }
			disable: disable HPET and use PIT instead
			force: allow force enabled of undocumented chips (ICH4,
				VIA, nVidia)
			verbose: show contents of HPET registers during setup

	hugepages=	[HW,X86-32,IA-64] HugeTLB pages to allocate at boot.
	hugepagesz=	[HW,IA-64,PPC,X86-64] The size of the HugeTLB pages.
			On x86-64 and powerpc, this option can be specified
			multiple times interleaved with hugepages= to reserve
			huge pages of different sizes. Valid pages sizes on
			x86-64 are 2M (when the CPU supports "pse") and 1G
			(when the CPU supports the "pdpe1gb" cpuinfo flag)
			Note that 1GB pages can only be allocated at boot time
			using hugepages= and not freed afterwards.

	hvc_iucv=	[S390] Number of z/VM IUCV hypervisor console (HVC)
			       terminal devices. Valid values: 0..8
	hvc_iucv_allow=	[S390] Comma-separated list of z/VM user IDs.
			       If specified, z/VM IUCV HVC accepts connections
			       from listed z/VM user IDs only.

	i2c_bus=	[HW] Override the default board specific I2C bus speed
			     or register an additional I2C bus that is not
			     registered from board initialization code.
			     Format:
			     <bus_id>,<clkrate>

	i8042.debug	[HW] Toggle i8042 debug mode
	i8042.direct	[HW] Put keyboard port into non-translated mode
	i8042.dumbkbd	[HW] Pretend that controller can only read data from
			     keyboard and cannot control its state
			     (Don't attempt to blink the leds)
	i8042.noaux	[HW] Don't check for auxiliary (== mouse) port
	i8042.nokbd	[HW] Don't check/create keyboard port
	i8042.noloop	[HW] Disable the AUX Loopback command while probing
			     for the AUX port
	i8042.nomux	[HW] Don't check presence of an active multiplexing
			     controller
	i8042.nopnp	[HW] Don't use ACPIPnP / PnPBIOS to discover KBD/AUX
			     controllers
	i8042.panicblink=
			[HW] Frequency with which keyboard LEDs should blink
			     when kernel panics (default is 0.5 sec)
	i8042.reset	[HW] Reset the controller during init and cleanup
	i8042.unlock	[HW] Unlock (ignore) the keylock

	i810=		[HW,DRM]

	i8k.ignore_dmi	[HW] Continue probing hardware even if DMI data
			indicates that the driver is running on unsupported
			hardware.
	i8k.force	[HW] Activate i8k driver even if SMM BIOS signature
			does not match list of supported models.
	i8k.power_status
			[HW] Report power status in /proc/i8k
			(disabled by default)
	i8k.restricted	[HW] Allow controlling fans only if SYS_ADMIN
			capability is set.

	ibmmcascsi=	[HW,MCA,SCSI] IBM MicroChannel SCSI adapter
			See Documentation/mca.txt.

	icn=		[HW,ISDN]
			Format: <io>[,<membase>[,<icn_id>[,<icn_id2>]]]

	ide-core.nodma=	[HW] (E)IDE subsystem
			Format: =0.0 to prevent dma on hda, =0.1 hdb =1.0 hdc
			.vlb_clock .pci_clock .noflush .noprobe .nowerr .cdrom
			.chs .ignore_cable are additional options
			See Documentation/ide/ide.txt.

	idebus=		[HW] (E)IDE subsystem - VLB/PCI bus speed
			See Documentation/ide/ide.txt.

	ide-pci-generic.all-generic-ide [HW] (E)IDE subsystem
			Claim all unknown PCI IDE storage controllers.

	idle=		[X86]
			Format: idle=poll, idle=mwait, idle=halt, idle=nomwait
			Poll forces a polling idle loop that can slightly
			improve the performance of waking up a idle CPU, but
			will use a lot of power and make the system run hot.
			Not recommended.
			idle=mwait: On systems which support MONITOR/MWAIT but
			the kernel chose to not use it because it doesn't save
			as much power as a normal idle loop, use the
			MONITOR/MWAIT idle loop anyways. Performance should be
			the same as idle=poll.
			idle=halt: Halt is forced to be used for CPU idle.
			In such case C2/C3 won't be used again.
			idle=nomwait: Disable mwait for CPU C-states

	ignore_loglevel	[KNL]
			Ignore loglevel setting - this will print /all/
			kernel messages to the console. Useful for debugging.

	ihash_entries=	[KNL]
			Set number of hash buckets for inode cache.

	ima_audit=	[IMA]
			Format: { "0" | "1" }
			0 -- integrity auditing messages. (Default)
			1 -- enable informational integrity auditing messages.

	ima_hash=	[IMA]
			Formt: { "sha1" | "md5" }
			default: "sha1"

	ima_tcb		[IMA]
			Load a policy which meets the needs of the Trusted
			Computing Base.  This means IMA will measure all
			programs exec'd, files mmap'd for exec, and all files
			opened for read by uid=0.

	in2000=		[HW,SCSI]
			See header of drivers/scsi/in2000.c.

	init=		[KNL]
			Format: <full_path>
			Run specified binary instead of /sbin/init as init
			process.

	initcall_debug	[KNL] Trace initcalls as they are executed.  Useful
			for working out where the kernel is dying during
			startup.

	initrd=		[BOOT] Specify the location of the initial ramdisk

	inport.irq=	[HW] Inport (ATI XL and Microsoft) busmouse driver
			Format: <irq>

	intel_iommu=	[DMAR] Intel IOMMU driver (DMAR) option
		on
			Enable intel iommu driver.
		off
			Disable intel iommu driver.
		igfx_off [Default Off]
			By default, gfx is mapped as normal device. If a gfx
			device has a dedicated DMAR unit, the DMAR unit is
			bypassed by not enabling DMAR with this option. In
			this case, gfx device will use physical address for
			DMA.
		forcedac [x86_64]
			With this option iommu will not optimize to look
			for io virtual address below 32 bit forcing dual
			address cycle on pci bus for cards supporting greater
			than 32 bit addressing. The default is to look
			for translation below 32 bit and if not available
			then look in the higher range.
		strict [Default Off]
			With this option on every unmap_single operation will
			result in a hardware IOTLB flush operation as opposed
			to batching them for performance.

	inttest=	[IA64]

	iomem=		Disable strict checking of access to MMIO memory
		strict	regions from userspace.
		relaxed

	iommu=		[x86]
		off
		force
		noforce
		biomerge
		panic
		nopanic
		merge
		nomerge
		forcesac
		soft

	io7=		[HW] IO7 for Marvel based alpha systems
			See comment before marvel_specify_io7 in
			arch/alpha/kernel/core_marvel.c.

	io_delay=	[X86] I/O delay method
		0x80
			Standard port 0x80 based delay
		0xed
			Alternate port 0xed based delay (needed on some systems)
		udelay
			Simple two microseconds delay
		none
			No delay

	ip=		[IP_PNP]
			See Documentation/filesystems/nfsroot.txt.

	ip2=		[HW] Set IO/IRQ pairs for up to 4 IntelliPort boards
			See comment before ip2_setup() in
			drivers/char/ip2/ip2base.c.

	ips=		[HW,SCSI] Adaptec / IBM ServeRAID controller
			See header of drivers/scsi/ips.c.

	irqfixup	[HW]
			When an interrupt is not handled search all handlers
			for it. Intended to get systems with badly broken
			firmware running.

	irqpoll		[HW]
			When an interrupt is not handled search all handlers
			for it. Also check all handlers each timer
			interrupt. Intended to get systems with badly broken
			firmware running.

	isapnp=		[ISAPNP]
			Format: <RDP>,<reset>,<pci_scan>,<verbosity>

	isolcpus=	[KNL,SMP] Isolate CPUs from the general scheduler.
			Format:
			<cpu number>,...,<cpu number>
			or
			<cpu number>-<cpu number>
			(must be a positive range in ascending order)
			or a mixture
			<cpu number>,...,<cpu number>-<cpu number>

			This option can be used to specify one or more CPUs
			to isolate from the general SMP balancing and scheduling
			algorithms. You can move a process onto or off an
			"isolated" CPU via the CPU affinity syscalls or cpuset.
			<cpu number> begins at 0 and the maximum value is
			"number of CPUs in system - 1".

			This option is the preferred way to isolate CPUs. The
			alternative -- manually setting the CPU mask of all
			tasks in the system -- can cause problems and
			suboptimal load balancer performance.

	iucv=		[HW,NET]

	js=		[HW,JOY] Analog joystick
			See Documentation/input/joystick.txt.

	keepinitrd	[HW,ARM]

	kernelcore=nn[KMG]	[KNL,X86,IA-64,PPC] This parameter
			specifies the amount of memory usable by the kernel
			for non-movable allocations.  The requested amount is
			spread evenly throughout all nodes in the system. The
			remaining memory in each node is used for Movable
			pages. In the event, a node is too small to have both
			kernelcore and Movable pages, kernelcore pages will
			take priority and other nodes will have a larger number
			of kernelcore pages.  The Movable zone is used for the
			allocation of pages that may be reclaimed or moved
			by the page migration subsystem.  This means that
			HugeTLB pages may not be allocated from this zone.
			Note that allocations like PTEs-from-HighMem still
			use the HighMem zone if it exists, and the Normal
			zone if it does not.

	kgdboc=		[HW] kgdb over consoles.
			Requires a tty driver that supports console polling.
			(only serial suported for now)
			Format: <serial_device>[,baud]

	kmac=		[MIPS] korina ethernet MAC address.
			Configure the RouterBoard 532 series on-chip
			Ethernet adapter MAC address.

	kmemleak=	[KNL] Boot-time kmemleak enable/disable
			Valid arguments: on, off
			Default: on

	kstack=N	[X86] Print N words from the kernel stack
			in oops dumps.

	l2cr=		[PPC]

	l3cr=		[PPC]

	lapic		[X86-32,APIC] Enable the local APIC even if BIOS
			disabled it.

	lapic_timer_c2_ok	[X86,APIC] trust the local apic timer
			in C2 power state.

	libata.dma=	[LIBATA] DMA control
			libata.dma=0	  Disable all PATA and SATA DMA
			libata.dma=1	  PATA and SATA Disk DMA only
			libata.dma=2	  ATAPI (CDROM) DMA only
			libata.dma=4	  Compact Flash DMA only 
			Combinations also work, so libata.dma=3 enables DMA
			for disks and CDROMs, but not CFs.

	libata.noacpi	[LIBATA] Disables use of ACPI in libata suspend/resume
			when set.
			Format: <int>

	libata.force=	[LIBATA] Force configurations.  The format is comma
			separated list of "[ID:]VAL" where ID is
			PORT[:DEVICE].  PORT and DEVICE are decimal numbers
			matching port, link or device.  Basically, it matches
			the ATA ID string printed on console by libata.  If
			the whole ID part is omitted, the last PORT and DEVICE
			values are used.  If ID hasn't been specified yet, the
			configuration applies to all ports, links and devices.

			If only DEVICE is omitted, the parameter applies to
			the port and all links and devices behind it.  DEVICE
			number of 0 either selects the first device or the
			first fan-out link behind PMP device.  It does not
			select the host link.  DEVICE number of 15 selects the
			host link and device attached to it.

			The VAL specifies the configuration to force.  As long
			as there's no ambiguity shortcut notation is allowed.
			For example, both 1.5 and 1.5G would work for 1.5Gbps.
			The following configurations can be forced.

			* Cable type: 40c, 80c, short40c, unk, ign or sata.
			  Any ID with matching PORT is used.

			* SATA link speed limit: 1.5Gbps or 3.0Gbps.

			* Transfer mode: pio[0-7], mwdma[0-4] and udma[0-7].
			  udma[/][16,25,33,44,66,100,133] notation is also
			  allowed.

			* [no]ncq: Turn on or off NCQ.

			* nohrst, nosrst, norst: suppress hard, soft
                          and both resets.

			If there are multiple matching configurations changing
			the same attribute, the last one is used.

	lmb=debug	[KNL] Enable lmb debug messages.

	load_ramdisk=	[RAM] List of ramdisks to load from floppy
			See Documentation/blockdev/ramdisk.txt.

	lockd.nlm_grace_period=P  [NFS] Assign grace period.
			Format: <integer>

	lockd.nlm_tcpport=N	[NFS] Assign TCP port.
			Format: <integer>

	lockd.nlm_timeout=T	[NFS] Assign timeout value.
			Format: <integer>

	lockd.nlm_udpport=M	[NFS] Assign UDP port.
			Format: <integer>

	logibm.irq=	[HW,MOUSE] Logitech Bus Mouse Driver
			Format: <irq>

	loglevel=	All Kernel Messages with a loglevel smaller than the
			console loglevel will be printed to the console. It can
			also be changed with klogd or other programs. The
			loglevels are defined as follows:

			0 (KERN_EMERG)		system is unusable
			1 (KERN_ALERT)		action must be taken immediately
			2 (KERN_CRIT)		critical conditions
			3 (KERN_ERR)		error conditions
			4 (KERN_WARNING)	warning conditions
			5 (KERN_NOTICE)		normal but significant condition
			6 (KERN_INFO)		informational
			7 (KERN_DEBUG)		debug-level messages

	log_buf_len=n	Sets the size of the printk ring buffer, in bytes.
			Format: { n | nk | nM }
			n must be a power of two.  The default size
			is set in the kernel config file.

	logo.nologo	[FB] Disables display of the built-in Linux logo.
			This may be used to provide more screen space for
			kernel log messages and is useful when debugging
			kernel boot problems.

	lp=0		[LP]	Specify parallel ports to use, e.g,
	lp=port[,port...]	lp=none,parport0 (lp0 not configured, lp1 uses
	lp=reset		first parallel port). 'lp=0' disables the
	lp=auto			printer driver. 'lp=reset' (which can be
				specified in addition to the ports) causes
				attached printers to be reset. Using
				lp=port1,port2,... specifies the parallel ports
				to associate lp devices with, starting with
				lp0. A port specification may be 'none' to skip
				that lp device, or a parport name such as
				'parport0'. Specifying 'lp=auto' instead of a
				port specification list means that device IDs
				from each port should be examined, to see if
				an IEEE 1284-compliant printer is attached; if
				so, the driver will manage that printer.
				See also header of drivers/char/lp.c.

	lpj=n		[KNL]
			Sets loops_per_jiffy to given constant, thus avoiding
			time-consuming boot-time autodetection (up to 250 ms per
			CPU). 0 enables autodetection (default). To determine
			the correct value for your kernel, boot with normal
			autodetection and see what value is printed. Note that
			on SMP systems the preset will be applied to all CPUs,
			which is likely to cause problems if your CPUs need
			significantly divergent settings. An incorrect value
			will cause delays in the kernel to be wrong, leading to
			unpredictable I/O errors and other breakage. Although
			unlikely, in the extreme case this might damage your
			hardware.

	ltpc=		[NET]
			Format: <io>,<irq>,<dma>

	mac5380=	[HW,SCSI] Format:
			<can_queue>,<cmd_per_lun>,<sg_tablesize>,<hostid>,<use_tags>

	machvec=	[IA64] Force the use of a particular machine-vector
			(machvec) in a generic kernel.
			Example: machvec=hpzx1_swiotlb

	max_addr=nn[KMG]	[KNL,BOOT,ia64] All physical memory greater
			than or equal to this physical address is ignored.

	maxcpus=	[SMP] Maximum number of processors that	an SMP kernel
			should make use of.  maxcpus=n : n >= 0 limits the
			kernel to using 'n' processors.  n=0 is a special case,
			it is equivalent to "nosmp", which also disables
			the IO APIC.

	max_loop=	[LOOP] Maximum number of loopback devices that can
			be mounted
			Format: <1-256>

	max_luns=	[SCSI] Maximum number of LUNs to probe.
			Should be between 1 and 2^32-1.

	max_report_luns=
			[SCSI] Maximum number of LUNs received.
			Should be between 1 and 16384.

	mcatest=	[IA-64]

	mce		[X86-32] Machine Check Exception

	mce=option	[X86-64] See Documentation/x86/x86_64/boot-options.txt

	md=		[HW] RAID subsystems devices and level
			See Documentation/md.txt.

	mdacon=		[MDA]
			Format: <first>,<last>
			Specifies range of consoles to be captured by the MDA.

	mem=nn[KMG]	[KNL,BOOT] Force usage of a specific amount of memory
			Amount of memory to be used when the kernel is not able
			to see the whole system memory or for test.
			[X86-32] Use together with memmap= to avoid physical
			address space collisions. Without memmap= PCI devices
			could be placed at addresses belonging to unused RAM.

	mem=nopentium	[BUGS=X86-32] Disable usage of 4MB pages for kernel
			memory.

	memchunk=nn[KMG]
			[KNL,SH] Allow user to override the default size for
			per-device physically contiguous DMA buffers.

	memmap=exactmap	[KNL,X86] Enable setting of an exact
			E820 memory map, as specified by the user.
			Such memmap=exactmap lines can be constructed based on
			BIOS output or other requirements. See the memmap=nn@ss
			option description.

	memmap=nn[KMG]@ss[KMG]
			[KNL] Force usage of a specific region of memory
			Region of memory to be used, from ss to ss+nn.

	memmap=nn[KMG]#ss[KMG]
			[KNL,ACPI] Mark specific memory as ACPI data.
			Region of memory to be used, from ss to ss+nn.

	memmap=nn[KMG]$ss[KMG]
			[KNL,ACPI] Mark specific memory as reserved.
			Region of memory to be used, from ss to ss+nn.
			Example: Exclude memory from 0x18690000-0x1869ffff
			         memmap=64K$0x18690000
			         or
			         memmap=0x10000$0x18690000

	memory_corruption_check=0/1 [X86]
			Some BIOSes seem to corrupt the first 64k of
			memory when doing things like suspend/resume.
			Setting this option will scan the memory
			looking for corruption.  Enabling this will
			both detect corruption and prevent the kernel
			from using the memory being corrupted.
			However, its intended as a diagnostic tool; if
			repeatable BIOS-originated corruption always
			affects the same memory, you can use memmap=
			to prevent the kernel from using that memory.

	memory_corruption_check_size=size [X86]
			By default it checks for corruption in the low
			64k, making this memory unavailable for normal
			use.  Use this parameter to scan for
			corruption in more or less memory.

	memory_corruption_check_period=seconds [X86]
			By default it checks for corruption every 60
			seconds.  Use this parameter to check at some
			other rate.  0 disables periodic checking.

	memtest=	[KNL,X86] Enable memtest
			Format: <integer>
			default : 0 <disable>
			Specifies the number of memtest passes to be
			performed. Each pass selects another test
			pattern from a given set of patterns. Memtest
			fills the memory with this pattern, validates
			memory contents and reserves bad memory
			regions that are detected.

	meye.*=		[HW] Set MotionEye Camera parameters
			See Documentation/video4linux/meye.txt.

	mfgpt_irq=	[IA-32] Specify the IRQ to use for the
			Multi-Function General Purpose Timers on AMD Geode
			platforms.

	mfgptfix	[X86-32] Fix MFGPT timers on AMD Geode platforms when
			the BIOS has incorrectly applied a workaround. TinyBIOS
			version 0.98 is known to be affected, 0.99 fixes the
			problem by letting the user disable the workaround.

	mga=		[HW,DRM]

	min_addr=nn[KMG]	[KNL,BOOT,ia64] All physical memory below this
			physical address is ignored.

	mminit_loglevel=
			[KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this
			parameter allows control of the logging verbosity for
			the additional memory initialisation checks. A value
			of 0 disables mminit logging and a level of 4 will
			log everything. Information is printed at KERN_DEBUG
			so loglevel=8 may also need to be specified.

	mousedev.tap_time=
			[MOUSE] Maximum time between finger touching and
			leaving touchpad surface for touch to be considered
			a tap and be reported as a left button click (for
			touchpads working in absolute mode only).
			Format: <msecs>
	mousedev.xres=	[MOUSE] Horizontal screen resolution, used for devices
			reporting absolute coordinates, such as tablets
	mousedev.yres=	[MOUSE] Vertical screen resolution, used for devices
			reporting absolute coordinates, such as tablets

	movablecore=nn[KMG]	[KNL,X86,IA-64,PPC] This parameter
			is similar to kernelcore except it specifies the
			amount of memory used for migratable allocations.
			If both kernelcore and movablecore is specified,
			then kernelcore will be at *least* the specified
			value but may be more. If movablecore on its own
			is specified, the administrator must be careful
			that the amount of memory usable for all allocations
			is not too small.

	mpu401=		[HW,OSS]
			Format: <io>,<irq>

	MTD_Partition=	[MTD]
			Format: <name>,<region-number>,<size>,<offset>

	MTD_Region=	[MTD] Format:
			<name>,<region-number>[,<base>,<size>,<buswidth>,<altbuswidth>]

	mtdparts=	[MTD]
			See drivers/mtd/cmdlinepart.c.

	mtdset=		[ARM]
			ARM/S3C2412 JIVE boot control

			See arch/arm/mach-s3c2412/mach-jive.c

	mtouchusb.raw_coordinates=
			[HW] Make the MicroTouch USB driver use raw coordinates
			('y', default) or cooked coordinates ('n')

	mtrr_chunk_size=nn[KMG] [X86]
			used for mtrr cleanup. It is largest continous chunk
			that could hold holes aka. UC entries.

	mtrr_gran_size=nn[KMG] [X86]
			Used for mtrr cleanup. It is granularity of mtrr block.
			Default is 1.
			Large value could prevent small alignment from
			using up MTRRs.

	mtrr_spare_reg_nr=n [X86]
			Format: <integer>
			Range: 0,7 : spare reg number
			Default : 1
			Used for mtrr cleanup. It is spare mtrr entries number.
			Set to 2 or more if your graphical card needs more.

	n2=		[NET] SDL Inc. RISCom/N2 synchronous serial card

	NCR_D700=	[HW,SCSI]
			See header of drivers/scsi/NCR_D700.c.

	ncr5380=	[HW,SCSI]

	ncr53c400=	[HW,SCSI]

	ncr53c400a=	[HW,SCSI]

	ncr53c406a=	[HW,SCSI]

	ncr53c8xx=	[HW,SCSI]

	netdev=		[NET] Network devices parameters
			Format: <irq>,<io>,<mem_start>,<mem_end>,<name>
			Note that mem_start is often overloaded to mean
			something different and driver-specific.
			This usage is only documented in each driver source
			file if at all.

	nf_conntrack.acct=
			[NETFILTER] Enable connection tracking flow accounting
			0 to disable accounting
			1 to enable accounting
			Default value depends on CONFIG_NF_CT_ACCT that is
			going to be removed in 2.6.29.

	nfsaddrs=	[NFS]
			See Documentation/filesystems/nfsroot.txt.

	nfsroot=	[NFS] nfs root filesystem for disk-less boxes.
			See Documentation/filesystems/nfsroot.txt.

	nfs.callback_tcpport=
			[NFS] set the TCP port on which the NFSv4 callback
			channel should listen.

	nfs.idmap_cache_timeout=
			[NFS] set the maximum lifetime for idmapper cache
			entries.

	nfs.enable_ino64=
			[NFS] enable 64-bit inode numbers.
			If zero, the NFS client will fake up a 32-bit inode
			number for the readdir() and stat() syscalls instead
			of returning the full 64-bit number.
			The default is to return 64-bit inode numbers.

	nmi_debug=	[KNL,AVR32] Specify one or more actions to take
			when a NMI is triggered.
			Format: [state][,regs][,debounce][,die]

	nmi_watchdog=	[KNL,BUGS=X86] Debugging features for SMP kernels
			Format: [panic,][num]
			Valid num: 0,1,2
			0 - turn nmi_watchdog off
			1 - use the IO-APIC timer for the NMI watchdog
			2 - use the local APIC for the NMI watchdog using
			a performance counter. Note: This will use one
			performance counter and the local APIC's performance
			vector.
			When panic is specified, panic when an NMI watchdog
			timeout occurs.
			This is useful when you use a panic=... timeout and
			need the box quickly up again.
			Instead of 1 and 2 it is possible to use the following
			symbolic names: lapic and ioapic
			Example: nmi_watchdog=2 or nmi_watchdog=panic,lapic

	no387		[BUGS=X86-32] Tells the kernel to use the 387 maths
			emulation library even if a 387 maths coprocessor
			is present.

	no_console_suspend
			[HW] Never suspend the console
			Disable suspending of consoles during suspend and
			hibernate operations.  Once disabled, debugging
			messages can reach various consoles while the rest
			of the system is being put to sleep (ie, while
			debugging driver suspend/resume hooks).  This may
			not work reliably with all consoles, but is known
			to work with serial and VGA consoles.

	noaliencache	[MM, NUMA, SLAB] Disables the allocation of alien
			caches in the slab allocator.  Saves per-node memory,
			but will impact performance.

	noalign		[KNL,ARM]

	noapic		[SMP,APIC] Tells the kernel to not make use of any
			IOAPICs that may be present in the system.

	nobats		[PPC] Do not use BATs for mapping kernel lowmem
			on "Classic" PPC cores.

	nocache		[ARM]

	noclflush	[BUGS=X86] Don't use the CLFLUSH instruction

	nodelayacct	[KNL] Disable per-task delay accounting

	nodisconnect	[HW,SCSI,M68K] Disables SCSI disconnects.

	nodsp		[SH] Disable hardware DSP at boot time.

	noefi		[X86] Disable EFI runtime services support.

	noexec		[IA-64]

	noexec		[X86]
			On X86-32 available only on PAE configured kernels.
			noexec=on: enable non-executable mappings (default)
			noexec=off: disable non-executable mappings

	noexec32	[X86-64]
			This affects only 32-bit executables.
			noexec32=on: enable non-executable mappings (default)
				read doesn't imply executable mappings
			noexec32=off: disable non-executable mappings
				read implies executable mappings

	nofpu		[SH] Disable hardware FPU at boot time.

	nofxsr		[BUGS=X86-32] Disables x86 floating point extended
			register save and restore. The kernel will only save
			legacy floating-point registers on task switch.

	noxsave		[BUGS=X86] Disables x86 extended register state save
			and restore using xsave. The kernel will fallback to
			enabling legacy floating-point and sse state.

	nohlt		[BUGS=ARM,SH] Tells the kernel that the sleep(SH) or
			wfi(ARM) instruction doesn't work correctly and not to
			use it. This is also useful when using JTAG debugger.

	no-hlt		[BUGS=X86-32] Tells the kernel that the hlt
			instruction doesn't work correctly and not to
			use it.

	no_file_caps	Tells the kernel not to honor file capabilities.  The
			only way then for a file to be executed with privilege
			is to be setuid root or executed by root.

	nohalt		[IA-64] Tells the kernel not to use the power saving
			function PAL_HALT_LIGHT when idle. This increases
			power-consumption. On the positive side, it reduces
			interrupt wake-up latency, which may improve performance
			in certain environments such as networked servers or
			real-time systems.

	nohz=		[KNL] Boottime enable/disable dynamic ticks
			Valid arguments: on, off
			Default: on

	noiotrap	[SH] Disables trapped I/O port accesses.

	noirqdebug	[X86-32] Disables the code which attempts to detect and
			disable unhandled interrupt sources.

	no_timer_check	[X86,APIC] Disables the code which tests for
			broken timer IRQ sources.

	noisapnp	[ISAPNP] Disables ISA PnP code.

	noinitrd	[RAM] Tells the kernel not to load any configured
			initial RAM disk.

	nointremap	[X86-64, Intel-IOMMU] Do not enable interrupt
			remapping.

	nointroute	[IA-64]

	nojitter	[IA64] Disables jitter checking for ITC timers.

	nolapic		[X86-32,APIC] Do not enable or use the local APIC.

	nolapic_timer	[X86-32,APIC] Do not use the local APIC timer.

	noltlbs		[PPC] Do not use large page/tlb entries for kernel
			lowmem mapping on PPC40x.

	nomca		[IA-64] Disable machine check abort handling

	nomce		[X86-32] Machine Check Exception

	nomfgpt		[X86-32] Disable Multi-Function General Purpose
			Timer usage (for AMD Geode machines).

	norandmaps	Don't use address space randomization.  Equivalent to
			echo 0 > /proc/sys/kernel/randomize_va_space

	noreplace-paravirt	[X86-32,PV_OPS] Don't patch paravirt_ops

	noreplace-smp	[X86-32,SMP] Don't replace SMP instructions
			with UP alternatives

	noresidual	[PPC] Don't use residual data on PReP machines.

	noresume	[SWSUSP] Disables resume and restores original swap
			space.

	no-scroll	[VGA] Disables scrollback.
			This is required for the Braillex ib80-piezo Braille
			reader made by F.H. Papenmeier (Germany).

	nosbagart	[IA-64]

	nosep		[BUGS=X86-32] Disables x86 SYSENTER/SYSEXIT support.

	nosmp		[SMP] Tells an SMP kernel to act as a UP kernel,
			and disable the IO APIC.  legacy for "maxcpus=0".

	nosoftlockup	[KNL] Disable the soft-lockup detector.

	noswapaccount	[KNL] Disable accounting of swap in memory resource
			controller. (See Documentation/cgroups/memory.txt)

	nosync		[HW,M68K] Disables sync negotiation for all devices.

	notsc		[BUGS=X86-32] Disable Time Stamp Counter

	nousb		[USB] Disable the USB subsystem

	nowb		[ARM]

	nox2apic	[X86-64,APIC] Do not enable x2APIC mode.

	nptcg=		[IA64] Override max number of concurrent global TLB
			purges which is reported from either PAL_VM_SUMMARY or
			SAL PALO.

	nr_uarts=	[SERIAL] maximum number of UARTs to be registered.

	numa_zonelist_order= [KNL, BOOT] Select zonelist order for NUMA.
			one of ['zone', 'node', 'default'] can be specified
			This can be set from sysctl after boot.
			See Documentation/sysctl/vm.txt for details.

	ohci1394_dma=early	[HW] enable debugging via the ohci1394 driver.
			See Documentation/debugging-via-ohci1394.txt for more
			info.

	olpc_ec_timeout= [OLPC] ms delay when issuing EC commands
			Rather than timing out after 20 ms if an EC
			command is not properly ACKed, override the length
			of the timeout.  We have interrupts disabled while
			waiting for the ACK, so if this is set too high
			interrupts *may* be lost!

	opl3=		[HW,OSS]
			Format: <io>

	oprofile.timer=	[HW]
			Use timer interrupt instead of performance counters

	oprofile.cpu_type=	Force an oprofile cpu type
			This might be useful if you have an older oprofile
			userland or if you want common events.
			Format: { archperfmon }
			archperfmon: [X86] Force use of architectural
				perfmon on Intel CPUs instead of the
				CPU specific event set.

	osst=		[HW,SCSI] SCSI Tape Driver
			Format: <buffer_size>,<write_threshold>
			See also Documentation/scsi/st.txt.

	panic=		[KNL] Kernel behaviour on panic
			Format: <timeout>

	parkbd.port=	[HW] Parallel port number the keyboard adapter is
			connected to, default is 0.
			Format: <parport#>
	parkbd.mode=	[HW] Parallel port keyboard adapter mode of operation,
			0 for XT, 1 for AT (default is AT).
			Format: <mode>

	parport=	[HW,PPT] Specify parallel ports. 0 disables.
			Format: { 0 | auto | 0xBBB[,IRQ[,DMA]] }
			Use 'auto' to force the driver to use any
			IRQ/DMA settings detected (the default is to
			ignore detected IRQ/DMA settings because of
			possible conflicts). You can specify the base
			address, IRQ, and DMA settings; IRQ and DMA
			should be numbers, or 'auto' (for using detected
			settings on that particular port), or 'nofifo'
			(to avoid using a FIFO even if it is detected).
			Parallel ports are assigned in the order they
			are specified on the command line, starting
			with parport0.

	parport_init_mode=	[HW,PPT]
			Configure VIA parallel port to operate in
			a specific mode. This is necessary on Pegasos
			computer where firmware has no options for setting
			up parallel port mode and sets it to spp.
			Currently this function knows 686a and 8231 chips.
			Format: [spp|ps2|epp|ecp|ecpepp]

	pas2=		[HW,OSS] Format:
			<io>,<irq>,<dma>,<dma16>,<sb_io>,<sb_irq>,<sb_dma>,<sb_dma16>

	pas16=		[HW,SCSI]
			See header of drivers/scsi/pas16.c.

	pause_on_oops=
			Halt all CPUs after the first oops has been printed for
			the specified number of seconds.  This is to be used if
			your oopses keep scrolling off the screen.

	pcbit=		[HW,ISDN]

	pcd.		[PARIDE]
			See header of drivers/block/paride/pcd.c.
			See also Documentation/blockdev/paride.txt.

	pci=option[,option...]	[PCI] various PCI subsystem options:
		earlydump	[X86] dump PCI config space before the kernel
			        changes anything
		off		[X86] don't probe for the PCI bus
		bios		[X86-32] force use of PCI BIOS, don't access
				the hardware directly. Use this if your machine
				has a non-standard PCI host bridge.
		nobios		[X86-32] disallow use of PCI BIOS, only direct
				hardware access methods are allowed. Use this
				if you experience crashes upon bootup and you
				suspect they are caused by the BIOS.
		conf1		[X86] Force use of PCI Configuration
				Mechanism 1.
		conf2		[X86] Force use of PCI Configuration
				Mechanism 2.
		noaer		[PCIE] If the PCIEAER kernel config parameter is
				enabled, this kernel boot option can be used to
				disable the use of PCIE advanced error reporting.
		nodomains	[PCI] Disable support for multiple PCI
				root domains (aka PCI segments, in ACPI-speak).
		nommconf	[X86] Disable use of MMCONFIG for PCI
				Configuration
		nomsi		[MSI] If the PCI_MSI kernel config parameter is
				enabled, this kernel boot option can be used to
				disable the use of MSI interrupts system-wide.
		noioapicquirk	[APIC] Disable all boot interrupt quirks.
				Safety option to keep boot IRQs enabled. This
				should never be necessary.
		ioapicreroute	[APIC] Enable rerouting of boot IRQs to the
				primary IO-APIC for bridges that cannot disable
				boot IRQs. This fixes a source of spurious IRQs
				when the system masks IRQs.
		noioapicreroute	[APIC] Disable workaround that uses the
				boot IRQ equivalent of an IRQ that connects to
				a chipset where boot IRQs cannot be disabled.
				The opposite of ioapicreroute.
		biosirq		[X86-32] Use PCI BIOS calls to get the interrupt
				routing table. These calls are known to be buggy
				on several machines and they hang the machine
				when used, but on other computers it's the only
				way to get the interrupt routing table. Try
				this option if the kernel is unable to allocate
				IRQs or discover secondary PCI buses on your
				motherboard.
		rom		[X86] Assign address space to expansion ROMs.
				Use with caution as certain devices share
				address decoders between ROMs and other
				resources.
		norom		[X86] Do not assign address space to
				expansion ROMs that do not already have
				BIOS assigned address ranges.
		irqmask=0xMMMM	[X86] Set a bit mask of IRQs allowed to be
				assigned automatically to PCI devices. You can
				make the kernel exclude IRQs of your ISA cards
				this way.
		pirqaddr=0xAAAAA	[X86] Specify the physical address
				of the PIRQ table (normally generated
				by the BIOS) if it is outside the
				F0000h-100000h range.
		lastbus=N	[X86] Scan all buses thru bus #N. Can be
				useful if the kernel is unable to find your
				secondary buses and you want to tell it
				explicitly which ones they are.
		assign-busses	[X86] Always assign all PCI bus
				numbers ourselves, overriding
				whatever the firmware may have done.
		usepirqmask	[X86] Honor the possible IRQ mask stored
				in the BIOS $PIR table. This is needed on
				some systems with broken BIOSes, notably
				some HP Pavilion N5400 and Omnibook XE3
				notebooks. This will have no effect if ACPI
				IRQ routing is enabled.
		noacpi		[X86] Do not use ACPI for IRQ routing
				or for PCI scanning.
		use_crs		[X86] Use _CRS for PCI resource
				allocation.
		routeirq	Do IRQ routing for all PCI devices.
				This is normally done in pci_enable_device(),
				so this option is a temporary workaround
				for broken drivers that don't call it.
		skip_isa_align	[X86] do not align io start addr, so can
				handle more pci cards
		firmware	[ARM] Do not re-enumerate the bus but instead
				just use the configuration from the
				bootloader. This is currently used on
				IXP2000 systems where the bus has to be
				configured a certain way for adjunct CPUs.
		noearly		[X86] Don't do any early type 1 scanning.
				This might help on some broken boards which
				machine check when some devices' config space
				is read. But various workarounds are disabled
				and some IOMMU drivers will not work.
		bfsort		Sort PCI devices into breadth-first order.
				This sorting is done to get a device
				order compatible with older (<= 2.4) kernels.
		nobfsort	Don't sort PCI devices into breadth-first order.
		cbiosize=nn[KMG]	The fixed amount of bus space which is
				reserved for the CardBus bridge's IO window.
				The default value is 256 bytes.
		cbmemsize=nn[KMG]	The fixed amount of bus space which is
				reserved for the CardBus bridge's memory
				window. The default value is 64 megabytes.
		resource_alignment=
				Format:
				[<order of align>@][<domain>:]<bus>:<slot>.<func>[; ...]
				Specifies alignment and device to reassign
				aligned memory resources.
				If <order of align> is not specified,
				PAGE_SIZE is used as alignment.
				PCI-PCI bridge can be specified, if resource
				windows need to be expanded.

	pcie_aspm=	[PCIE] Forcibly enable or disable PCIe Active State Power
			Management.
		off	Disable ASPM.
		force	Enable ASPM even on devices that claim not to support it.
			WARNING: Forcing ASPM on may cause system lockups.

	pcmv=		[HW,PCMCIA] BadgePAD 4

	pd.		[PARIDE]
			See Documentation/blockdev/paride.txt.

	pdcchassis=	[PARISC,HW] Disable/Enable PDC Chassis Status codes at
			boot time.
			Format: { 0 | 1 }
			See arch/parisc/kernel/pdc_chassis.c

	pf.		[PARIDE]
			See Documentation/blockdev/paride.txt.

	pg.		[PARIDE]
			See Documentation/blockdev/paride.txt.

	pirq=		[SMP,APIC] Manual mp-table setup
			See Documentation/x86/i386/IO-APIC.txt.

	plip=		[PPT,NET] Parallel port network link
			Format: { parport<nr> | timid | 0 }
			See also Documentation/parport.txt.

	pmtmr=		[X86] Manual setup of pmtmr I/O Port. 
			Override pmtimer IOPort with a hex value.
			e.g. pmtmr=0x508

	pnp.debug	[PNP]
			Enable PNP debug messages.  This depends on the
			CONFIG_PNP_DEBUG_MESSAGES option.

	pnpacpi=	[ACPI]
			{ off }

	pnpbios=	[ISAPNP]
			{ on | off | curr | res | no-curr | no-res }

	pnp_reserve_irq=
			[ISAPNP] Exclude IRQs for the autoconfiguration

	pnp_reserve_dma=
			[ISAPNP] Exclude DMAs for the autoconfiguration

	pnp_reserve_io=	[ISAPNP] Exclude I/O ports for the autoconfiguration
			Ranges are in pairs (I/O port base and size).

	pnp_reserve_mem=
			[ISAPNP] Exclude memory regions for the
			autoconfiguration.
			Ranges are in pairs (memory base and size).

	ports=		[IP_VS_FTP] IPVS ftp helper module
			Default is 21.
			Up to 8 (IP_VS_APP_MAX_PORTS) ports
			may be specified.
			Format: <port>,<port>....

	print-fatal-signals=
			[KNL] debug: print fatal signals
			print-fatal-signals=1: print segfault info to
			the kernel console.
			default: off.

	printk.time=	Show timing data prefixed to each printk message line
			Format: <bool>  (1/Y/y=enable, 0/N/n=disable)

	processor.max_cstate=	[HW,ACPI]
			Limit processor to maximum C-state
			max_cstate=9 overrides any DMI blacklist limit.

	processor.nocst	[HW,ACPI]
			Ignore the _CST method to determine C-states,
			instead using the legacy FADT method

	profile=	[KNL] Enable kernel profiling via /proc/profile
			Format: [schedule,]<number>
			Param: "schedule" - profile schedule points.
			Param: <number> - step/bucket size as a power of 2 for
				statistical time based profiling.
			Param: "sleep" - profile D-state sleeping (millisecs).
				Requires CONFIG_SCHEDSTATS
			Param: "kvm" - profile VM exits.

	prompt_ramdisk=	[RAM] List of RAM disks to prompt for floppy disk
			before loading.
			See Documentation/blockdev/ramdisk.txt.

	psmouse.proto=	[HW,MOUSE] Highest PS2 mouse protocol extension to
			probe for; one of (bare|imps|exps|lifebook|any).
	psmouse.rate=	[HW,MOUSE] Set desired mouse report rate, in reports
			per second.
	psmouse.resetafter=	[HW,MOUSE]
			Try to reset the device after so many bad packets
			(0 = never).
	psmouse.resolution=
			[HW,MOUSE] Set desired mouse resolution, in dpi.
	psmouse.smartscroll=
			[HW,MOUSE] Controls Logitech smartscroll autorepeat.
			0 = disabled, 1 = enabled (default).

	pss=		[HW,OSS] Personal Sound System (ECHO ESC614)
			Format:
			<io>,<mss_io>,<mss_irq>,<mss_dma>,<mpu_io>,<mpu_irq>

	pt.		[PARIDE]
			See Documentation/blockdev/paride.txt.

	pty.legacy_count=
			[KNL] Number of legacy pty's. Overwrites compiled-in
			default number.

	quiet		[KNL] Disable most log messages

	r128=		[HW,DRM]

	raid=		[HW,RAID]
			See Documentation/md.txt.

	ramdisk_blocksize=	[RAM]
			See Documentation/blockdev/ramdisk.txt.

	ramdisk_size=	[RAM] Sizes of RAM disks in kilobytes
			See Documentation/blockdev/ramdisk.txt.

	rcupdate.blimit=	[KNL,BOOT]
			Set maximum number of finished RCU callbacks to process
			in one batch.

	rcupdate.qhimark=	[KNL,BOOT]
			Set threshold of queued
			RCU callbacks over which batch limiting is disabled.

	rcupdate.qlowmark=	[KNL,BOOT]
			Set threshold of queued RCU callbacks below which
			batch limiting is re-enabled.

	rdinit=		[KNL]
			Format: <full_path>
			Run specified binary instead of /init from the ramdisk,
			used for early userspace startup. See initrd.

	reboot=		[BUGS=X86-32,BUGS=ARM,BUGS=IA-64] Rebooting mode
			Format: <reboot_mode>[,<reboot_mode2>[,...]]
			See arch/*/kernel/reboot.c or arch/*/kernel/process.c

	relax_domain_level=
			[KNL, SMP] Set scheduler's default relax_domain_level.
			See Documentation/cgroups/cpusets.txt.

	reserve=	[KNL,BUGS] Force the kernel to ignore some iomem area

	reservetop=	[X86-32]
			Format: nn[KMG]
			Reserves a hole at the top of the kernel virtual
			address space.

	reset_devices	[KNL] Force drivers to reset the underlying device
			during initialization.

	resume=		[SWSUSP]
			Specify the partition device for software suspend

	resume_offset=	[SWSUSP]
			Specify the offset from the beginning of the partition
			given by "resume=" at which the swap header is located,
			in <PAGE_SIZE> units (needed only for swap files).
			See  Documentation/power/swsusp-and-swap-files.txt

	retain_initrd	[RAM] Keep initrd memory after extraction

	rhash_entries=	[KNL,NET]
			Set number of hash buckets for route cache

	riscom8=	[HW,SERIAL]
			Format: <io_board1>[,<io_board2>[,...<io_boardN>]]

	ro		[KNL] Mount root device read-only on boot

	root=		[KNL] Root filesystem

	rootdelay=	[KNL] Delay (in seconds) to pause before attempting to
			mount the root filesystem

	rootflags=	[KNL] Set root filesystem mount option string

	rootfstype=	[KNL] Set root filesystem type

	rootwait	[KNL] Wait (indefinitely) for root device to show up.
			Useful for devices that are detected asynchronously
			(e.g. USB and MMC devices).

	root_plug.vendor_id=
			[ROOTPLUG] Override the default vendor ID

	root_plug.product_id=
			[ROOTPLUG] Override the default product ID

	root_plug.debug=
			[ROOTPLUG] Enable debugging output

	rw		[KNL] Mount root device read-write on boot

	S		[KNL] Run init in single mode

	sa1100ir	[NET]
			See drivers/net/irda/sa1100_ir.c.

	sbni=		[NET] Granch SBNI12 leased line adapter

	sc1200wdt=	[HW,WDT] SC1200 WDT (watchdog) driver
			Format: <io>[,<timeout>[,<isapnp>]]

	scsi_debug_*=	[SCSI]
			See drivers/scsi/scsi_debug.c.

	scsi_default_dev_flags=
			[SCSI] SCSI default device flags
			Format: <integer>

	scsi_dev_flags=	[SCSI] Black/white list entry for vendor and model
			Format: <vendor>:<model>:<flags>
			(flags are integer value)

	scsi_logging_level=	[SCSI] a bit mask of logging levels
			See drivers/scsi/scsi_logging.h for bits.  Also
			settable via sysctl at dev.scsi.logging_level
			(/proc/sys/dev/scsi/logging_level).
			There is also a nice 'scsi_logging_level' script in the
			S390-tools package, available for download at
			http://www-128.ibm.com/developerworks/linux/linux390/s390-tools-1.5.4.html

	scsi_mod.scan=	[SCSI] sync (default) scans SCSI busses as they are
			discovered.  async scans them in kernel threads,
			allowing boot to proceed.  none ignores them, expecting
			user space to do the scan.

	security=	[SECURITY] Choose a security module to enable at boot.
			If this boot parameter is not specified, only the first
			security module asking for security registration will be
			loaded. An invalid security module name will be treated
			as if no module has been chosen.

	selinux=	[SELINUX] Disable or enable SELinux at boot time.
			Format: { "0" | "1" }
			See security/selinux/Kconfig help text.
			0 -- disable.
			1 -- enable.
			Default value is set via kernel config option.
			If enabled at boot time, /selinux/disable can be used
			later to disable prior to initial policy load.

	serialnumber	[BUGS=X86-32]

	shapers=	[NET]
			Maximal number of shapers.

	show_msr=	[x86] show boot-time MSR settings
			Format: { <integer> }
			Show boot-time (BIOS-initialized) MSR settings.
			The parameter means the number of CPUs to show,
			for example 1 means boot CPU only.

	sim710=		[SCSI,HW]
			See header of drivers/scsi/sim710.c.

	simeth=		[IA-64]
	simscsi=

	slram=		[HW,MTD]

	slub_debug[=options[,slabs]]	[MM, SLUB]
			Enabling slub_debug allows one to determine the
			culprit if slab objects become corrupted. Enabling
			slub_debug can create guard zones around objects and
			may poison objects when not in use. Also tracks the
			last alloc / free. For more information see
			Documentation/vm/slub.txt.

	slub_max_order= [MM, SLUB]
			Determines the maximum allowed order for slabs.
			A high setting may cause OOMs due to memory
			fragmentation. For more information see
			Documentation/vm/slub.txt.

	slub_min_objects=	[MM, SLUB]
			The minimum number of objects per slab. SLUB will
			increase the slab order up to slub_max_order to
			generate a sufficiently large slab able to contain
			the number of objects indicated. The higher the number
			of objects the smaller the overhead of tracking slabs
			and the less frequently locks need to be acquired.
			For more information see Documentation/vm/slub.txt.

	slub_min_order=	[MM, SLUB]
			Determines the mininum page order for slabs. Must be
			lower than slub_max_order.
			For more information see Documentation/vm/slub.txt.

	slub_nomerge	[MM, SLUB]
			Disable merging of slabs with similar size. May be
			necessary if there is some reason to distinguish
			allocs to different slabs. Debug options disable
			merging on their own.
			For more information see Documentation/vm/slub.txt.

	smart2=		[HW]
			Format: <io1>[,<io2>[,...,<io8>]]

	smp-alt-once	[X86-32,SMP] On a hotplug CPU system, only
			attempt to substitute SMP alternatives once at boot.

	smsc-ircc2.nopnp	[HW] Don't use PNP to discover SMC devices
	smsc-ircc2.ircc_cfg=	[HW] Device configuration I/O port
	smsc-ircc2.ircc_sir=	[HW] SIR base I/O port
	smsc-ircc2.ircc_fir=	[HW] FIR base I/O port
	smsc-ircc2.ircc_irq=	[HW] IRQ line
	smsc-ircc2.ircc_dma=	[HW] DMA channel
	smsc-ircc2.ircc_transceiver= [HW] Transceiver type:
				0: Toshiba Satellite 1800 (GP data pin select)
				1: Fast pin select (default)
				2: ATC IRMode

	snd-ad1816a=	[HW,ALSA]

	snd-ad1848=	[HW,ALSA]

	snd-ali5451=	[HW,ALSA]

	snd-als100=	[HW,ALSA]

	snd-als4000=	[HW,ALSA]

	snd-azt2320=	[HW,ALSA]

	snd-cmi8330=	[HW,ALSA]

	snd-cmipci=	[HW,ALSA]

	snd-cs4231=	[HW,ALSA]

	snd-cs4232=	[HW,ALSA]

	snd-cs4236=	[HW,ALSA]

	snd-cs4281=	[HW,ALSA]

	snd-cs46xx=	[HW,ALSA]

	snd-dt019x=	[HW,ALSA]

	snd-dummy=	[HW,ALSA]

	snd-emu10k1=	[HW,ALSA]

	snd-ens1370=	[HW,ALSA]

	snd-ens1371=	[HW,ALSA]

	snd-es968=	[HW,ALSA]

	snd-es1688=	[HW,ALSA]

	snd-es18xx=	[HW,ALSA]

	snd-es1938=	[HW,ALSA]

	snd-es1968=	[HW,ALSA]

	snd-fm801=	[HW,ALSA]

	snd-gusclassic=	[HW,ALSA]

	snd-gusextreme=	[HW,ALSA]

	snd-gusmax=	[HW,ALSA]

	snd-hdsp=	[HW,ALSA]

	snd-ice1712=	[HW,ALSA]

	snd-intel8x0=	[HW,ALSA]

	snd-interwave=	[HW,ALSA]

	snd-interwave-stb=
			[HW,ALSA]

	snd-korg1212=	[HW,ALSA]

	snd-maestro3=	[HW,ALSA]

	snd-mpu401=	[HW,ALSA]

	snd-mtpav=	[HW,ALSA]

	snd-nm256=	[HW,ALSA]

	snd-opl3sa2=	[HW,ALSA]

	snd-opti92x-ad1848=
			[HW,ALSA]

	snd-opti92x-cs4231=
			[HW,ALSA]

	snd-opti93x=	[HW,ALSA]

	snd-pmac=	[HW,ALSA]

	snd-rme32=	[HW,ALSA]

	snd-rme96=	[HW,ALSA]

	snd-rme9652=	[HW,ALSA]

	snd-sb8=	[HW,ALSA]

	snd-sb16=	[HW,ALSA]

	snd-sbawe=	[HW,ALSA]

	snd-serial=	[HW,ALSA]

	snd-sgalaxy=	[HW,ALSA]

	snd-sonicvibes=	[HW,ALSA]

	snd-sun-amd7930=
			[HW,ALSA]

	snd-sun-cs4231=	[HW,ALSA]

	snd-trident=	[HW,ALSA]

	snd-usb-audio=	[HW,ALSA,USB]

	snd-via82xx=	[HW,ALSA]

	snd-virmidi=	[HW,ALSA]

	snd-wavefront=	[HW,ALSA]

	snd-ymfpci=	[HW,ALSA]

	softlockup_panic=
			[KNL] Should the soft-lockup detector generate panics.

	sonypi.*=	[HW] Sony Programmable I/O Control Device driver
			See Documentation/sonypi.txt

	specialix=	[HW,SERIAL] Specialix multi-serial port adapter
			See Documentation/serial/specialix.txt.

	spia_io_base=	[HW,MTD]
	spia_fio_base=
	spia_pedr=
	spia_peddr=

	sscape=		[HW,OSS]
			Format: <io>,<irq>,<dma>,<mpu_io>,<mpu_irq>

	st=		[HW,SCSI] SCSI tape parameters (buffers, etc.)
			See Documentation/scsi/st.txt.

	stacktrace	[FTRACE]
			Enabled the stack tracer on boot up.

	sti=		[PARISC,HW]
			Format: <num>
			Set the STI (builtin display/keyboard on the HP-PARISC
			machines) console (graphic card) which should be used
			as the initial boot-console.
			See also comment in drivers/video/console/sticore.c.

	sti_font=	[HW]
			See comment in drivers/video/console/sticore.c.

	stifb=		[HW]
			Format: bpp:<bpp1>[:<bpp2>[:<bpp3>...]]

	sunrpc.pool_mode=
			[NFS]
			Control how the NFS server code allocates CPUs to
			service thread pools.  Depending on how many NICs
			you have and where their interrupts are bound, this
			option will affect which CPUs will do NFS serving.
			Note: this parameter cannot be changed while the
			NFS server is running.

			auto	    the server chooses an appropriate mode
				    automatically using heuristics
			global	    a single global pool contains all CPUs
			percpu	    one pool for each CPU
			pernode	    one pool for each NUMA node (equivalent
				    to global on non-NUMA machines)

	swiotlb=	[IA-64] Number of I/O TLB slabs

	switches=	[HW,M68k]

	sym53c416=	[HW,SCSI]
			See header of drivers/scsi/sym53c416.c.

	sysrq_always_enabled
			[KNL]
			Ignore sysrq setting - this boot parameter will
			neutralize any effect of /proc/sys/kernel/sysrq.
			Useful for debugging.

	t128=		[HW,SCSI]
			See header of drivers/scsi/t128.c.

	tdfx=		[HW,DRM]

	test_suspend=	[SUSPEND]
			Specify "mem" (for Suspend-to-RAM) or "standby" (for
			standby suspend) as the system sleep state to briefly
			enter during system startup.  The system is woken from
			this state using a wakeup-capable RTC alarm.

	thash_entries=	[KNL,NET]
			Set number of hash buckets for TCP connection

	thermal.act=	[HW,ACPI]
			-1: disable all active trip points in all thermal zones
			<degrees C>: override all lowest active trip points

	thermal.crt=	[HW,ACPI]
			-1: disable all critical trip points in all thermal zones
			<degrees C>: override all critical trip points

	thermal.nocrt=	[HW,ACPI]
			Set to disable actions on ACPI thermal zone
			critical and hot trip points.

	thermal.off=	[HW,ACPI]
			1: disable ACPI thermal control

	thermal.psv=	[HW,ACPI]
			-1: disable all passive trip points
			<degrees C>: override all passive trip points to this
			value

	thermal.tzp=	[HW,ACPI]
			Specify global default ACPI thermal zone polling rate
			<deci-seconds>: poll all this frequency
			0: no polling (default)

	tmscsim=	[HW,SCSI]
			See comment before function dc390_setup() in
			drivers/scsi/tmscsim.c.

	topology=	[S390]
			Format: {off | on}
			Specify if the kernel should make use of the cpu
			topology informations if the hardware supports these.
			The scheduler will make use of these informations and
			e.g. base its process migration decisions on it.
			Default is off.

	tp720=		[HW,PS2]

	trace_buf_size=nn[KMG] [ftrace] will set tracing buffer size.

	trix=		[HW,OSS] MediaTrix AudioTrix Pro
			Format:
			<io>,<irq>,<dma>,<dma2>,<sb_io>,<sb_irq>,<sb_dma>,<mpu_io>,<mpu_irq>

	tsc=		Disable clocksource-must-verify flag for TSC.
			Format: <string>
			[x86] reliable: mark tsc clocksource as reliable, this
			disables clocksource verification at runtime.
			Used to enable high-resolution timer mode on older
			hardware, and in virtualized environment.

	turbografx.map[2|3]=	[HW,JOY]
			TurboGraFX parallel port interface
			Format:
			<port#>,<js1>,<js2>,<js3>,<js4>,<js5>,<js6>,<js7>
			See also Documentation/input/joystick-parport.txt

	u14-34f=	[HW,SCSI] UltraStor 14F/34F SCSI host adapter
			See header of drivers/scsi/u14-34f.c.

	uart401=	[HW,OSS]
			Format: <io>,<irq>

	uart6850=	[HW,OSS]
			Format: <io>,<irq>

	uhci-hcd.ignore_oc=
			[USB] Ignore overcurrent events (default N).
			Some badly-designed motherboards generate lots of
			bogus events, for ports that aren't wired to
			anything.  Set this parameter to avoid log spamming.
			Note that genuine overcurrent events won't be
			reported either.

	unknown_nmi_panic
			[X86]
			Set unknown_nmi_panic=1 early on boot.

	usbcore.autosuspend=
			[USB] The autosuspend time delay (in seconds) used
			for newly-detected USB devices (default 2).  This
			is the time required before an idle device will be
			autosuspended.  Devices for which the delay is set
			to a negative value won't be autosuspended at all.

	usbcore.usbfs_snoop=
			[USB] Set to log all usbfs traffic (default 0 = off).

	usbcore.blinkenlights=
			[USB] Set to cycle leds on hubs (default 0 = off).

	usbcore.old_scheme_first=
			[USB] Start with the old device initialization
			scheme (default 0 = off).

	usbcore.use_both_schemes=
			[USB] Try the other device initialization scheme
			if the first one fails (default 1 = enabled).

	usbcore.initial_descriptor_timeout=
			[USB] Specifies timeout for the initial 64-byte
                        USB_REQ_GET_DESCRIPTOR request in milliseconds
			(default 5000 = 5.0 seconds).

	usbhid.mousepoll=
			[USBHID] The interval which mice are to be polled at.

	usb-storage.delay_use=
			[UMS] The delay in seconds before a new device is
			scanned for Logical Units (default 5).

	usb-storage.quirks=
			[UMS] A list of quirks entries to supplement or
			override the built-in unusual_devs list.  List
			entries are separated by commas.  Each entry has
			the form VID:PID:Flags where VID and PID are Vendor
			and Product ID values (4-digit hex numbers) and
			Flags is a set of characters, each corresponding
			to a common usb-storage quirk flag as follows:
				a = SANE_SENSE (collect more than 18 bytes
					of sense data);
				c = FIX_CAPACITY (decrease the reported
					device capacity by one sector);
				h = CAPACITY_HEURISTICS (decrease the
					reported device capacity by one
					sector if the number is odd);
				i = IGNORE_DEVICE (don't bind to this
					device);
				l = NOT_LOCKABLE (don't try to lock and
					unlock ejectable media);
				m = MAX_SECTORS_64 (don't transfer more
					than 64 sectors = 32 KB at a time);
				o = CAPACITY_OK (accept the capacity
					reported by the device);
				r = IGNORE_RESIDUE (the device reports
					bogus residue values);
				s = SINGLE_LUN (the device has only one
					Logical Unit);
				w = NO_WP_DETECT (don't test whether the
					medium is write-protected).
			Example: quirks=0419:aaf5:rl,0421:0433:rc

	vdso=		[X86,SH]
			vdso=2: enable compat VDSO (default with COMPAT_VDSO)
			vdso=1: enable VDSO (default)
			vdso=0: disable VDSO mapping

	vdso32=		[X86]
			vdso32=2: enable compat VDSO (default with COMPAT_VDSO)
			vdso32=1: enable 32-bit VDSO (default)
			vdso32=0: disable 32-bit VDSO mapping

	vector=		[IA-64,SMP]
			vector=percpu: enable percpu vector domain

	video=		[FB] Frame buffer configuration
			See Documentation/fb/modedb.txt.

	vga=		[BOOT,X86-32] Select a particular video mode
			See Documentation/x86/boot.txt and
			Documentation/svga.txt.
			Use vga=ask for menu.
			This is actually a boot loader parameter; the value is
			passed to the kernel using a special protocol.

	vmalloc=nn[KMG]	[KNL,BOOT] Forces the vmalloc area to have an exact
			size of <nn>. This can be used to increase the
			minimum size (128MB on x86). It can also be used to
			decrease the size and leave more room for directly
			mapped kernel RAM.

	vmhalt=		[KNL,S390] Perform z/VM CP command after system halt.
			Format: <command>

	vmpanic=	[KNL,S390] Perform z/VM CP command after kernel panic.
			Format: <command>

	vmpoff=		[KNL,S390] Perform z/VM CP command after power off.
			Format: <command>

	vt.default_blu=	[VT]
			Format: <blue0>,<blue1>,<blue2>,...,<blue15>
			Change the default blue palette of the console.
			This is a 16-member array composed of values
			ranging from 0-255.

	vt.default_grn=	[VT]
			Format: <green0>,<green1>,<green2>,...,<green15>
			Change the default green palette of the console.
			This is a 16-member array composed of values
			ranging from 0-255.

	vt.default_red=	[VT]
			Format: <red0>,<red1>,<red2>,...,<red15>
			Change the default red palette of the console.
			This is a 16-member array composed of values
			ranging from 0-255.

	vt.default_utf8=
			[VT]
			Format=<0|1>
			Set system-wide default UTF-8 mode for all tty's.
			Default is 1, i.e. UTF-8 mode is enabled for all
			newly opened terminals.

	waveartist=	[HW,OSS]
			Format: <io>,<irq>,<dma>,<dma2>

	wd33c93=	[HW,SCSI]
			See header of drivers/scsi/wd33c93.c.

	wd7000=		[HW,SCSI]
			See header of drivers/scsi/wd7000.c.

	wdt=		[WDT] Watchdog
			See Documentation/watchdog/wdt.txt.

	x2apic_phys	[X86-64,APIC] Use x2apic physical mode instead of
			default x2apic cluster mode on platforms
			supporting x2apic.

	xd=		[HW,XT] Original XT pre-IDE (RLL encoded) disks.
	xd_geo=		See header of drivers/block/xd.c.

	xirc2ps_cs=	[NET,PCMCIA]
			Format:
			<irq>,<irq_mask>,<io>,<full_duplex>,<do_sound>,<lockup_hack>[,<irq2>[,<irq3>[,<irq4>]]]

______________________________________________________________________

TODO:

	Add documentation for ALSA options.
	Add more DRM drivers.
5' href='#n4995'>4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966
static const int dgrs_firmnum = 550;
static char dgrs_firmver[] = "$Version$";
static char dgrs_firmdate[] = "11/16/96 03:45:15";
static unsigned char dgrs_code[] __initdata = {
	213,5,192,8,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,64,40,35,41,
	101,115,52,104,46,98,105,110,32,32,32,32,
	32,32,49,46,48,32,48,48,47,48,48,47,
	57,52,0,64,40,35,41,67,111,112,121,114,
	105,103,104,116,32,49,57,57,53,44,32,68,
	105,103,105,32,73,110,116,101,114,110,97,116,
	105,111,110,97,108,46,32,32,65,108,108,32,
	82,105,103,104,116,115,32,82,101,115,101,114,
	118,101,100,46,0,0,0,0,97,5,192,8,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,255,255,0,16,0,0,0,0,
	0,0,0,0,8,0,224,3,0,0,0,0,
	148,255,189,39,16,0,161,175,20,0,162,175,
	24,0,163,175,28,0,164,175,32,0,165,175,
	36,0,166,175,40,0,167,175,44,0,168,175,
	48,0,169,175,52,0,170,175,56,0,171,175,
	60,0,172,175,64,0,173,175,68,0,174,175,
	72,0,175,175,76,0,184,175,80,0,185,175,
	88,0,190,175,92,0,191,175,0,112,8,64,
	18,72,0,0,16,80,0,0,0,96,11,64,
	84,0,168,175,96,0,169,175,100,0,170,175,
	104,0,171,175,33,56,0,1,0,131,24,60,
	0,1,24,39,0,0,8,143,0,0,0,0,
	1,0,8,33,0,0,8,175,0,104,5,64,
	0,96,6,64,124,0,168,48,212,255,0,21,
	0,0,0,0,36,64,166,0,0,255,8,49,
	27,0,0,17,0,0,0,0,130,65,8,0,
	2,131,9,60,33,72,40,1,0,220,41,141,
	66,64,8,0,2,131,10,60,33,80,72,1,
	0,224,74,141,0,0,0,0,38,80,70,1,
	1,255,74,49,33,40,192,0,38,48,202,0,
	0,96,134,64,66,64,8,0,2,131,4,60,
	33,32,136,0,0,226,132,144,9,248,32,1,
	0,0,0,0,104,0,166,143,0,0,0,0,
	0,96,134,64,0,104,5,64,227,255,0,16,
	0,0,0,0,104,0,168,143,96,0,169,143,
	100,0,170,143,0,0,0,0,0,96,136,64,
	19,0,32,1,17,0,64,1,20,0,162,143,
	24,0,163,143,28,0,164,143,32,0,165,143,
	36,0,166,143,40,0,167,143,44,0,168,143,
	48,0,169,143,52,0,170,143,56,0,171,143,
	60,0,172,143,64,0,173,143,68,0,174,143,
	72,0,175,143,76,0,184,143,80,0,185,143,
	88,0,190,143,92,0,191,143,0,0,0,0,
	84,0,186,143,16,0,161,143,108,0,189,39,
	8,0,64,3,16,0,0,66,0,96,26,64,
	0,0,0,0,255,255,27,60,254,0,123,55,
	0,0,0,0,36,208,91,3,0,0,0,0,
	0,96,154,64,0,0,0,0,0,112,26,64,
	0,0,0,0,16,0,0,66,0,0,0,0,
	8,0,64,3,0,0,0,0,255,255,8,36,
	133,255,0,17,0,0,0,0,1,0,8,37,
	130,255,0,21,0,0,0,0,255,255,8,36,
	33,8,0,1,126,255,40,20,0,0,0,0,
	1,0,33,36,123,255,32,20,0,0,0,0,
	255,255,2,36,120,255,72,20,0,0,0,0,
	1,0,66,36,117,255,64,20,0,0,0,0,
	255,255,3,36,114,255,104,20,0,0,0,0,
	1,0,99,36,111,255,96,20,0,0,0,0,
	255,255,4,36,108,255,136,20,0,0,0,0,
	1,0,132,36,105,255,128,20,0,0,0,0,
	255,255,5,36,102,255,168,20,0,0,0,0,
	1,0,165,36,99,255,160,20,0,0,0,0,
	255,255,6,36,96,255,200,20,0,0,0,0,
	1,0,198,36,93,255,192,20,0,0,0,0,
	255,255,7,36,90,255,232,20,0,0,0,0,
	1,0,231,36,87,255,224,20,0,0,0,0,
	255,255,9,36,84,255,40,21,0,0,0,0,
	1,0,41,37,81,255,32,21,0,0,0,0,
	255,255,10,36,78,255,72,21,0,0,0,0,
	1,0,74,37,75,255,64,21,0,0,0,0,
	255,255,11,36,72,255,104,21,0,0,0,0,
	1,0,107,37,69,255,96,21,0,0,0,0,
	255,255,12,36,66,255,136,21,0,0,0,0,
	1,0,140,37,63,255,128,21,0,0,0,0,
	255,255,13,36,60,255,168,21,0,0,0,0,
	1,0,173,37,57,255,160,21,0,0,0,0,
	255,255,14,36,54,255,200,21,0,0,0,0,
	1,0,206,37,51,255,192,21,0,0,0,0,
	255,255,15,36,48,255,232,21,0,0,0,0,
	1,0,239,37,45,255,224,21,0,0,0,0,
	255,255,24,36,42,255,8,23,0,0,0,0,
	1,0,24,39,39,255,0,23,0,0,0,0,
	255,255,16,36,36,255,8,22,0,0,0,0,
	1,0,16,38,33,255,0,22,0,0,0,0,
	255,255,17,36,30,255,40,22,0,0,0,0,
	1,0,49,38,27,255,32,22,0,0,0,0,
	255,255,18,36,24,255,72,22,0,0,0,0,
	1,0,82,38,21,255,64,22,0,0,0,0,
	255,255,19,36,18,255,104,22,0,0,0,0,
	1,0,115,38,15,255,96,22,0,0,0,0,
	255,255,20,36,12,255,136,22,0,0,0,0,
	1,0,148,38,9,255,128,22,0,0,0,0,
	255,255,21,36,6,255,168,22,0,0,0,0,
	1,0,181,38,3,255,160,22,0,0,0,0,
	255,255,22,36,0,255,200,22,0,0,0,0,
	1,0,214,38,253,254,192,22,0,0,0,0,
	255,255,23,36,250,254,232,22,0,0,0,0,
	1,0,247,38,247,254,224,22,0,0,0,0,
	255,255,26,36,244,254,72,23,0,0,0,0,
	1,0,90,39,241,254,64,23,0,0,0,0,
	255,255,27,36,238,254,104,23,0,0,0,0,
	1,0,123,39,235,254,96,23,0,0,0,0,
	255,255,28,36,232,254,136,23,0,0,0,0,
	1,0,156,39,229,254,128,23,0,0,0,0,
	255,255,29,36,226,254,168,23,0,0,0,0,
	1,0,189,39,223,254,160,23,0,0,0,0,
	255,255,30,36,220,254,200,23,0,0,0,0,
	1,0,222,39,217,254,192,23,0,0,0,0,
	255,255,31,36,214,254,232,23,0,0,0,0,
	1,0,255,39,211,254,224,23,0,0,0,0,
	0,131,24,60,0,1,24,39,0,32,1,60,
	37,192,1,3,0,96,8,64,0,0,0,0,
	1,0,1,60,37,64,1,1,0,96,136,64,
	33,16,0,0,165,165,3,60,165,165,99,52,
	0,128,1,60,0,0,35,172,0,128,9,60,
	0,0,41,141,0,0,0,0,0,96,10,64,
	0,0,0,0,8,0,1,60,36,80,65,1,
	29,0,64,21,0,0,0,0,27,0,105,20,
	0,0,0,0,0,1,2,36,0,128,1,60,
	33,8,34,0,0,0,32,172,64,16,2,0,
	1,0,1,60,1,0,33,52,43,8,65,0,
	248,255,32,20,0,0,0,0,255,255,3,36,
	0,128,1,60,0,0,35,172,0,1,2,36,
	0,128,3,60,33,24,98,0,0,0,99,140,
	0,0,0,0,7,0,96,20,0,0,0,0,
	64,16,2,0,1,0,1,60,1,0,33,52,
	43,8,65,0,245,255,32,20,0,0,0,0,
	0,96,128,64,0,0,0,0,84,0,2,175,
	0,96,8,64,0,0,0,0,3,0,1,60,
	37,64,1,1,0,96,136,64,33,16,0,0,
	165,165,3,60,165,165,99,52,0,128,1,60,
	0,0,35,172,0,128,9,60,0,0,41,141,
	0,0,0,0,0,96,10,64,0,0,0,0,
	8,0,1,60,36,80,65,1,29,0,64,21,
	0,0,0,0,27,0,105,20,0,0,0,0,
	0,1,2,36,0,128,1,60,33,8,34,0,
	0,0,32,172,64,16,2,0,1,0,1,60,
	1,0,33,52,43,8,65,0,248,255,32,20,
	0,0,0,0,255,255,3,36,0,128,1,60,
	0,0,35,172,0,1,2,36,0,128,3,60,
	33,24,98,0,0,0,99,140,0,0,0,0,
	7,0,96,20,0,0,0,0,64,16,2,0,
	1,0,1,60,1,0,33,52,43,8,65,0,
	245,255,32,20,0,0,0,0,0,96,128,64,
	0,0,0,0,88,0,2,175,88,0,9,143,
	0,0,0,0,17,0,32,17,0,0,0,0,
	0,0,0,0,3,0,2,60,0,0,0,0,
	0,96,130,64,0,128,8,60,37,72,40,1,
	0,0,0,161,4,0,0,161,8,0,0,161,
	12,0,0,161,16,0,0,161,20,0,0,161,
	24,0,0,161,32,0,8,37,247,255,9,21,
	252,255,0,161,84,0,9,143,0,0,0,0,
	17,0,32,17,0,0,0,0,0,0,0,0,
	1,0,2,60,0,0,0,0,0,96,130,64,
	0,128,8,60,37,72,40,1,0,0,0,161,
	4,0,0,161,8,0,0,161,12,0,0,161,
	16,0,0,161,20,0,0,161,24,0,0,161,
	32,0,8,37,247,255,9,21,252,255,0,161,
	32,0,8,60,0,96,136,64,0,104,128,64,
	0,131,2,60,152,28,66,36,255,31,9,60,
	255,255,41,53,36,16,73,0,0,128,9,60,
	37,16,73,0,8,0,64,0,0,0,0,0,
	2,131,8,60,224,210,8,37,252,255,1,36,
	36,64,1,1,3,131,9,60,124,18,41,37,
	252,255,1,36,36,72,33,1,0,0,10,36,
	0,0,10,173,254,255,9,21,4,0,8,37,
	3,131,8,60,128,18,8,37,252,255,1,36,
	36,64,1,1,31,131,9,60,252,255,41,53,
	252,255,1,36,36,72,33,1,237,254,10,60,
	175,222,74,53,0,0,10,173,254,255,9,21,
	4,0,8,37,2,131,8,60,0,212,8,37,
	252,255,1,36,36,64,1,1,2,131,9,60,
	252,219,41,37,252,255,1,36,36,72,33,1,
	173,222,10,60,239,190,74,53,0,0,10,173,
	254,255,9,21,4,0,8,37,0,4,8,60,
	0,0,0,0,0,24,136,64,0,0,0,0,
	2,131,29,60,0,220,189,39,0,0,30,36,
	2,131,28,60,51,8,192,12,16,78,156,39,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	232,255,189,39,16,0,191,175,8,128,132,39,
	15,63,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,16,0,191,175,12,128,132,39,
	15,63,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,16,0,191,175,16,128,132,39,
	15,63,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,16,0,191,175,20,128,132,39,
	15,63,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,24,133,131,143,6,0,2,36,
	20,0,191,175,6,0,98,20,16,0,176,175,
	7,162,3,60,228,0,99,52,1,0,2,36,
	184,7,192,8,0,0,98,172,0,128,130,151,
	5,162,16,60,0,1,66,52,120,63,192,12,
	0,0,2,166,0,128,130,151,0,0,0,0,
	255,254,66,48,0,0,2,166,20,0,191,143,
	16,0,176,143,8,0,224,3,24,0,189,39,
	232,255,189,39,33,16,128,0,3,0,64,4,
	16,0,191,175,254,255,2,60,192,29,66,52,
	0,163,4,60,96,1,132,52,0,163,1,60,
	92,1,34,172,0,163,1,60,104,1,38,172,
	204,63,192,12,8,0,6,36,228,63,192,12,
	255,255,4,36,204,7,192,8,0,0,0,0,
	16,0,191,143,24,0,189,39,8,0,224,3,
	0,0,0,0,216,255,189,39,1,0,6,36,
	3,131,2,60,143,18,66,36,240,255,3,36,
	36,16,67,0,0,163,1,60,120,1,34,172,
	0,163,2,60,120,1,66,140,33,56,0,0,
	32,0,191,175,28,0,177,175,24,0,176,175,
	16,0,160,175,0,163,1,60,116,1,34,172,
	0,163,3,60,112,1,99,140,0,163,2,60,
	116,1,66,140,0,163,4,60,116,1,132,140,
	35,136,98,0,84,64,192,12,33,40,32,2,
	13,0,64,16,0,0,0,0,1,131,4,60,
	96,127,132,36,24,128,144,39,33,40,0,2,
	1,131,7,60,128,127,231,36,15,63,192,12,
	148,0,6,36,1,0,4,36,33,40,0,2,
	188,7,192,12,148,0,6,36,2,0,33,6,
	33,16,32,2,3,0,34,38,131,136,2,0,
	0,163,2,60,116,1,66,140,0,0,0,0,
	6,0,32,18,237,254,3,60,175,222,99,52,
	0,0,67,172,255,255,49,38,253,255,32,22,
	4,0,66,36,32,0,191,143,28,0,177,143,
	24,0,176,143,8,0,224,3,40,0,189,39,
	224,255,189,39,15,0,132,36,240,255,3,36,
	20,0,177,175,0,163,17,60,120,1,49,142,
	0,163,2,60,120,1,66,140,36,32,131,0,
	33,16,68,0,0,163,1,60,120,1,34,172,
	0,163,3,60,120,1,99,140,0,163,2,60,
	112,1,66,140,24,0,191,175,43,16,67,0,
	13,0,64,16,16,0,176,175,1,131,4,60,
	96,127,132,36,24,128,144,39,33,40,0,2,
	1,131,7,60,176,127,231,36,15,63,192,12,
	171,0,6,36,1,0,4,36,33,40,0,2,
	188,7,192,12,171,0,6,36,33,16,32,2,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,216,255,189,39,
	3,0,2,60,7,162,3,60,36,0,191,175,
	32,0,176,175,0,163,1,60,92,1,32,172,
	0,0,99,140,79,17,66,52,32,0,98,20,
	87,0,4,60,76,0,8,60,64,75,8,53,
	250,2,7,60,128,240,231,52,7,162,6,60,
	152,0,198,52,67,73,3,60,67,3,99,52,
	7,162,4,60,48,1,132,52,7,162,5,60,
	0,1,165,52,6,0,2,36,24,133,130,175,
	0,163,1,60,204,5,34,172,4,0,2,36,
	50,133,130,167,2,0,2,36,48,133,130,167,
	1,0,2,36,20,133,130,167,119,119,2,36,
	28,133,136,175,16,133,135,175,0,0,195,172,
	0,0,130,172,67,1,2,36,0,0,162,172,
	109,8,192,8,31,131,4,60,240,188,132,52,
	189,2,3,60,128,231,99,52,4,0,2,36,
	24,133,130,175,0,163,1,60,204,5,34,172,
	0,8,2,36,50,133,130,167,0,4,2,36,
	48,133,130,167,0,2,2,36,20,133,130,167,
	28,133,132,175,16,133,131,175,31,131,4,60,
	0,240,132,52,24,133,131,143,0,131,2,60,
	0,163,1,60,108,1,34,172,0,163,1,60,
	112,1,36,172,1,0,99,36,32,133,131,175,
	210,7,192,12,0,0,0,0,0,163,2,60,
	132,1,66,140,0,128,128,167,2,0,64,20,
	85,0,2,36,0,128,130,167,0,163,2,60,
	136,1,66,140,0,0,0,0,5,0,64,20,
	0,0,0,0,0,128,130,151,0,0,0,0,
	170,0,66,52,0,128,130,167,0,128,131,151,
	5,162,2,60,0,0,67,164,188,64,192,12,
	1,0,16,36,2,131,4,60,0,220,132,36,
	2,131,5,60,0,224,165,36,2,131,6,60,
	0,226,198,36,8,0,7,36,2,131,2,60,
	112,154,66,36,16,0,162,175,2,131,2,60,
	144,154,66,36,20,0,162,175,2,131,2,60,
	176,154,66,36,24,0,162,175,0,131,2,60,
	36,30,66,36,0,163,1,60,92,1,48,172,
	240,64,192,12,28,0,162,175,0,163,3,60,
	124,1,99,140,40,133,128,175,2,0,98,40,
	7,0,64,16,2,0,2,36,18,0,97,4,
	255,255,2,36,7,0,98,16,0,0,0,0,
	196,8,192,8,0,0,0,0,16,0,98,16,
	0,0,0,0,196,8,192,8,0,0,0,0,
	24,133,133,143,1,131,4,60,15,63,192,12,
	208,127,132,36,0,163,1,60,112,25,192,12,
	124,1,32,172,207,8,192,8,0,0,0,0,
	211,8,192,12,0,0,0,0,207,8,192,8,
	0,0,0,0,40,133,144,175,31,10,192,12,
	0,0,0,0,207,8,192,8,0,0,0,0,
	1,131,4,60,96,127,132,36,24,128,144,39,
	33,40,0,2,32,128,135,39,15,63,192,12,
	58,1,6,36,1,0,4,36,33,40,0,2,
	188,7,192,12,58,1,6,36,36,0,191,143,
	32,0,176,143,8,0,224,3,40,0,189,39,
	192,255,189,39,56,0,191,175,52,0,181,175,
	48,0,180,175,44,0,179,175,40,0,178,175,
	36,0,177,175,180,10,192,12,32,0,176,175,
	33,32,0,0,2,0,2,36,0,163,1,60,
	244,57,192,12,92,1,34,172,3,0,2,36,
	0,163,1,60,0,12,192,12,92,1,34,172,
	1,0,4,36,4,0,2,36,0,163,1,60,
	34,11,192,12,92,1,34,172,5,0,2,36,
	0,163,1,60,92,1,34,172,0,163,19,60,
	124,1,115,142,0,163,3,60,160,1,99,140,
	1,0,98,46,80,133,130,175,0,128,2,60,
	5,0,98,20,0,0,0,0,32,133,130,143,
	0,0,0,0,252,8,192,8,255,255,66,36,
	32,133,130,143,0,0,0,0,84,133,130,175,
	130,11,192,12,0,0,0,0,33,32,64,0,
	2,0,5,36,232,3,6,36,0,131,7,60,
	196,37,231,36,156,11,192,12,16,0,160,175,
	35,35,192,12,0,0,0,0,6,0,2,36,
	0,163,1,60,84,35,192,12,92,1,34,172,
	7,0,2,36,0,163,1,60,141,47,192,12,
	92,1,34,172,8,0,2,36,0,163,1,60,
	120,50,192,12,92,1,34,172,9,0,2,36,
	0,163,1,60,92,1,34,172,0,163,2,60,
	240,5,66,140,0,0,0,0,8,0,64,16,
	10,0,2,36,0,163,4,60,240,5,132,140,
	13,8,192,12,0,0,0,0,0,163,1,60,
	244,5,34,172,10,0,2,36,0,163,1,60,
	92,1,34,172,157,15,192,12,1,0,21,36,
	2,131,2,60,192,246,66,36,33,160,64,0,
	80,133,131,143,11,0,2,36,0,163,1,60,
	92,1,34,172,100,0,2,36,0,163,1,60,
	92,1,34,172,84,133,130,143,64,26,3,0,
	33,136,116,0,64,18,2,0,33,144,84,0,
	0,163,2,60,8,1,66,140,0,0,0,0,
	1,0,66,36,0,163,1,60,8,1,34,172,
	0,163,2,60,8,1,66,140,0,163,2,60,
	124,1,66,140,0,0,0,0,14,0,83,16,
	0,0,0,0,4,0,64,16,33,152,64,0,
	80,133,128,175,76,9,192,8,0,0,0,0,
	80,133,149,175,2,131,4,60,163,23,192,12,
	192,246,132,36,80,133,130,143,0,0,0,0,
	64,18,2,0,33,136,84,0,0,163,2,60,
	0,6,66,140,0,0,0,0,3,0,64,24,
	33,128,32,2,239,15,192,12,0,0,0,0,
	43,16,18,2,11,0,64,16,33,32,0,2,
	151,18,192,12,10,0,5,36,27,22,192,12,
	33,32,0,2,142,22,192,12,33,32,0,2,
	0,2,16,38,43,16,18,2,247,255,64,20,
	33,32,0,2,184,11,192,12,0,0,0,0,
	54,9,192,8,0,0,0,0,56,0,191,143,
	52,0,181,143,48,0,180,143,44,0,179,143,
	40,0,178,143,36,0,177,143,32,0,176,143,
	8,0,224,3,64,0,189,39,4,128,130,143,
	232,255,189,39,20,0,191,175,16,0,176,175,
	1,0,67,36,4,128,131,175,255,255,3,36,
	4,0,67,20,255,31,4,60,0,163,1,60,
	8,1,32,172,255,31,4,60,255,255,132,52,
	0,163,16,60,0,163,2,60,8,1,66,140,
	208,132,131,143,220,5,16,54,35,16,67,0,
	0,163,1,60,16,1,34,172,2,131,2,60,
	192,246,66,36,36,16,68,0,0,160,3,60,
	37,16,67,0,0,163,3,60,8,1,99,140,
	28,0,68,140,0,0,5,142,3,131,2,60,
	20,18,66,140,208,132,131,175,36,133,132,175,
	18,0,162,16,0,163,4,60,99,59,192,12,
	220,5,132,52,255,0,5,60,255,0,165,52,
	0,255,6,60,0,0,4,142,0,255,198,52,
	0,20,4,0,2,28,4,0,37,16,67,0,
	2,26,2,0,36,24,101,0,0,18,2,0,
	36,16,70,0,37,24,98,0,176,133,132,175,
	184,133,131,175,0,163,16,60,16,6,16,54,
	0,0,3,142,3,131,2,60,68,18,66,140,
	0,0,0,0,18,0,98,16,0,163,4,60,
	119,59,192,12,16,6,132,52,255,0,5,60,
	255,0,165,52,0,255,6,60,0,0,4,142,
	0,255,198,52,0,20,4,0,2,28,4,0,
	37,16,67,0,2,26,2,0,36,24,101,0,
	0,18,2,0,36,16,70,0,37,24,98,0,
	196,133,132,175,192,133,131,175,0,163,16,60,
	224,5,16,54,0,0,3,142,3,131,2,60,
	24,18,66,140,0,0,0,0,18,0,98,16,
	0,163,4,60,139,59,192,12,224,5,132,52,
	255,0,5,60,255,0,165,52,0,255,6,60,
	0,0,4,142,0,255,198,52,0,20,4,0,
	2,28,4,0,37,16,67,0,2,26,2,0,
	36,24,101,0,0,18,2,0,36,16,70,0,
	37,24,98,0,188,133,132,175,180,133,131,175,
	44,133,131,143,0,163,2,60,144,1,66,140,
	0,0,0,0,5,0,98,16,0,0,0,0,
	0,163,4,60,144,1,132,140,159,59,192,12,
	0,0,0,0,0,163,3,60,140,1,99,140,
	3,131,2,60,64,18,66,140,0,0,0,0,
	5,0,98,16,0,0,0,0,0,163,4,60,
	140,1,132,140,51,60,192,12,0,0,0,0,
	44,133,130,143,0,0,0,0,3,0,64,16,
	0,0,0,0,116,38,192,12,0,0,0,0,
	164,7,192,12,0,0,0,0,36,128,130,143,
	0,0,0,0,1,0,66,36,36,128,130,175,
	60,0,66,40,8,0,64,20,0,0,0,0,
	3,131,2,60,24,18,66,140,36,128,128,175,
	3,0,64,16,0,0,0,0,222,48,192,12,
	0,0,0,0,0,163,2,60,48,1,66,140,
	0,0,0,0,20,0,64,16,0,0,0,0,
	0,163,1,60,48,1,32,172,0,163,1,60,
	16,1,32,172,0,163,1,60,20,1,32,172,
	0,163,1,60,24,1,32,172,0,163,1,60,
	28,1,32,172,0,163,1,60,32,1,32,172,
	0,163,1,60,36,1,32,172,0,163,1,60,
	40,1,32,172,0,163,1,60,201,13,192,12,
	44,1,32,172,20,0,191,143,16,0,176,143,
	8,0,224,3,24,0,189,39,216,255,189,39,
	36,0,191,175,32,0,178,175,28,0,177,175,
	180,10,192,12,24,0,176,175,33,32,0,0,
	2,0,2,36,0,163,1,60,244,57,192,12,
	92,1,34,172,3,0,2,36,0,163,1,60,
	0,12,192,12,92,1,34,172,1,0,4,36,
	4,0,2,36,0,163,1,60,34,11,192,12,
	92,1,34,172,32,133,131,143,5,0,2,36,
	0,163,1,60,92,1,34,172,80,133,128,175,
	84,133,131,175,130,11,192,12,0,0,0,0,
	33,32,64,0,2,0,5,36,232,3,6,36,
	0,131,7,60,196,37,231,36,156,11,192,12,
	16,0,160,175,0,163,2,60,240,5,66,140,
	0,0,0,0,8,0,64,16,10,0,2,36,
	0,163,4,60,240,5,132,140,13,8,192,12,
	0,0,0,0,0,163,1,60,244,5,34,172,
	10,0,2,36,0,163,1,60,92,1,34,172,
	100,0,2,36,80,133,131,143,2,131,4,60,
	192,246,132,36,0,163,1,60,92,1,34,172,
	84,133,130,143,64,26,3,0,33,144,100,0,
	64,18,2,0,33,136,68,0,0,163,2,60,
	8,1,66,140,33,128,64,2,1,0,66,36,
	0,163,1,60,8,1,34,172,0,163,2,60,
	8,1,66,140,43,16,17,2,11,0,64,16,
	33,32,0,2,151,18,192,12,10,0,5,36,
	27,22,192,12,33,32,0,2,142,22,192,12,
	33,32,0,2,0,2,16,38,43,16,17,2,
	247,255,64,20,33,32,0,2,184,11,192,12,
	0,0,0,0,91,10,192,8,0,0,0,0,
	36,0,191,143,32,0,178,143,28,0,177,143,
	24,0,176,143,8,0,224,3,40,0,189,39,
	4,128,130,143,232,255,189,39,16,0,191,175,
	1,0,67,36,4,128,131,175,255,255,3,36,
	4,0,67,20,255,31,4,60,0,163,1,60,
	8,1,32,172,255,31,4,60,0,163,2,60,
	8,1,66,140,212,132,131,143,255,255,132,52,
	35,16,67,0,0,163,1,60,16,1,34,172,
	2,131,2,60,192,246,66,36,36,16,68,0,
	0,160,3,60,37,16,67,0,0,163,3,60,
	8,1,99,140,28,0,66,140,212,132,131,175,
	36,133,130,175,164,7,192,12,0,0,0,0,
	0,163,2,60,48,1,66,140,0,0,0,0,
	20,0,64,16,0,0,0,0,0,163,1,60,
	48,1,32,172,0,163,1,60,16,1,32,172,
	0,163,1,60,20,1,32,172,0,163,1,60,
	24,1,32,172,0,163,1,60,28,1,32,172,
	0,163,1,60,32,1,32,172,0,163,1,60,
	36,1,32,172,0,163,1,60,40,1,32,172,
	0,163,1,60,201,13,192,12,44,1,32,172,
	16,0,191,143,24,0,189,39,8,0,224,3,
	0,0,0,0,224,255,189,39,24,0,191,175,
	20,0,177,175,120,63,192,12,16,0,176,175,
	52,0,2,36,4,162,1,60,12,0,34,160,
	120,63,192,12,232,3,16,36,28,133,130,143,
	0,0,0,0,27,0,80,0,2,0,0,22,
	0,0,0,0,13,0,7,0,18,16,0,0,
	4,162,17,60,120,63,192,12,0,0,34,162,
	28,133,130,143,0,0,0,0,27,0,80,0,
	2,0,0,22,0,0,0,0,13,0,7,0,
	18,16,0,0,33,40,0,0,33,32,0,0,
	6,162,3,60,2,18,2,0,0,0,34,162,
	1,0,2,36,0,163,1,60,4,1,32,172,
	0,0,98,172,2,131,1,60,33,8,36,0,
	8,245,32,172,1,0,165,36,22,0,162,44,
	250,255,64,20,20,0,132,36,31,131,4,60,
	0,240,132,52,52,128,131,143,1,0,2,36,
	68,133,128,175,48,128,130,175,64,133,128,175,
	32,131,1,60,252,239,36,172,8,0,96,16,
	31,131,5,60,252,239,165,52,31,131,6,60,
	1,131,4,60,224,127,132,36,15,63,192,12,
	0,240,198,52,52,128,128,175,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,232,255,189,39,16,0,176,175,
	116,0,2,36,20,0,191,175,4,162,1,60,
	12,0,34,160,130,63,192,12,33,128,128,0,
	4,162,1,60,4,0,48,160,130,63,192,12,
	3,130,16,0,4,162,1,60,130,63,192,12,
	4,0,48,160,20,0,191,143,16,0,176,143,
	8,0,224,3,24,0,189,39,224,255,189,39,
	64,0,2,36,24,0,191,175,20,0,177,175,
	16,0,176,175,4,162,1,60,130,63,192,12,
	12,0,34,160,4,162,17,60,4,0,49,146,
	0,0,0,0,130,63,192,12,255,0,49,50,
	4,162,16,60,4,0,16,146,0,0,0,0,
	130,63,192,12,255,0,16,50,0,130,16,0,
	37,16,17,2,24,0,191,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	48,128,130,143,232,255,189,39,16,0,176,175,
	33,128,128,0,3,0,64,20,20,0,191,175,
	180,10,192,12,0,0,0,0,5,0,0,18,
	0,0,0,0,236,63,192,12,1,4,4,36,
	50,11,192,8,0,0,0,0,228,63,192,12,
	0,4,4,36,20,0,191,143,16,0,176,143,
	8,0,224,3,24,0,189,39,216,255,189,39,
	6,162,3,60,1,0,2,36,32,0,191,175,
	28,0,177,175,24,0,176,175,0,0,98,172,
	0,163,2,60,4,1,66,140,33,136,224,0,
	1,0,66,36,0,163,1,60,4,1,34,172,
	56,128,130,143,0,163,3,60,4,1,99,140,
	1,0,66,36,56,128,130,175,232,3,66,40,
	21,0,64,20,255,127,3,60,68,133,130,143,
	254,255,99,52,56,128,128,175,1,0,66,36,
	43,24,98,0,68,133,130,175,13,0,96,16,
	0,0,0,0,2,131,4,60,28,128,132,36,
	60,128,144,39,33,40,0,2,2,131,7,60,
	60,128,231,36,15,63,192,12,144,0,6,36,
	1,0,4,36,33,40,0,2,188,7,192,12,
	144,0,6,36,64,133,134,143,0,0,0,0,
	14,0,192,24,33,24,0,0,2,131,5,60,
	0,245,165,36,33,32,0,0,2,131,2,60,
	33,16,68,0,0,245,66,140,20,0,132,36,
	1,0,99,36,255,255,66,36,0,0,162,172,
	42,16,102,0,247,255,64,20,20,0,165,36,
	31,131,4,60,252,239,132,52,31,131,2,60,
	0,0,131,140,255,255,66,52,0,0,113,172,
	4,0,99,36,43,16,67,0,3,0,64,16,
	0,0,0,0,31,131,3,60,0,240,99,52,
	0,0,131,172,32,0,191,143,28,0,177,143,
	24,0,176,143,8,0,224,3,40,0,189,39,
	64,133,130,143,232,255,189,39,20,0,191,175,
	22,0,66,40,13,0,64,20,16,0,176,175,
	2,131,4,60,28,128,132,36,60,128,144,39,
	33,40,0,2,2,131,7,60,84,128,231,36,
	15,63,192,12,173,0,6,36,1,0,4,36,
	33,40,0,2,188,7,192,12,173,0,6,36,
	64,133,130,143,0,0,0,0,1,0,67,36,
	64,133,131,175,20,0,191,143,16,0,176,143,
	8,0,224,3,24,0,189,39,128,16,4,0,
	33,16,68,0,16,0,163,143,128,16,2,0,
	2,131,1,60,33,8,34,0,4,245,38,172,
	2,131,1,60,33,8,34,0,12,245,39,172,
	2,131,1,60,33,8,34,0,0,245,38,172,
	2,131,1,60,33,8,34,0,8,245,37,172,
	2,131,1,60,33,8,34,0,16,245,35,172,
	8,0,224,3,33,16,0,1,128,16,4,0,
	33,16,68,0,128,16,2,0,2,131,1,60,
	33,8,34,0,8,0,224,3,8,245,32,172,
	64,133,130,143,192,255,189,39,40,0,180,175,
	33,160,0,0,56,0,191,175,52,0,183,175,
	48,0,182,175,44,0,181,175,36,0,179,175,
	32,0,178,175,28,0,177,175,48,0,64,24,
	24,0,176,175,1,0,23,36,2,0,22,36,
	2,131,16,60,12,245,16,38,4,0,19,38,
	244,255,17,38,252,255,18,38,33,168,0,0,
	0,0,67,142,0,0,0,0,7,0,119,16,
	2,0,98,40,25,0,64,20,0,0,0,0,
	9,0,118,16,0,0,0,0,236,11,192,8,
	20,0,16,38,0,0,34,142,0,0,0,0,
	17,0,64,28,0,0,0,0,230,11,192,8,
	0,0,64,174,0,0,34,142,0,0,0,0,
	11,0,64,28,0,0,0,0,2,131,2,60,
	33,16,85,0,4,245,66,140,0,0,0,0,
	0,0,34,174,0,0,100,142,0,0,2,142,
	0,0,0,0,9,248,64,0,0,0,0,0,
	20,0,16,38,20,0,115,38,20,0,49,38,
	20,0,82,38,64,133,130,143,1,0,148,38,
	42,16,130,2,218,255,64,20,20,0,181,38,
	56,0,191,143,52,0,183,143,48,0,182,143,
	44,0,181,143,40,0,180,143,36,0,179,143,
	32,0,178,143,28,0,177,143,24,0,176,143,
	8,0,224,3,64,0,189,39,0,0,0,0,
	2,131,3,60,192,246,99,36,0,2,2,36,
	0,163,1,60,200,5,35,172,0,163,1,60,
	208,5,34,172,0,163,2,60,124,1,66,140,
	216,255,189,39,16,0,176,175,33,128,0,0,
	28,0,179,175,255,255,19,36,24,0,178,175,
	21,0,114,36,20,0,177,175,32,0,191,175,
	1,0,66,44,80,133,130,175,139,14,192,12,
	20,0,113,36,184,24,192,12,0,0,0,0,
	27,67,192,12,33,32,0,2,6,0,83,20,
	1,0,16,38,2,131,4,60,15,63,192,12,
	112,128,132,36,126,12,192,8,1,0,2,36,
	0,0,34,162,3,18,2,0,0,0,66,162,
	2,0,82,38,3,0,2,42,241,255,64,20,
	2,0,49,38,2,131,17,60,212,246,49,38,
	33,32,32,2,33,40,0,0,255,127,6,60,
	247,24,192,12,255,255,198,52,255,31,3,60,
	255,255,99,52,236,255,48,38,36,0,34,38,
	36,16,67,0,0,160,3,60,37,16,67,0,
	0,32,3,36,236,255,32,174,2,131,1,60,
	220,246,32,172,2,131,1,60,204,246,32,172,
	2,131,1,60,236,246,34,172,0,0,67,164,
	222,21,192,12,33,32,0,2,122,15,192,12,
	33,32,0,2,242,21,192,12,33,32,0,2,
	32,133,130,143,1,0,16,36,42,16,2,2,
	12,0,64,16,255,31,3,60,236,1,49,38,
	133,12,192,12,33,32,0,2,242,21,192,12,
	33,32,32,2,32,133,130,143,1,0,16,38,
	42,16,2,2,248,255,64,20,0,2,49,38,
	255,31,3,60,255,255,99,52,2,131,16,60,
	192,4,16,38,7,0,2,36,0,0,2,174,
	56,0,2,38,36,16,67,0,0,160,3,60,
	37,16,67,0,0,32,3,36,2,131,1,60,
	220,4,32,172,2,131,1,60,204,4,32,172,
	2,131,1,60,236,4,34,172,0,0,67,164,
	2,131,2,60,212,246,66,140,2,131,3,60,
	216,246,99,132,20,0,2,174,24,0,3,166,
	2,131,2,60,217,4,66,144,0,0,0,0,
	7,0,66,36,2,131,1,60,217,4,34,160,
	112,15,192,12,33,32,0,2,33,32,0,2,
	19,15,192,12,32,0,5,36,20,0,16,38,
	33,32,0,2,7,0,5,36,255,127,6,60,
	247,24,192,12,255,255,198,52,33,16,0,0,
	32,0,191,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	40,0,189,39,200,255,189,39,48,0,180,175,
	33,160,128,0,255,31,6,60,255,255,198,52,
	64,26,20,0,2,131,2,60,192,246,66,36,
	40,0,178,175,33,144,98,0,255,255,132,38,
	64,18,4,0,0,162,3,60,33,16,67,0,
	52,0,191,175,44,0,179,175,36,0,177,175,
	32,0,176,175,4,0,66,174,0,1,66,36,
	8,0,66,174,0,16,2,36,4,16,130,0,
	12,0,66,174,4,0,2,36,4,16,130,0,
	0,160,5,60,16,0,66,174,48,0,66,38,
	36,16,70,0,37,16,69,0,36,0,66,174,
	64,16,4,0,33,16,68,0,128,16,2,0,
	2,131,3,60,240,231,99,36,33,16,67,0,
	36,16,70,0,37,16,69,0,40,0,66,174,
	56,0,66,38,36,16,70,0,37,16,69,0,
	0,0,84,174,44,0,66,174,32,0,64,174,
	2,131,2,60,212,246,66,140,2,131,3,60,
	216,246,99,132,20,0,66,174,24,0,67,166,
	25,0,66,146,0,0,0,0,33,32,84,0,
	2,131,2,60,0,227,66,36,36,16,70,0,
	37,128,69,0,2,131,2,60,32,227,66,36,
	36,16,70,0,25,0,68,162,40,133,131,143,
	0,0,0,0,3,0,96,16,37,136,69,0,
	255,255,130,36,25,0,66,162,12,0,68,142,
	28,0,64,174,228,63,192,12,1,0,132,52,
	4,0,68,142,0,0,0,0,76,67,192,12,
	33,40,0,0,76,63,192,12,0,0,0,0,
	76,63,192,12,0,0,0,0,255,255,2,36,
	4,0,2,174,4,0,2,142,0,0,0,0,
	0,0,2,174,4,0,68,142,0,0,0,0,
	76,67,192,12,1,0,5,54,4,0,4,38,
	33,40,0,0,255,255,6,36,211,67,192,12,
	208,7,7,36,8,0,64,20,255,255,2,52,
	2,131,4,60,184,128,132,36,4,0,6,142,
	0,0,0,0,15,63,192,12,33,40,128,2,
	255,255,2,52,48,1,34,174,4,0,68,142,
	0,0,0,0,76,67,192,12,3,0,37,54,
	48,1,36,38,33,40,0,0,255,255,6,52,
	211,67,192,12,208,7,7,36,7,0,64,20,
	0,0,0,0,2,131,4,60,8,129,132,36,
	48,1,38,142,0,0,0,0,15,63,192,12,
	33,40,128,2,143,63,192,12,0,0,0,0,
	40,0,69,142,4,0,68,142,0,0,0,0,
	76,67,192,12,2,0,165,52,44,0,81,142,
	84,128,131,143,80,128,132,143,100,0,2,36,
	0,0,32,166,2,0,32,166,4,0,32,174,
	8,0,32,174,12,0,32,174,16,0,32,174,
	24,0,32,174,20,0,32,174,28,0,32,174,
	32,0,32,174,36,0,34,166,38,0,34,166,
	36,0,35,166,38,0,36,166,36,0,83,142,
	1,0,2,36,0,0,98,174,44,0,66,142,
	0,0,0,0,4,0,98,174,40,0,67,142,
	116,0,2,60,0,0,98,172,40,0,67,142,
	36,0,66,142,0,0,0,0,8,0,98,172,
	8,0,66,142,0,0,0,0,0,0,64,172,
	0,0,98,142,0,0,0,0,10,0,64,16,
	33,128,0,0,208,7,2,42,7,0,64,16,
	0,0,0,0,143,63,192,12,0,0,0,0,
	0,0,98,142,0,0,0,0,248,255,64,20,
	1,0,16,38,0,0,98,142,0,0,0,0,
	6,0,64,16,33,32,32,2,2,131,4,60,
	76,129,132,36,15,63,192,12,33,40,128,2,
	33,32,32,2,8,0,5,36,0,0,34,150,
	8,0,6,36,0,240,66,48,0,6,66,52,
	2,0,34,166,8,0,66,142,208,7,7,36,
	129,67,192,12,0,0,64,172,6,0,64,20,
	2,0,36,38,2,131,4,60,160,129,132,36,
	15,63,192,12,33,40,128,2,2,0,36,38,
	33,40,0,0,0,0,34,150,33,48,0,0,
	0,240,66,48,2,0,34,166,8,0,66,142,
	208,7,7,36,129,67,192,12,0,0,64,172,
	4,0,64,20,0,0,0,0,2,131,4,60,
	15,63,192,12,248,129,132,36,143,63,192,12,
	0,0,0,0,108,0,80,142,0,128,2,52,
	0,0,0,166,2,0,2,166,44,0,66,142,
	0,32,5,36,4,0,80,172,44,0,67,142,
	0,241,2,52,2,0,98,164,8,0,66,142,
	0,32,6,36,0,0,64,172,44,0,68,142,
	0,0,0,0,129,67,192,12,208,7,7,36,
	12,0,64,20,0,0,0,0,44,0,66,142,
	0,0,0,0,0,0,69,148,2,131,4,60,
	15,63,192,12,16,130,132,36,254,255,4,36,
	2,131,5,60,44,130,165,36,188,7,192,12,
	1,1,6,36,108,0,80,142,2,128,2,52,
	0,0,0,166,2,0,2,166,14,0,2,36,
	8,0,2,162,200,0,2,36,9,0,2,162,
	65,0,2,36,10,0,2,162,46,0,2,36,
	11,0,2,162,87,0,2,36,12,0,0,162,
	13,0,2,162,242,0,2,36,14,0,0,162,
	15,0,2,162,1,0,2,36,16,0,2,162,
	8,0,2,36,17,0,2,162,88,128,130,143,
	0,0,0,0,6,0,64,16,64,0,2,36,
	2,131,4,60,15,63,192,12,56,130,132,36,
	88,128,128,175,64,0,2,36,18,0,2,162,
	255,0,2,36,19,0,2,162,63,0,2,36,
	20,0,0,162,21,0,2,162,44,0,66,142,
	0,32,5,36,4,0,80,172,44,0,67,142,
	0,33,2,36,2,0,98,164,8,0,66,142,
	0,32,6,36,0,0,64,172,44,0,68,142,
	0,0,0,0,129,67,192,12,208,7,7,36,
	12,0,64,20,0,0,0,0,44,0,66,142,
	0,0,0,0,0,0,69,148,2,131,4,60,
	15,63,192,12,16,130,132,36,253,255,4,36,
	2,131,5,60,44,130,165,36,188,7,192,12,
	85,1,6,36,222,21,192,12,33,32,64,2,
	122,15,192,12,33,32,64,2,52,0,191,143,
	48,0,180,143,44,0,179,143,40,0,178,143,
	36,0,177,143,32,0,176,143,8,0,224,3,
	56,0,189,39,248,255,189,39,32,133,133,143,
	0,0,0,0,50,0,160,24,33,32,0,0,
	2,131,3,60,192,246,99,36,44,0,98,140,
	152,0,96,172,156,0,96,172,160,0,96,172,
	164,0,96,172,168,0,96,172,172,0,96,172,
	176,0,96,172,180,0,96,172,184,0,96,172,
	188,0,96,172,192,0,96,172,196,0,96,172,
	200,0,96,172,204,0,96,172,208,0,96,172,
	212,0,96,172,216,0,96,172,224,0,96,172,
	232,0,96,172,236,0,96,172,240,0,96,172,
	244,0,96,172,248,0,96,172,252,0,96,172,
	0,1,96,172,4,1,96,172,8,1,96,172,
	12,0,64,172,44,0,98,140,0,0,0,0,
	16,0,64,172,44,0,98,140,0,0,0,0,
	24,0,64,172,44,0,98,140,0,0,0,0,
	20,0,64,172,44,0,98,140,1,0,132,36,
	28,0,64,172,44,0,98,140,0,2,99,36,
	32,0,64,172,42,16,133,0,210,255,64,20,
	0,0,0,0,33,32,0,0,0,163,3,60,
	0,1,99,52,32,0,5,36,33,16,131,0,
	188,0,69,160,1,0,132,36,0,2,130,44,
	251,255,64,20,0,0,0,0,8,0,224,3,
	8,0,189,39,0,0,0,0,124,133,130,143,
	232,255,189,39,20,0,191,175,17,0,64,20,
	16,0,176,175,208,7,16,36,7,0,0,26,
	0,0,0,0,143,63,192,12,255,255,16,38,
	124,133,130,143,0,0,0,0,249,255,64,16,
	0,0,0,0,6,0,0,22,0,0,0,0,
	2,131,4,60,15,63,192,12,80,130,132,36,
	45,14,192,8,33,16,0,0,220,63,192,12,
	33,32,0,0,33,32,64,0,124,133,144,143,
	128,133,130,143,4,0,3,142,255,255,66,36,
	128,133,130,175,124,133,131,175,220,63,192,12,
	0,0,0,0,33,16,0,2,20,0,191,143,
	16,0,176,143,8,0,224,3,24,0,189,39,
	232,255,189,39,96,133,130,143,33,40,128,0,
	43,16,162,0,6,0,64,20,16,0,191,175,
	100,133,130,143,0,0,0,0,43,16,162,0,
	6,0,64,20,0,0,0,0,2,131,4,60,
	15,63,192,12,116,130,132,36,71,14,192,8,
	0,0,0,0,124,133,131,143,128,133,130,143,
	124,133,133,175,1,0,66,36,4,0,163,172,
	128,133,130,175,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,108,133,130,143,
	232,255,189,39,20,0,191,175,17,0,64,20,
	16,0,176,175,208,7,16,36,7,0,0,26,
	0,0,0,0,143,63,192,12,255,255,16,38,
	108,133,130,143,0,0,0,0,249,255,64,16,
	0,0,0,0,6,0,0,22,0,0,0,0,
	2,131,4,60,15,63,192,12,148,130,132,36,
	108,14,192,8,33,16,0,0,220,63,192,12,
	33,32,0,0,33,32,64,0,108,133,144,143,
	120,133,130,143,0,0,3,142,255,255,66,36,
	120,133,130,175,108,133,131,175,220,63,192,12,
	0,0,0,0,33,16,0,2,20,0,191,143,
	16,0,176,143,8,0,224,3,24,0,189,39,
	232,255,189,39,104,133,130,143,33,40,128,0,
	43,16,162,0,6,0,64,20,16,0,191,175,
	112,133,130,143,0,0,0,0,43,16,162,0,
	6,0,64,20,0,0,0,0,2,131,4,60,
	15,63,192,12,184,130,132,36,135,14,192,8,
	0,0,0,0,108,133,130,143,0,0,0,0,
	0,0,162,172,120,133,130,143,108,133,133,175,
	1,0,66,36,120,133,130,175,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,20,0,191,175,16,0,176,175,
	124,133,128,175,13,8,192,12,0,32,4,36,
	255,31,3,60,255,255,99,52,255,1,16,36,
	36,16,67,0,0,160,3,60,37,16,67,0,
	96,133,130,175,0,32,66,36,100,133,130,175,
	0,17,16,0,96,133,132,143,255,255,16,38,
	49,14,192,12,33,32,130,0,251,255,1,6,
	0,17,16,0,0,2,2,36,132,133,130,175,
	108,133,128,175,13,8,192,12,18,0,4,60,
	255,31,3,60,255,255,99,52,255,17,16,36,
	36,16,67,0,0,160,3,60,37,16,67,0,
	18,0,3,60,104,133,130,175,33,16,67,0,
	112,133,130,175,0,18,16,0,104,133,132,143,
	255,255,16,38,112,14,192,12,33,32,130,0,
	251,255,1,6,0,18,16,0,0,18,2,36,
	116,133,130,175,20,0,191,143,16,0,176,143,
	8,0,224,3,24,0,189,39,0,0,0,0,
	0,0,0,0,0,0,0,0,0,163,2,60,
	168,1,66,140,216,255,189,39,28,0,177,175,
	33,136,128,0,32,0,178,175,33,144,160,0,
	36,0,191,175,17,0,64,16,24,0,176,175,
	0,163,2,60,168,1,66,140,0,0,0,0,
	42,16,82,0,12,0,64,16,128,128,18,0,
	0,0,34,142,0,163,18,60,168,1,82,142,
	0,0,0,0,6,0,64,20,128,128,18,0,
	2,131,4,60,224,130,132,36,15,63,192,12,
	33,40,64,2,128,128,18,0,33,128,18,2,
	128,128,16,0,13,8,192,12,33,32,0,2,
	255,31,3,60,255,255,99,52,33,32,0,0,
	36,16,67,0,0,160,3,60,37,16,67,0,
	112,0,34,174,112,0,35,142,33,16,80,0,
	15,0,64,26,116,0,34,174,8,0,5,36,
	1,0,132,36,20,0,98,36,4,0,98,172,
	2,0,101,164,0,0,96,164,8,0,96,172,
	14,0,96,164,12,0,96,164,33,24,64,0,
	42,16,146,0,246,255,64,20,1,0,132,36,
	255,255,132,36,116,0,35,142,112,0,34,142,
	0,0,0,0,240,255,98,172,116,0,35,142,
	0,0,0,0,218,255,98,148,0,0,0,0,
	0,128,66,52,218,255,98,164,116,0,35,142,
	0,0,0,0,238,255,98,148,0,0,0,0,
	0,128,66,52,238,255,98,164,116,0,34,142,
	112,0,35,142,216,255,66,36,120,0,35,174,
	124,0,34,174,36,0,191,143,32,0,178,143,
	28,0,177,143,24,0,176,143,8,0,224,3,
	40,0,189,39,200,255,189,39,32,0,178,175,
	33,144,128,0,0,1,2,36,48,0,191,175,
	44,0,181,175,40,0,180,175,36,0,179,175,
	28,0,177,175,24,0,176,175,144,0,66,174,
	0,163,2,60,172,1,66,140,0,0,0,0,
	17,0,64,16,33,160,160,0,0,163,2,60,
	172,1,66,140,0,0,0,0,42,16,84,0,
	12,0,64,16,128,128,20,0,0,0,66,142,
	0,163,20,60,172,1,148,142,0,0,0,0,
	6,0,64,20,128,128,20,0,2,131,4,60,
	236,130,132,36,15,63,192,12,33,40,128,2,
	128,128,20,0,33,128,20,2,128,128,16,0,
	33,32,0,2,13,8,192,12,148,0,84,174,
	255,31,3,60,255,255,99,52,33,152,0,0,
	36,16,67,0,0,160,3,60,37,16,67,0,
	128,0,66,174,128,0,81,142,33,16,80,0,
	15,0,128,26,132,0,66,174,0,1,21,36,
	20,0,48,38,4,0,48,174,75,14,192,12,
	0,0,32,174,8,0,34,174,12,0,53,174,
	0,0,66,142,1,0,115,38,16,0,34,162,
	17,0,32,162,42,16,116,2,244,255,64,20,
	33,136,0,2,132,0,67,142,128,0,66,142,
	0,0,0,0,240,255,98,172,132,0,67,142,
	0,0,0,0,228,255,98,140,0,0,0,0,
	0,128,66,52,228,255,98,172,132,0,67,142,
	0,0,0,0,248,255,98,140,0,0,0,0,
	0,128,66,52,248,255,98,172,132,0,66,142,
	128,0,67,142,216,255,66,36,136,0,67,174,
	140,0,66,174,48,0,191,143,44,0,181,143,
	40,0,180,143,36,0,179,143,32,0,178,143,
	28,0,177,143,24,0,176,143,8,0,224,3,
	56,0,189,39,152,0,128,172,156,0,128,172,
	160,0,128,172,164,0,128,172,168,0,128,172,
	252,0,128,172,0,1,128,172,152,0,128,172,
	8,0,224,3,216,0,128,172,232,255,189,39,
	16,0,176,175,20,0,191,175,112,15,192,12,
	33,128,128,0,33,32,0,2,192,14,192,12,
	0,4,5,36,33,32,0,2,19,15,192,12,
	128,2,5,36,120,0,3,142,136,0,2,142,
	0,0,0,0,8,0,98,172,44,0,3,142,
	120,0,2,142,0,0,0,0,8,0,98,172,
	0,0,2,142,0,0,0,0,255,255,66,36,
	6,0,66,44,7,0,64,16,16,0,3,36,
	44,0,2,142,0,0,0,0,2,0,67,164,
	8,0,2,142,0,0,0,0,0,0,64,172,
	20,0,191,143,16,0,176,143,8,0,224,3,
	24,0,189,39,184,255,189,39,0,32,6,36,
	68,0,191,175,64,0,190,175,60,0,183,175,
	56,0,182,175,52,0,181,175,48,0,180,175,
	44,0,179,175,40,0,178,175,36,0,177,175,
	32,0,176,175,0,163,1,60,252,5,38,172,
	13,8,192,12,0,32,4,36,255,31,4,60,
	255,255,132,52,33,168,0,0,255,31,6,60,
	255,255,198,52,2,131,3,60,212,247,99,36,
	16,0,101,36,8,0,126,36,248,255,119,36,
	33,176,96,0,36,16,68,0,0,160,3,60,
	37,16,67,0,16,0,166,175,0,163,1,60,
	248,5,34,172,0,163,1,60,0,6,32,172,
	33,160,0,0,33,128,224,2,33,152,160,0,
	33,144,192,3,33,136,192,2,32,133,130,143,
	0,0,32,174,0,0,0,174,0,0,64,174,
	42,16,162,2,10,0,64,16,0,0,96,174,
	0,32,4,36,13,8,192,12,24,0,165,175,
	16,0,166,143,0,128,3,60,36,16,70,0,
	37,16,67,0,0,0,2,174,24,0,165,143,
	4,0,16,38,4,0,115,38,4,0,82,38,
	1,0,148,38,2,0,130,42,234,255,64,20,
	4,0,49,38,0,2,165,36,0,2,222,39,
	0,2,247,38,1,0,181,38,7,0,162,42,
	222,255,64,20,0,2,214,38,68,0,191,143,
	64,0,190,143,60,0,183,143,56,0,182,143,
	52,0,181,143,48,0,180,143,44,0,179,143,
	40,0,178,143,36,0,177,143,32,0,176,143,
	8,0,224,3,72,0,189,39,0,163,4,60,
	0,6,132,140,0,163,3,60,8,6,99,140,
	32,133,130,143,224,255,189,39,16,0,176,175,
	0,163,16,60,12,6,16,142,20,0,177,175,
	0,163,17,60,4,6,49,142,43,16,98,0,
	42,0,64,16,24,0,191,175,2,0,2,46,
	40,0,64,16,255,255,2,36,0,163,2,60,
	252,5,66,140,0,0,0,0,43,16,81,0,
	34,0,64,20,255,255,2,36,64,18,3,0,
	2,131,3,60,192,246,99,36,33,24,67,0,
	1,0,2,36,5,0,130,16,2,0,2,36,
	18,0,130,16,128,16,16,0,36,16,192,8,
	0,0,0,0,128,128,16,0,33,128,3,2,
	12,1,4,142,0,163,5,60,248,5,165,140,
	33,48,32,2,80,68,192,12,36,1,17,174,
	12,1,4,142,12,1,2,142,33,40,32,2,
	114,68,192,12,20,1,2,174,36,16,192,8,
	0,0,0,0,33,16,67,0,20,1,64,172,
	36,1,64,172,0,163,1,60,42,16,192,8,
	0,6,32,172,255,255,2,36,0,163,1,60,
	0,6,34,172,24,0,191,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	176,133,136,143,188,133,137,143,232,255,189,39,
	3,0,0,21,16,0,191,175,124,0,32,17,
	0,0,0,0,12,0,194,148,0,0,0,0,
	0,26,2,0,2,18,2,0,37,56,98,0,
	255,255,227,48,221,5,98,44,36,0,64,20,
	170,170,2,52,0,8,2,36,23,0,98,20,
	6,8,2,36,21,0,0,17,0,0,0,0,
	32,0,194,148,30,0,195,148,0,20,2,0,
	37,56,67,0,36,0,195,148,0,161,2,52,
	5,0,98,16,8,0,2,36,34,0,195,148,
	0,0,0,0,98,0,98,20,0,0,0,0,
	3,0,232,16,255,255,2,36,94,0,226,20,
	0,0,0,0,226,46,192,12,14,0,6,36,
	177,16,192,8,0,0,0,0,7,0,98,20,
	255,255,227,48,71,0,0,17,55,129,2,52,
	108,43,192,12,14,0,6,36,177,16,192,8,
	0,0,0,0,162,16,192,8,55,129,2,52,
	14,0,195,148,0,0,0,0,61,0,98,20,
	255,255,2,52,16,0,195,144,3,0,2,36,
	55,0,98,20,255,255,2,52,20,0,194,148,
	0,0,0,0,0,26,2,0,2,18,2,0,
	37,56,98,0,255,255,227,48,0,8,2,36,
	23,0,98,20,6,8,2,36,21,0,0,17,
	0,0,0,0,40,0,194,148,38,0,195,148,
	0,20,2,0,37,56,67,0,44,0,195,148,
	0,161,2,52,5,0,98,16,8,0,2,36,
	42,0,195,148,0,0,0,0,49,0,98,20,
	0,0,0,0,3,0,232,16,255,255,2,36,
	45,0,226,20,0,0,0,0,226,46,192,12,
	22,0,6,36,177,16,192,8,0,0,0,0,
	7,0,98,20,255,255,227,48,6,0,0,17,
	55,129,2,52,108,43,192,12,22,0,6,36,
	177,16,192,8,0,0,0,0,55,129,2,52,
	30,0,98,20,0,0,0,0,28,0,32,17,
	144,15,3,36,38,0,194,148,28,0,198,140,
	24,0,67,20,0,0,0,0,3,0,201,16,
	0,0,0,0,20,0,192,20,0,0,0,0,
	175,16,192,8,22,0,6,36,14,0,195,148,
	0,0,0,0,14,0,98,20,0,0,0,0,
	12,0,32,17,144,15,3,36,30,0,194,148,
	20,0,198,140,8,0,67,20,0,0,0,0,
	3,0,201,16,0,0,0,0,4,0,192,20,
	0,0,0,0,14,0,6,36,126,49,192,12,
	0,0,0,0,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,128,255,189,39,
	116,0,183,175,33,184,128,0,3,0,3,36,
	124,0,191,175,120,0,190,175,112,0,182,175,
	108,0,181,175,104,0,180,175,100,0,179,175,
	96,0,178,175,92,0,177,175,88,0,176,175,
	0,0,245,142,8,0,178,140,192,17,21,0,
	3,131,4,60,33,32,130,0,20,13,132,140,
	8,0,84,142,0,0,0,0,59,0,131,16,
	5,0,130,44,57,0,64,16,128,16,4,0,
	2,131,1,60,33,8,34,0,104,131,34,140,
	0,0,0,0,8,0,64,0,0,0,0,0,
	44,133,130,143,0,0,0,0,48,0,64,16,
	6,0,132,38,4,0,131,150,2,131,2,60,
	68,207,66,148,0,0,0,0,6,0,98,20,
	33,32,0,0,0,0,130,142,48,129,131,143,
	0,0,0,0,38,16,67,0,1,0,68,44,
	72,1,128,16,33,32,160,2,114,42,192,12,
	33,40,128,2,45,18,192,8,33,32,64,2,
	44,133,130,143,0,0,0,0,27,0,64,16,
	6,0,132,38,4,0,131,150,2,131,2,60,
	68,207,66,148,0,0,0,0,6,0,98,20,
	33,32,0,0,0,0,130,142,48,129,131,143,
	0,0,0,0,38,16,67,0,1,0,68,44,
	5,0,128,16,33,32,160,2,114,42,192,12,
	33,40,128,2,45,18,192,8,33,32,64,2,
	6,0,132,38,0,163,6,60,140,1,198,140,
	0,0,0,0,247,24,192,12,33,40,160,2,
	45,18,192,8,33,32,64,2,6,0,132,38,
	0,163,6,60,140,1,198,140,0,0,0,0,
	247,24,192,12,33,40,160,2,203,24,192,12,
	33,32,128,2,20,1,227,142,0,0,0,0,
	14,0,96,16,33,240,64,0,33,32,128,2,
	16,0,166,39,18,0,69,150,0,0,0,0,
	9,248,96,0,33,56,192,3,6,0,64,16,
	33,32,64,2,28,1,226,142,0,0,0,0,
	1,0,66,36,45,18,192,8,28,1,226,174,
	132,0,193,7,7,0,2,36,4,0,131,150,
	2,131,2,60,68,207,66,148,0,0,0,0,
	6,0,98,20,33,32,0,0,0,0,130,142,
	48,129,131,143,0,0,0,0,38,16,67,0,
	1,0,68,44,9,0,128,16,255,255,2,36,
	44,133,130,143,0,0,0,0,251,0,64,16,
	33,32,160,2,114,42,192,12,33,40,128,2,
	45,18,192,8,33,32,64,2,10,0,194,23,
	0,0,0,0,8,0,160,18,0,0,0,0,
	36,133,130,143,0,0,0,0,8,0,64,16,
	1,0,19,36,80,133,147,143,69,17,192,8,
	0,0,0,0,0,1,226,142,80,133,147,143,
	1,0,66,36,0,1,226,174,84,133,130,143,
	0,0,0,0,35,16,83,0,255,255,66,36,
	17,0,66,162,84,133,130,143,33,128,96,2,
	42,16,2,2,15,0,64,16,64,18,16,0,
	2,131,3,60,192,246,99,36,33,136,67,0,
	5,0,21,18,0,0,0,0,247,22,192,12,
	33,32,32,2,217,0,64,16,33,16,0,0,
	84,133,130,143,1,0,16,38,42,16,2,2,
	246,255,64,20,0,2,49,38,84,133,130,143,
	33,128,96,2,42,16,2,2,55,0,64,16,
	64,18,16,0,2,131,3,60,192,246,99,36,
	33,152,67,0,33,136,64,0,192,177,16,0,
	41,0,21,18,0,0,0,0,2,131,2,60,
	33,16,81,0,216,247,66,140,0,0,0,0,
	15,0,64,16,33,32,128,2,16,0,166,39,
	18,0,69,150,0,0,0,0,9,248,64,0,
	33,56,160,2,8,0,64,16,0,0,0,0,
	2,131,2,60,33,16,81,0,224,247,66,140,
	0,0,0,0,1,0,66,36,140,17,192,8,
	32,1,98,174,44,133,130,143,0,0,0,0,
	7,0,64,16,3,0,8,36,3,131,2,60,
	33,16,86,0,20,13,66,140,0,0,0,0,
	6,0,72,20,0,0,0,0,33,32,96,2,
	6,23,192,12,33,40,64,2,146,17,192,8,
	0,2,115,38,17,0,66,146,0,0,0,0,
	255,255,66,36,17,0,66,162,17,0,66,146,
	0,2,115,38,0,2,49,38,84,133,130,143,
	1,0,16,38,42,16,2,2,208,255,64,20,
	128,0,214,38,254,255,2,36,4,0,194,23,
	33,32,224,2,33,40,64,2,47,16,192,12,
	33,48,128,2,17,0,66,146,0,0,0,0,
	140,0,64,16,33,32,64,2,36,18,192,8,
	0,0,0,0,26,0,194,23,0,0,0,0,
	36,133,130,143,0,0,0,0,11,0,64,16,
	33,32,224,2,9,0,160,18,1,0,2,36,
	17,0,66,162,2,131,4,60,192,246,132,36,
	6,23,192,12,33,40,64,2,126,0,64,16,
	33,16,0,0,33,32,224,2,33,40,64,2,
	47,16,192,12,33,48,128,2,36,133,130,143,
	0,0,0,0,115,0,64,16,33,32,64,2,
	116,0,160,22,1,0,2,36,45,18,192,8,
	0,0,0,0,87,0,213,19,64,130,30,0,
	2,131,2,60,33,16,80,0,216,247,66,140,
	0,0,0,0,18,0,64,16,33,32,128,2,
	16,0,166,39,18,0,69,150,0,0,0,0,
	9,248,64,0,33,56,160,2,11,0,64,16,
	33,32,64,2,2,131,2,60,33,16,80,0,
	224,247,66,140,0,0,0,0,1,0,66,36,
	2,131,1,60,33,8,48,0,224,247,34,172,
	45,18,192,8,17,0,128,160,36,133,130,143,
	0,0,0,0,43,0,64,16,0,0,0,0,
	41,0,192,19,0,0,0,0,39,0,160,18,
	64,18,30,0,2,131,16,60,192,246,16,38,
	33,136,80,0,247,22,192,12,33,32,32,2,
	74,0,64,16,33,16,0,0,247,22,192,12,
	33,32,0,2,63,0,64,16,2,0,2,36,
	17,0,66,162,44,133,130,143,0,0,0,0,
	7,0,64,16,192,17,30,0,3,131,3,60,
	33,24,98,0,20,13,99,140,3,0,2,36,
	6,0,98,20,0,0,0,0,33,32,32,2,
	6,23,192,12,33,40,64,2,0,18,192,8,
	0,0,0,0,17,0,66,146,0,0,0,0,
	255,255,66,36,17,0,66,162,17,0,66,146,
	2,131,4,60,192,246,132,36,6,23,192,12,
	33,40,64,2,36,18,192,8,0,0,0,0,
	44,133,130,143,0,0,0,0,7,0,64,16,
	192,17,30,0,3,131,3,60,33,24,98,0,
	20,13,99,140,3,0,2,36,28,0,98,20,
	0,0,0,0,1,0,2,36,17,0,66,162,
	64,18,30,0,2,131,4,60,192,246,132,36,
	32,18,192,8,33,32,68,0,36,133,130,143,
	0,0,0,0,17,0,64,16,0,0,0,0,
	15,0,192,19,1,0,2,36,17,0,66,162,
	2,131,4,60,192,246,132,36,6,23,192,12,
	33,40,64,2,13,0,64,16,33,16,0,0,
	252,0,226,142,0,0,0,0,1,0,66,36,
	47,18,192,8,252,0,226,174,48,18,192,8,
	33,16,0,0,17,0,64,162,33,32,64,2,
	152,21,192,12,0,0,0,0,1,0,2,36,
	124,0,191,143,120,0,190,143,116,0,183,143,
	112,0,182,143,108,0,181,143,104,0,180,143,
	100,0,179,143,96,0,178,143,92,0,177,143,
	88,0,176,143,8,0,224,3,128,0,189,39,
	216,255,189,39,24,0,178,175,33,144,128,0,
	32,0,191,175,28,0,179,175,20,0,177,175,
	16,0,176,175,8,0,177,140,0,0,66,142,
	8,0,38,142,36,0,64,16,0,0,0,0,
	28,0,66,142,0,0,0,0,18,0,64,20,
	1,0,2,36,0,0,194,144,0,0,0,0,
	1,0,66,48,13,0,64,20,1,0,2,36,
	4,0,195,148,24,0,66,150,0,0,0,0,
	6,0,98,20,33,32,0,0,0,0,194,140,
	20,0,67,142,0,0,0,0,38,16,67,0,
	1,0,68,44,10,0,128,16,1,0,2,36,
	17,0,34,162,2,131,4,60,192,246,132,36,
	6,23,192,12,33,40,32,2,45,0,64,16,
	33,16,0,0,139,18,192,8,0,0,0,0,
	17,0,32,162,152,21,192,12,33,32,32,2,
	144,18,192,8,1,0,2,36,16,0,179,140,
	0,0,0,0,6,0,96,26,0,0,0,0,
	32,133,130,143,0,0,0,0,42,16,98,2,
	15,0,64,20,1,0,2,36,2,131,4,60,
	248,130,132,36,2,131,16,60,24,131,16,38,
	33,40,0,2,2,131,7,60,36,131,231,36,
	15,63,192,12,188,2,6,36,1,0,4,36,
	33,40,0,2,188,7,192,12,188,2,6,36,
	1,0,2,36,17,0,34,162,64,18,19,0,
	2,131,4,60,192,246,132,36,33,32,68,0,
	6,23,192,12,33,40,32,2,6,0,64,16,
	33,16,0,0,252,0,66,142,0,0,0,0,
	1,0,66,36,252,0,66,174,1,0,2,36,
	32,0,191,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	40,0,189,39,72,255,189,39,164,0,181,175,
	33,168,128,0,180,0,191,175,176,0,190,175,
	172,0,183,175,168,0,182,175,160,0,180,175,
	156,0,179,175,152,0,178,175,148,0,177,175,
	144,0,176,175,88,0,165,175,120,0,160,175,
	120,0,168,142,0,0,0,0,96,0,168,175,
	124,0,169,142,0,0,0,0,15,2,160,24,
	104,0,169,175,96,0,168,143,0,0,0,0,
	0,0,4,149,0,0,0,0,0,128,130,48,
	9,2,64,16,0,0,0,0,128,0,160,175,
	8,0,2,141,136,0,169,142,255,255,8,36,
	18,0,72,16,112,0,169,175,112,0,169,143,
	0,0,0,0,0,0,35,141,4,0,40,141,
	128,0,169,143,255,63,98,48,33,72,34,1,
	0,128,99,48,112,0,168,175,246,255,96,16,
	128,0,169,175,96,0,168,143,0,0,0,0,
	8,0,2,141,128,0,169,151,0,0,0,0,
	18,0,73,164,0,32,130,48,200,1,64,16,
	0,0,0,0,40,133,130,143,0,0,0,0,
	75,0,64,16,3,0,8,36,96,0,168,143,
	0,0,0,0,8,0,16,141,0,0,162,142,
	8,0,5,142,30,0,64,16,0,0,0,0,
	28,0,162,142,0,0,0,0,18,0,64,20,
	1,0,9,36,0,0,162,144,0,0,0,0,
	1,0,66,48,13,0,64,20,0,0,0,0,
	4,0,163,148,24,0,162,150,0,0,0,0,
	6,0,98,20,33,32,0,0,0,0,162,140,
	20,0,163,142,0,0,0,0,38,16,67,0,
	1,0,68,44,6,0,128,16,1,0,9,36,
	17,0,9,162,2,131,4,60,192,246,132,36,
	18,19,192,8,33,40,0,2,17,0,0,162,
	130,20,192,8,33,32,0,2,16,0,17,141,
	0,0,0,0,6,0,32,26,0,0,0,0,
	32,133,130,143,0,0,0,0,42,16,34,2,
	15,0,64,20,1,0,9,36,2,131,4,60,
	248,130,132,36,2,131,5,60,24,131,165,36,
	2,131,7,60,36,131,231,36,15,63,192,12,
	188,2,6,36,1,0,4,36,2,131,5,60,
	24,131,165,36,188,7,192,12,188,2,6,36,
	1,0,9,36,17,0,9,162,64,34,17,0,
	2,131,8,60,192,246,8,37,33,32,136,0,
	33,40,0,2,6,23,192,12,0,0,0,0,
	112,1,64,16,33,16,0,0,252,0,162,142,
	0,0,0,0,1,0,66,36,132,20,192,8,
	252,0,162,174,0,0,182,142,96,0,169,143,
	192,17,22,0,8,0,50,141,3,131,3,60,
	33,24,98,0,20,13,99,140,8,0,84,142,
	0,0,0,0,59,0,104,16,5,0,98,44,
	57,0,64,16,128,16,3,0,2,131,1,60,
	33,8,34,0,128,131,34,140,0,0,0,0,
	8,0,64,0,0,0,0,0,44,133,130,143,
	0,0,0,0,48,0,64,16,6,0,132,38,
	4,0,131,150,2,131,2,60,68,207,66,148,
	0,0,0,0,6,0,98,20,33,32,0,0,
	0,0,130,142,48,129,131,143,0,0,0,0,
	38,16,67,0,1,0,68,44,67,1,128,16,
	33,32,192,2,114,42,192,12,33,40,128,2,
	130,20,192,8,33,32,64,2,44,133,130,143,
	0,0,0,0,27,0,64,16,6,0,132,38,
	4,0,131,150,2,131,2,60,68,207,66,148,
	0,0,0,0,6,0,98,20,33,32,0,0,
	0,0,130,142,48,129,131,143,0,0,0,0,
	38,16,67,0,1,0,68,44,5,0,128,16,
	33,32,192,2,114,42,192,12,33,40,128,2,
	130,20,192,8,33,32,64,2,6,0,132,38,
	0,163,6,60,140,1,198,140,0,0,0,0,
	247,24,192,12,33,40,192,2,130,20,192,8,
	33,32,64,2,6,0,132,38,0,163,6,60,
	140,1,198,140,0,0,0,0,247,24,192,12,
	33,40,192,2,203,24,192,12,33,32,128,2,
	20,1,163,142,0,0,0,0,14,0,96,16,
	33,240,64,0,33,32,128,2,16,0,166,39,
	18,0,69,150,0,0,0,0,9,248,96,0,
	33,56,192,3,6,0,64,16,33,32,64,2,
	28,1,162,142,0,0,0,0,1,0,66,36,
	130,20,192,8,28,1,162,174,132,0,193,7,
	7,0,2,36,4,0,131,150,2,131,2,60,
	68,207,66,148,0,0,0,0,6,0,98,20,
	33,32,0,0,0,0,130,142,48,129,131,143,
	0,0,0,0,38,16,67,0,1,0,68,44,
	9,0,128,16,255,255,9,36,44,133,130,143,
	0,0,0,0,246,0,64,16,33,32,192,2,
	114,42,192,12,33,40,128,2,130,20,192,8,
	33,32,64,2,10,0,201,23,0,0,0,0,
	8,0,192,18,0,0,0,0,36,133,130,143,
	0,0,0,0,8,0,64,16,1,0,19,36,
	80,133,147,143,159,19,192,8,0,0,0,0,
	0,1,162,142,80,133,147,143,1,0,66,36,
	0,1,162,174,84,133,130,143,0,0,0,0,
	35,16,83,0,255,255,66,36,17,0,66,162,
	84,133,130,143,33,136,96,2,42,16,34,2,
	15,0,64,16,64,18,17,0,2,131,8,60,
	192,246,8,37,33,128,72,0,5,0,54,18,
	0,0,0,0,247,22,192,12,33,32,0,2,
	212,0,64,16,33,16,0,0,84,133,130,143,
	1,0,49,38,42,16,34,2,246,255,64,20,
	0,2,16,38,84,133,130,143,33,136,96,2,
	42,16,34,2,55,0,64,16,64,18,17,0,
	2,131,9,60,192,246,41,37,33,152,73,0,
	33,128,64,0,192,185,17,0,41,0,54,18,
	0,0,0,0,2,131,2,60,33,16,80,0,
	216,247,66,140,0,0,0,0,15,0,64,16,
	33,32,128,2,16,0,166,39,18,0,69,150,
	0,0,0,0,9,248,64,0,33,56,192,2,
	8,0,64,16,0,0,0,0,2,131,2,60,
	33,16,80,0,224,247,66,140,0,0,0,0,
	1,0,66,36,230,19,192,8,32,1,98,174,
	44,133,130,143,0,0,0,0,7,0,64,16,
	3,0,8,36,3,131,2,60,33,16,87,0,
	20,13,66,140,0,0,0,0,6,0,72,20,
	0,0,0,0,33,32,96,2,6,23,192,12,
	33,40,64,2,236,19,192,8,0,2,115,38,
	17,0,66,146,0,0,0,0,255,255,66,36,
	17,0,66,162,17,0,66,146,0,2,115,38,
	0,2,16,38,84,133,130,143,1,0,49,38,
	42,16,34,2,208,255,64,20,128,0,247,38,
	254,255,2,36,4,0,194,23,33,32,160,2,
	33,40,64,2,47,16,192,12,33,48,128,2,
	17,0,66,146,0,0,0,0,135,0,64,16,
	33,32,64,2,22,19,192,8,0,0,0,0,
	26,0,194,23,0,0,0,0,36,133,130,143,
	0,0,0,0,11,0,64,16,33,32,160,2,
	9,0,192,18,1,0,9,36,17,0,73,162,
	2,131,4,60,192,246,132,36,6,23,192,12,
	33,40,64,2,121,0,64,16,33,16,0,0,
	33,32,160,2,33,40,64,2,47,16,192,12,
	33,48,128,2,36,133,130,143,0,0,0,0,
	110,0,64,16,33,32,64,2,111,0,192,22,
	1,0,2,36,130,20,192,8,0,0,0,0,
	89,0,214,19,64,130,30,0,2,131,2,60,
	33,16,80,0,216,247,66,140,0,0,0,0,
	18,0,64,16,33,32,128,2,16,0,166,39,
	18,0,69,150,0,0,0,0,9,248,64,0,
	33,56,192,2,11,0,64,16,33,32,64,2,
	2,131,8,60,192,246,8,37,2,131,2,60,
	33,16,80,0,224,247,66,140,33,24,8,2,
	1,0,66,36,32,1,98,172,130,20,192,8,
	17,0,128,160,36,133,130,143,0,0,0,0,
	44,0,64,16,0,0,0,0,42,0,192,19,
	0,0,0,0,40,0,192,18,64,18,30,0,
	2,131,9,60,192,246,41,37,33,128,73,0,
	247,22,192,12,33,32,0,2,69,0,64,16,
	33,16,0,0,2,131,4,60,247,22,192,12,
	192,246,132,36,57,0,64,16,2,0,2,36,
	17,0,66,162,44,133,130,143,0,0,0,0,
	7,0,64,16,192,17,30,0,3,131,1,60,
	33,8,34,0,20,13,34,140,3,0,8,36,
	6,0,72,20,0,0,0,0,33,32,0,2,
	6,23,192,12,33,40,64,2,91,20,192,8,
	0,0,0,0,17,0,66,146,0,0,0,0,
	255,255,66,36,17,0,66,162,17,0,66,146,
	2,131,4,60,192,246,132,36,6,23,192,12,
	33,40,64,2,22,19,192,8,0,0,0,0,
	44,133,130,143,0,0,0,0,7,0,64,16,
	192,17,30,0,3,131,1,60,33,8,34,0,
	20,13,34,140,3,0,9,36,22,0,73,20,
	0,0,0,0,1,0,8,36,17,0,72,162,
	64,34,30,0,2,131,9,60,192,246,41,37,
	33,32,137,0,18,19,192,8,33,40,64,2,
	36,133,130,143,0,0,0,0,10,0,64,16,
	0,0,0,0,8,0,192,19,1,0,8,36,
	17,0,72,162,2,131,4,60,192,246,132,36,
	18,19,192,8,33,40,64,2,133,20,192,8,
	33,16,0,0,17,0,64,162,33,32,64,2,
	152,21,192,12,0,0,0,0,1,0,2,36,
	52,0,64,16,0,0,0,0,152,0,162,142,
	0,0,0,0,1,0,66,36,152,0,162,174,
	156,0,162,142,168,0,163,142,1,0,66,36,
	156,0,162,174,128,0,169,143,0,0,0,0,
	33,24,105,0,163,20,192,8,168,0,163,174,
	152,0,162,142,160,0,163,142,1,0,66,36,
	1,0,99,36,152,0,162,174,160,0,163,174,
	96,0,168,143,0,0,0,0,8,0,2,141,
	255,255,9,36,4,0,73,16,0,0,0,0,
	8,0,4,141,152,21,192,12,0,0,0,0,
	120,0,168,143,112,0,169,143,1,0,8,37,
	120,0,168,175,136,0,169,174,96,0,168,143,
	8,128,2,52,0,0,0,165,2,0,2,165,
	104,0,169,143,8,0,2,36,2,0,34,165,
	4,0,40,141,96,0,169,143,104,0,168,175,
	4,0,41,141,120,0,168,143,96,0,169,175,
	88,0,169,143,0,0,0,0,42,16,9,1,
	243,253,64,20,0,0,0,0,96,0,168,143,
	44,0,163,142,120,0,168,174,104,0,169,143,
	0,0,0,0,124,0,169,174,0,0,98,148,
	0,0,0,0,0,16,66,48,43,0,64,16,
	0,0,0,0,2,0,98,148,0,0,0,0,
	39,0,64,20,0,0,0,0,0,0,2,149,
	0,0,0,0,35,0,64,20,0,0,0,0,
	2,0,2,149,8,0,3,36,255,255,66,48,
	30,0,67,20,0,0,0,0,136,0,162,142,
	0,0,0,0,12,0,66,140,0,0,0,0,
	0,128,66,48,23,0,64,20,0,0,0,0,
	164,0,162,142,44,0,163,142,1,0,66,36,
	164,0,162,174,8,0,104,172,136,0,162,142,
	0,0,0,0,8,0,2,173,44,0,163,142,
	16,16,2,36,2,0,98,164,0,0,162,142,
	0,0,0,0,5,0,64,20,0,0,0,0,
	164,7,192,12,0,0,0,0,239,20,192,8,
	0,0,0,0,8,0,162,142,0,0,0,0,
	0,0,64,172,180,0,191,143,176,0,190,143,
	172,0,183,143,168,0,182,143,164,0,181,143,
	160,0,180,143,156,0,179,143,152,0,178,143,
	148,0,177,143,144,0,176,143,8,0,224,3,
	184,0,189,39,216,255,189,39,28,0,177,175,
	33,136,128,0,32,0,178,175,33,144,160,0,
	96,128,132,39,6,0,37,38,24,0,176,175,
	104,128,144,39,36,0,191,175,31,21,192,12,
	33,48,0,2,108,128,132,39,33,40,32,2,
	31,21,192,12,33,48,0,2,10,0,64,26,
	33,128,0,0,116,128,132,39,33,16,17,2,
	12,0,69,144,0,0,0,0,15,63,192,12,
	1,0,16,38,42,16,18,2,248,255,64,20,
	0,0,0,0,124,128,132,39,15,63,192,12,
	0,0,0,0,36,0,191,143,32,0,178,143,
	28,0,177,143,24,0,176,143,8,0,224,3,
	40,0,189,39,208,255,189,39,40,0,191,175,
	2,0,162,144,0,0,163,144,1,0,167,144,
	16,0,162,175,3,0,162,144,33,64,128,0,
	20,0,162,175,4,0,162,144,2,131,4,60,
	68,131,132,36,24,0,162,175,5,0,162,144,
	33,40,0,1,32,0,166,175,33,48,96,0,
	15,63,192,12,28,0,162,175,40,0,191,143,
	48,0,189,39,8,0,224,3,0,0,0,0,
	248,255,189,39,136,0,135,140,255,255,163,36,
	12,0,160,16,33,48,224,0,255,255,5,36,
	12,0,194,140,0,0,0,0,0,128,66,48,
	8,0,64,20,33,16,0,0,255,255,99,36,
	0,0,192,172,4,0,198,140,247,255,101,20,
	0,0,0,0,136,0,134,172,33,16,224,0,
	8,0,224,3,8,0,189,39,224,255,189,39,
	16,0,176,175,33,128,160,0,28,0,191,175,
	24,0,178,175,33,0,128,20,20,0,177,175,
	84,133,130,143,80,133,131,143,0,0,0,0,
	35,16,67,0,17,0,2,162,80,133,145,143,
	84,133,130,143,0,0,0,0,42,16,34,2,
	19,0,64,16,64,18,17,0,2,131,3,60,
	192,246,99,36,33,144,67,0,33,32,64,2,
	6,23,192,12,33,40,0,2,6,0,64,20,
	0,0,0,0,17,0,2,146,0,0,0,0,
	255,255,66,36,17,0,2,162,17,0,2,146,
	84,133,130,143,1,0,49,38,42,16,34,2,
	242,255,64,20,0,2,82,38,17,0,2,146,
	144,21,192,8,0,0,0,0,36,133,130,143,
	0,0,0,0,25,0,64,16,1,0,2,36,
	0,0,130,140,0,0,0,0,20,0,64,16,
	2,0,2,36,17,0,2,162,6,23,192,12,
	33,40,0,2,19,0,64,16,33,16,0,0,
	2,131,4,60,192,246,132,36,6,23,192,12,
	33,40,0,2,7,0,64,20,0,0,0,0,
	17,0,2,146,0,0,0,0,255,255,66,36,
	17,0,2,162,17,0,2,146,0,0,0,0,
	144,21,192,8,1,0,2,36,1,0,2,36,
	17,0,2,162,6,23,192,12,33,40,0,2,
	28,0,191,143,24,0,178,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	0,0,0,0,0,0,0,0,0,129,9,52,
	16,0,130,144,2,131,3,60,192,246,99,36,
	64,18,2,0,33,56,67,0,140,0,230,140,
	0,1,8,36,4,0,197,140,0,0,131,140,
	0,0,128,172,12,0,137,172,4,0,164,172,
	12,0,200,172,33,48,160,0,216,0,226,140,
	33,40,128,0,1,0,66,36,0,128,99,48,
	4,0,96,20,216,0,226,172,4,0,132,140,
	161,21,192,8,0,0,0,0,8,0,224,3,
	140,0,230,172,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,8,0,224,3,0,0,0,0,
	172,0,128,172,176,0,128,172,180,0,128,172,
	184,0,128,172,188,0,128,172,192,0,128,172,
	196,0,128,172,200,0,128,172,204,0,128,172,
	208,0,128,172,212,0,128,172,224,0,128,172,
	8,1,128,172,4,1,128,172,236,0,128,172,
	240,0,128,172,232,0,128,172,244,0,128,172,
	8,0,224,3,248,0,128,172,224,255,189,39,
	16,0,176,175,33,128,128,0,20,0,177,175,
	0,2,17,36,24,0,191,175,13,8,192,12,
	0,48,4,36,255,31,3,60,255,255,99,52,
	33,32,0,0,36,16,67,0,0,128,3,60,
	37,40,67,0,33,24,160,0,0,128,6,52,
	1,0,132,36,24,0,98,36,0,0,96,164,
	2,0,102,164,4,0,98,172,33,24,64,0,
	42,16,145,0,249,255,64,20,1,0,132,36,
	255,255,132,36,64,16,17,0,33,16,81,0,
	192,16,2,0,33,16,69,0,48,0,163,36,
	236,255,69,172,108,0,3,174,104,0,3,174,
	96,0,5,174,100,0,2,174,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,248,255,189,39,0,32,14,60,
	4,0,177,175,7,0,17,60,0,0,176,175,
	4,0,16,60,2,131,25,60,192,246,57,39,
	0,1,15,36,108,0,152,140,104,0,137,140,
	176,0,140,140,180,0,141,140,94,0,56,17,
	0,0,0,0,4,0,43,141,0,0,0,0,
	37,16,110,1,0,0,66,148,0,0,0,0,
	0,128,66,48,86,0,64,16,37,16,46,1,
	0,0,67,140,0,0,0,0,36,16,113,0,
	76,0,80,20,0,32,98,48,41,0,64,20,
	15,0,98,48,188,0,130,140,0,0,0,0,
	1,0,66,36,188,0,130,172,0,8,98,48,
	6,0,64,16,0,4,98,48,192,0,130,140,
	0,0,0,0,1,0,66,36,192,0,130,172,
	0,4,98,48,6,0,64,16,0,2,98,48,
	196,0,130,140,0,0,0,0,1,0,66,36,
	196,0,130,172,0,2,98,48,6,0,64,16,
	0,1,98,48,200,0,130,140,0,0,0,0,
	1,0,66,36,200,0,130,172,0,1,98,48,
	6,0,64,16,32,0,98,48,204,0,130,140,
	0,0,0,0,1,0,66,36,204,0,130,172,
	32,0,98,48,6,0,64,16,15,0,98,48,
	208,0,130,140,0,0,0,0,1,0,66,36,
	208,0,130,172,15,0,98,48,212,0,131,140,
	8,0,37,141,33,24,98,0,212,0,131,172,
	17,0,162,144,1,0,140,37,255,255,66,36,
	17,0,162,160,25,0,64,20,37,24,46,1,
	16,0,162,144,1,0,173,37,64,18,2,0,
	33,64,89,0,140,0,7,141,0,129,10,52,
	4,0,230,140,0,0,163,140,0,0,160,172,
	12,0,170,172,4,0,197,172,12,0,239,172,
	33,56,192,0,216,0,2,141,33,48,160,0,
	1,0,66,36,0,128,99,48,4,0,96,20,
	216,0,2,173,4,0,165,140,114,22,192,8,
	0,0,0,0,140,0,7,173,37,24,46,1,
	0,128,2,60,0,0,98,172,40,22,192,8,
	33,72,96,1,104,0,137,172,176,0,140,172,
	180,0,141,172,4,0,177,143,0,0,176,143,
	8,0,224,3,8,0,189,39,224,255,189,39,
	16,0,176,175,33,128,128,0,24,0,191,175,
	20,0,177,175,44,0,17,142,0,0,0,0,
	0,0,34,150,0,0,0,0,0,32,66,48,
	89,0,64,16,0,0,0,0,2,0,34,150,
	0,0,0,0,0,1,66,48,84,0,64,20,
	0,0,0,0,27,22,192,12,0,0,0,0,
	104,0,4,142,0,0,0,0,2,0,130,148,
	0,128,3,52,255,255,66,48,75,0,67,16,
	0,0,0,0,224,0,2,142,0,0,0,0,
	1,0,66,36,224,0,2,174,4,0,36,174,
	0,0,128,164,4,0,130,140,0,0,0,0,
	0,0,64,164,0,0,2,142,0,0,0,0,
	51,0,64,16,0,33,2,36,2,0,34,150,
	0,0,0,0,47,0,64,16,0,33,2,36,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	2,0,34,150,0,0,0,0,211,255,64,20,
	0,33,2,36,2,0,34,166,0,0,2,142,
	0,0,0,0,5,0,64,16,0,0,0,0,
	8,0,2,142,0,0,0,0,242,22,192,8,
	0,0,64,172,164,7,192,12,0,0,0,0,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,108,0,133,140,
	0,0,0,0,4,0,162,140,0,0,0,0,
	4,0,67,140,104,0,130,140,0,0,0,0,
	5,0,98,20,33,16,160,0,184,0,131,140,
	33,16,0,0,1,0,99,36,184,0,131,172,
	8,0,224,3,0,0,0,0,224,255,189,39,
	16,0,176,175,33,128,128,0,28,0,191,175,
	24,0,178,175,20,0,177,175,108,0,18,142,
	8,1,6,142,44,0,17,142,4,0,66,142,
	104,0,7,142,4,0,66,140,18,0,163,148,
	172,0,4,142,0,0,0,0,6,0,71,20,
	255,255,99,48,184,0,3,142,33,16,0,0,
	1,0,99,36,157,23,192,8,184,0,3,174,
	33,48,195,0,1,0,130,36,172,0,2,174,
	8,1,6,174,8,0,162,140,4,1,3,142,
	0,0,70,144,33,32,64,2,8,0,69,174,
	12,0,64,174,1,0,194,48,2,0,64,16,
	1,0,98,36,4,1,2,174,0,0,2,142,
	0,0,0,0,35,0,64,20,0,0,0,0,
	18,0,162,148,0,0,0,0,255,255,66,48,
	12,0,66,174,0,0,34,150,0,0,0,0,
	0,32,66,48,24,0,64,16,12,0,2,36,
	2,0,34,150,0,0,0,0,0,1,66,48,
	19,0,64,20,12,0,2,36,4,0,242,16,
	0,0,0,0,27,22,192,12,33,32,0,2,
	12,0,2,36,2,0,66,166,104,0,4,142,
	0,0,0,0,0,0,128,164,4,0,130,140,
	0,0,0,0,0,0,64,164,0,33,2,36,
	4,0,36,174,164,7,192,12,2,0,34,166,
	154,23,192,8,0,0,0,0,154,23,192,8,
	2,0,130,164,0,0,34,150,0,0,0,0,
	0,32,66,48,69,0,64,16,12,0,2,36,
	4,0,242,16,0,0,0,0,27,22,192,12,
	33,32,0,2,12,0,2,36,2,0,66,166,
	104,0,4,142,0,0,0,0,0,0,128,164,
	4,0,130,140,0,0,0,0,0,0,64,164,
	4,0,36,174,2,0,34,150,0,0,0,0,
	47,0,64,16,0,33,2,36,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	0,0,0,0,0,0,0,0,2,0,34,150,
	0,0,0,0,211,255,64,20,0,33,2,36,
	2,0,34,166,8,0,2,142,0,0,0,0,
	154,23,192,8,0,0,64,172,2,0,66,166,
	4,0,67,142,1,0,2,36,108,0,3,174,
	28,0,191,143,24,0,178,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	216,255,189,39,20,0,177,175,33,136,128,0,
	24,0,178,175,2,131,18,60,192,131,82,38,
	28,0,179,175,0,1,19,36,32,0,191,175,
	16,0,176,175,104,0,48,142,108,0,34,142,
	0,0,0,0,4,0,2,22,0,0,0,0,
	2,0,2,150,245,23,192,8,0,0,0,0,
	2,0,2,150,0,0,0,0,7,0,66,48,
	11,0,64,20,33,40,64,2,2,131,4,60,
	160,131,132,36,2,131,7,60,252,131,231,36,
	15,63,192,12,0,2,6,36,1,0,4,36,
	33,40,64,2,188,7,192,12,0,2,6,36,
	2,0,2,150,4,0,3,36,7,0,66,48,
	40,0,67,20,0,128,2,52,8,0,3,142,
	0,0,0,0,17,0,98,144,0,0,0,0,
	255,255,66,36,17,0,98,160,17,0,98,144,
	0,0,0,0,30,0,64,20,0,128,2,52,
	180,0,34,142,33,32,96,0,1,0,66,36,
	180,0,34,174,16,0,130,144,2,131,3,60,
	192,246,99,36,64,18,2,0,33,56,67,0,
	140,0,230,140,0,129,8,52,4,0,197,140,
	0,0,131,140,0,0,128,172,12,0,136,172,
	4,0,164,172,12,0,211,172,33,48,160,0,
	216,0,226,140,33,40,128,0,1,0,66,36,
	0,128,99,48,4,0,96,20,216,0,226,172,
	4,0,132,140,223,23,192,8,0,0,0,0,
	140,0,230,172,0,128,2,52,2,0,2,166,
	0,0,0,166,4,0,16,142,174,23,192,8,
	0,0,0,0,44,0,35,142,104,0,48,174,
	0,0,98,148,0,0,0,0,0,32,66,52,
	0,0,98,164,32,0,191,143,28,0,179,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,40,0,189,39,0,163,2,60,
	0,1,66,52,0,0,66,140,2,131,3,60,
	192,6,99,36,255,3,66,48,60,0,66,36,
	0,128,66,52,8,0,224,3,0,0,98,172,
	208,255,189,39,28,0,177,175,33,136,128,0,
	32,0,178,175,33,144,160,0,24,0,176,175,
	0,163,16,60,0,163,2,60,164,1,66,140,
	0,1,16,54,44,0,191,175,40,0,180,175,
	4,0,64,20,36,0,179,175,60,0,2,36,
	0,163,1,60,164,1,34,172,0,163,2,60,
	164,1,66,140,0,0,0,0,221,5,66,40,
	3,0,64,20,220,5,2,36,0,163,1,60,
	164,1,34,172,0,163,3,60,164,1,99,140,
	255,255,2,36,21,0,98,20,0,0,0,0,
	128,128,130,143,0,0,0,0,5,0,67,20,
	2,0,5,36,130,11,192,12,0,0,0,0,
	128,128,130,175,2,0,5,36,10,0,6,36,
	128,128,132,143,0,131,7,60,8,96,231,36,
	156,11,192,12,16,0,160,175,0,0,2,142,
	2,131,3,60,192,6,99,36,255,3,66,48,
	66,24,192,8,64,0,66,36,0,163,2,60,
	164,1,66,140,2,131,3,60,192,6,99,36,
	0,128,66,52,0,0,98,172,255,31,4,60,
	255,255,132,52,2,131,2,60,208,6,66,36,
	36,16,68,0,0,160,5,60,37,16,69,0,
	2,131,3,60,176,12,99,36,2,131,1,60,
	196,6,32,172,2,131,1,60,200,6,34,172,
	12,0,2,36,0,0,96,164,2,131,1,60,
	178,12,34,164,6,0,65,6,36,16,100,0,
	37,16,69,0,2,131,1,60,180,12,34,172,
	99,24,192,8,255,31,18,60,2,131,2,60,
	178,12,66,148,0,0,0,0,0,128,66,52,
	2,131,1,60,178,12,34,164,255,31,18,60,
	255,255,82,54,2,131,2,60,192,6,66,36,
	36,16,82,0,0,160,20,60,37,16,84,0,
	2,131,1,60,184,12,34,172,2,131,1,60,
	188,12,32,172,44,0,34,142,0,0,0,0,
	0,0,66,148,2,131,19,60,176,12,115,38,
	0,32,66,48,15,0,64,20,33,40,0,0,
	2,131,4,60,160,131,132,36,2,131,16,60,
	192,131,16,38,33,40,0,2,2,131,7,60,
	24,132,231,36,15,63,192,12,71,2,6,36,
	1,0,4,36,33,40,0,2,188,7,192,12,
	71,2,6,36,33,40,0,0,33,48,0,0,
	36,16,114,2,44,0,35,142,37,16,84,0,
	4,0,98,172,44,0,36,142,208,7,7,36,
	129,67,192,12,2,0,132,36,12,0,64,20,
	0,0,0,0,44,0,34,142,0,0,0,0,
	2,0,69,148,2,131,4,60,15,63,192,12,
	56,132,132,36,255,255,4,36,2,131,5,60,
	192,131,165,36,188,7,192,12,79,2,6,36,
	44,0,34,142,0,33,3,36,2,0,67,164,
	8,0,34,142,0,0,0,0,0,0,64,172,
	44,0,191,143,40,0,180,143,36,0,179,143,
	32,0,178,143,28,0,177,143,24,0,176,143,
	8,0,224,3,48,0,189,39,232,255,189,39,
	128,128,132,143,0,128,2,52,16,0,191,175,
	2,131,1,60,3,0,128,4,178,12,34,164,
	177,11,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	8,0,224,3,0,0,0,0,0,0,0,0,
	0,0,0,0,240,255,2,52,2,131,1,60,
	33,8,34,0,208,12,32,172,240,255,66,36,
	251,255,65,4,0,0,0,0,2,131,2,60,
	208,12,66,36,0,163,1,60,12,1,32,172,
	0,163,1,60,212,5,34,172,1,0,2,60,
	148,133,128,175,144,133,128,175,0,163,1,60,
	8,0,224,3,216,5,34,172,0,0,136,148,
	4,0,138,148,1,0,2,49,34,0,64,20,
	2,0,137,148,0,25,10,0,38,24,106,0,
	38,24,105,0,240,255,99,48,2,131,15,60,
	208,12,239,37,33,40,111,0,68,133,142,143,
	128,0,3,36,0,0,162,140,4,0,171,148,
	23,0,64,16,43,16,194,1,9,0,64,16,
	6,0,172,148,7,0,11,21,8,0,173,148,
	5,0,44,21,0,0,0,0,3,0,77,21,
	10,0,162,148,8,0,224,3,0,0,0,0,
	255,255,99,36,10,0,96,16,240,255,165,36,
	43,16,175,0,238,255,64,16,0,0,162,140,
	248,127,229,37,248,127,165,36,218,24,192,8,
	0,0,162,140,8,0,224,3,254,255,2,36,
	8,0,224,3,255,255,2,36,8,0,224,3,
	0,0,0,0,0,0,136,148,68,133,142,143,
	1,0,2,49,53,0,64,20,2,0,137,148,
	0,131,2,60,4,0,138,148,12,1,89,140,
	0,25,10,0,38,24,106,0,38,24,105,0,
	240,255,99,48,2,131,15,60,208,12,239,37,
	33,56,111,0,128,0,3,36,0,0,248,140,
	4,0,235,148,43,16,216,1,14,0,64,16,
	6,0,236,148,24,0,11,21,8,0,237,148,
	22,0,44,21,255,127,2,60,20,0,77,21,
	255,255,66,52,43,16,2,3,2,0,64,16,
	33,16,198,1,0,0,226,172,10,0,229,164,
	8,0,224,3,0,0,2,36,3,0,0,23,
	1,0,57,35,0,131,2,60,12,1,89,172,
	33,16,198,1,0,0,226,172,10,0,229,164,
	4,0,232,164,6,0,233,164,8,0,234,164,
	8,0,224,3,1,0,2,36,255,255,99,36,
	11,0,96,16,0,0,0,0,240,255,231,36,
	43,16,239,0,221,255,64,16,0,0,248,140,
	248,127,231,37,248,127,231,36,8,25,192,8,
	0,0,248,140,8,0,224,3,0,0,2,36,
	144,133,130,143,0,0,0,0,1,0,66,32,
	144,133,130,175,8,0,224,3,255,255,2,36,
	8,0,224,3,0,0,0,0,164,128,130,143,
	0,0,0,0,7,0,130,20,232,255,189,39,
	160,128,130,143,2,131,3,60,208,12,99,36,
	0,17,2,0,108,25,192,8,33,16,67,0,
	42,16,130,0,3,0,64,16,255,255,2,36,
	164,128,128,175,160,128,130,175,164,128,130,143,
	160,128,131,143,35,48,130,0,1,0,101,36,
	0,16,162,40,25,0,64,16,0,25,5,0,
	68,133,135,143,2,131,2,60,33,16,67,0,
	208,12,66,140,0,0,0,0,43,16,226,0,
	4,0,64,16,0,0,0,0,255,255,198,36,
	6,0,192,16,0,16,162,40,1,0,165,36,
	0,16,162,40,243,255,64,20,16,0,99,36,
	0,16,162,40,7,0,64,16,0,25,5,0,
	2,131,2,60,208,12,66,36,160,128,133,175,
	164,128,132,175,108,25,192,8,33,16,98,0,
	33,16,0,0,255,255,3,36,164,128,128,175,
	160,128,131,175,8,0,224,3,24,0,189,39,
	0,0,0,0,0,0,0,0,24,255,189,39,
	228,0,191,175,224,0,190,175,220,0,183,175,
	216,0,182,175,212,0,181,175,208,0,180,175,
	204,0,179,175,200,0,178,175,196,0,177,175,
	192,0,176,175,44,28,192,12,0,0,0,0,
	176,128,132,39,15,63,192,12,1,0,17,36,
	24,0,176,39,164,68,192,12,33,32,0,2,
	24,0,162,131,0,0,0,0,137,25,192,8,
	32,0,8,36,0,0,2,130,32,0,8,36,
	253,255,72,16,1,0,16,38,255,255,16,38,
	9,0,8,36,249,255,72,16,1,0,16,38,
	255,255,16,38,0,0,2,146,0,0,0,0,
	208,255,66,36,10,0,66,44,27,0,64,16,
	33,32,0,2,33,40,0,0,212,68,192,12,
	33,48,0,0,0,0,3,146,0,0,0,0,
	208,255,99,36,10,0,99,44,9,0,96,16,
	33,136,64,0,1,0,16,38,0,0,2,146,
	0,0,0,0,208,255,66,36,10,0,66,44,
	251,255,64,20,1,0,16,38,255,255,16,38,
	0,0,2,130,32,0,8,36,253,255,72,16,
	1,0,16,38,255,255,16,38,9,0,8,36,
	249,255,72,16,1,0,16,38,255,255,16,38,
	0,0,2,130,0,0,3,146,0,0,0,0,
	22,0,64,16,104,0,180,39,32,0,8,36,
	19,0,72,16,9,0,8,36,17,0,72,16,
	32,0,5,36,9,0,4,36,208,255,98,36,
	10,0,66,44,12,0,64,20,0,0,0,0,
	1,0,16,38,0,0,131,162,0,0,2,130,
	0,0,3,146,0,0,0,0,5,0,64,16,
	1,0,148,38,3,0,69,16,0,0,0,0,
	243,255,68,20,208,255,98,36,0,0,128,162,
	104,0,180,39,0,0,2,130,32,0,8,36,
	253,255,72,16,1,0,16,38,255,255,16,38,
	9,0,8,36,249,255,72,16,1,0,16,38,
	255,255,16,38,33,240,0,2,0,0,196,131,
	0,0,0,0,32,69,192,12,144,0,190,175,
	11,0,64,16,33,32,192,3,33,40,0,0,
	212,68,192,12,33,48,0,0,33,152,64,0,
	33,32,192,3,33,40,0,0,44,69,192,12,
	16,0,6,36,232,25,192,8,33,144,64,0,
	255,255,18,36,255,255,19,36,0,0,3,130,
	0,0,2,146,0,0,0,0,17,0,96,16,
	32,0,8,36,15,0,104,16,1,0,16,38,
	255,255,16,38,32,0,4,36,0,22,2,0,
	3,22,2,0,9,0,8,36,8,0,72,16,
	0,0,0,0,1,0,16,38,0,0,3,130,
	0,0,2,146,3,0,96,16,0,0,0,0,
	246,255,100,20,0,22,2,0,0,0,2,130,
	32,0,8,36,253,255,72,16,1,0,16,38,
	255,255,16,38,9,0,8,36,249,255,72,16,
	1,0,16,38,255,255,16,38,33,184,0,2,
	33,32,224,2,33,40,0,0,212,68,192,12,
	33,48,0,0,33,32,224,2,33,40,0,0,
	16,0,6,36,44,69,192,12,33,176,64,0,
	0,0,227,130,0,0,0,0,15,0,96,16,
	33,168,64,0,32,0,8,36,12,0,104,16,
	32,0,3,36,0,0,2,130,9,0,8,36,
	8,0,72,16,0,0,0,0,1,0,16,38,
	0,0,2,130,0,0,0,0,3,0,64,16,
	0,0,0,0,248,255,67,20,0,0,0,0,
	0,0,131,130,0,0,0,0,121,0,98,44,
	244,1,64,16,128,16,3,0,2,131,1,60,
	33,8,34,0,160,138,34,140,0,0,0,0,
	8,0,64,0,0,0,0,0,1,0,131,130,
	104,0,2,36,26,0,98,16,105,0,98,40,
	7,0,64,16,116,0,2,36,34,0,96,16,
	98,0,2,36,11,0,98,16,0,0,0,0,
	26,28,192,8,0,0,0,0,5,0,98,16,
	119,0,8,36,27,0,104,16,33,16,32,2,
	26,28,192,8,0,0,0,0,4,162,2,60,
	33,144,66,2,2,0,130,130,0,0,0,0,
	214,1,64,20,0,0,0,0,2,131,4,60,
	108,132,132,36,0,0,70,146,82,26,192,8,
	0,0,0,0,2,0,130,130,0,0,0,0,
	205,1,64,20,0,0,0,0,2,131,4,60,
	120,132,132,36,0,0,70,150,0,0,0,0,
	15,63,192,12,33,40,64,2,125,25,192,8,
	0,0,0,0,33,16,32,2,37,255,64,16,
	255,255,49,38,0,0,80,142,2,131,4,60,
	132,132,132,36,33,40,64,2,4,0,82,38,
	15,63,192,12,33,48,0,2,33,16,32,2,
	247,255,64,20,255,255,49,38,125,25,192,8,
	0,0,0,0,1,0,131,130,104,0,2,36,
	23,0,98,16,105,0,98,40,7,0,64,16,
	116,0,2,36,25,0,96,16,98,0,2,36,
	11,0,98,16,0,0,0,0,26,28,192,8,
	0,0,0,0,5,0,98,16,119,0,8,36,
	17,0,104,16,0,0,0,0,26,28,192,8,
	0,0,0,0,4,162,2,60,33,144,66,2,
	2,0,130,130,0,0,0,0,158,1,64,20,
	0,0,0,0,125,25,192,8,0,0,85,162,
	2,0,130,130,0,0,0,0,152,1,64,20,
	0,0,0,0,125,25,192,8,0,0,85,166,
	125,25,192,8,0,0,85,174,0,163,16,60,
	31,163,17,60,255,255,49,54,0,0,2,142,
	0,0,0,0,4,0,82,20,0,0,0,0,
	180,128,132,39,15,63,192,12,33,40,0,2,
	4,0,16,38,43,16,48,2,246,255,64,16,
	0,0,0,0,125,25,192,8,0,0,0,0,
	33,16,32,2,228,254,64,16,255,255,49,38,
	33,32,96,2,164,32,192,12,33,40,192,2,
	33,16,32,2,251,255,64,20,255,255,49,38,
	125,25,192,8,0,0,0,0,1,0,130,130,
	0,0,0,0,117,1,64,20,33,32,32,2,
	133,29,192,12,33,40,96,2,125,25,192,8,
	0,0,0,0,33,32,96,2,33,40,32,2,
	234,31,192,12,33,48,192,2,125,25,192,8,
	0,0,0,0,1,0,130,130,0,0,0,0,
	103,1,64,20,33,16,32,2,200,254,64,16,
	255,255,49,38,33,32,96,2,33,40,192,2,
	182,29,192,12,33,48,0,2,33,16,32,2,
	250,255,64,20,255,255,49,38,125,25,192,8,
	0,0,0,0,33,32,32,2,33,40,96,2,
	33,48,192,2,38,30,192,12,33,56,0,2,
	125,25,192,8,0,0,0,0,5,162,2,60,
	0,0,69,144,2,131,4,60,15,63,192,12,
	144,132,132,36,125,25,192,8,0,0,0,0,
	0,163,1,60,20,1,32,172,14,0,32,18,
	33,128,0,0,164,7,192,12,1,0,16,38,
	143,63,192,12,0,0,0,0,143,63,192,12,
	0,0,0,0,143,63,192,12,0,0,0,0,
	143,63,192,12,0,0,0,0,43,16,17,2,
	244,255,64,20,0,0,0,0,184,63,192,12,
	0,0,0,0,0,163,16,60,20,1,16,142,
	0,0,0,0,7,0,17,22,33,40,32,2,
	2,131,4,60,164,132,132,36,15,63,192,12,
	33,40,32,2,125,25,192,8,0,0,0,0,
	2,131,4,60,188,132,132,36,15,63,192,12,
	33,48,0,2,125,25,192,8,0,0,0,0,
	0,0,226,130,7,162,8,60,16,0,64,16,
	33,144,72,2,33,16,32,2,134,254,64,16,
	255,255,49,38,0,0,85,174,2,131,4,60,
	132,132,132,36,33,40,64,2,15,63,192,12,
	33,48,160,2,4,0,82,38,33,16,32,2,
	247,255,64,20,255,255,49,38,125,25,192,8,
	0,0,0,0,33,16,32,2,119,254,64,16,
	255,255,49,38,0,0,80,142,2,131,4,60,
	132,132,132,36,33,40,64,2,4,0,82,38,
	15,63,192,12,33,48,0,2,33,16,32,2,
	247,255,64,20,255,255,49,38,125,25,192,8,
	0,0,0,0,7,162,16,60,64,0,17,38,
	2,131,4,60,228,132,132,36,33,40,0,2,
	0,0,6,142,0,0,0,0,15,63,192,12,
	4,0,16,38,42,16,17,2,247,255,64,20,
	7,162,8,60,128,0,16,37,176,0,17,37,
	2,131,4,60,228,132,132,36,33,40,0,2,
	0,0,6,142,0,0,0,0,15,63,192,12,
	4,0,16,38,42,16,17,2,247,255,64,20,
	7,162,8,60,192,0,16,37,240,0,17,37,
	2,131,4,60,228,132,132,36,33,40,0,2,
	0,0,6,142,0,0,0,0,15,63,192,12,
	4,0,16,38,42,16,17,2,247,255,64,20,
	0,0,0,0,125,25,192,8,0,0,0,0,
	1,0,130,130,0,0,0,0,222,0,64,20,
	33,16,32,2,63,254,64,16,255,255,49,38,
	33,32,96,2,213,29,192,12,33,40,160,2,
	33,16,32,2,251,255,64,20,255,255,49,38,
	125,25,192,8,0,0,0,0,1,0,130,130,
	0,0,0,0,208,0,64,20,33,16,32,2,
	49,254,64,16,255,255,49,38,33,32,96,2,
	161,31,192,12,33,40,192,2,33,16,32,2,
	251,255,64,20,255,255,49,38,125,25,192,8,
	0,0,0,0,33,16,32,2,38,254,64,16,
	255,255,49,38,208,32,192,12,33,32,0,0,
	33,32,0,0,164,32,192,12,33,40,0,0,
	40,29,192,12,0,0,0,0,133,29,192,12,
	255,255,4,36,33,16,32,2,245,255,64,20,
	255,255,49,38,125,25,192,8,0,0,0,0,
	1,0,131,130,87,0,2,36,27,0,98,16,
	88,0,98,40,7,0,64,16,114,0,2,36,
	37,0,96,16,82,0,2,36,9,0,98,16,
	0,0,0,0,125,25,192,8,0,0,0,0,
	5,0,98,16,119,0,8,36,15,0,104,16,
	0,0,0,0,125,25,192,8,0,0,0,0,
	2,0,130,130,0,0,0,0,159,0,64,20,
	0,0,0,0,60,65,192,12,33,32,96,2,
	184,128,132,39,33,40,96,2,15,63,192,12,
	33,48,64,0,125,25,192,8,0,0,0,0,
	2,0,130,130,0,0,0,0,147,0,64,20,
	33,32,96,2,162,65,192,12,33,40,160,2,
	242,253,64,20,33,40,160,2,2,131,4,60,
	8,133,132,36,15,63,192,12,33,48,96,2,
	125,25,192,8,0,0,0,0,33,16,32,2,
	233,253,64,16,255,255,49,38,40,29,192,12,
	0,0,0,0,33,16,32,2,252,255,64,20,
	255,255,49,38,125,25,192,8,0,0,0,0,
	1,0,133,130,87,0,2,36,29,0,162,16,
	88,0,162,40,5,0,64,16,82,0,2,36,
	11,0,162,16,33,16,32,2,125,25,192,8,
	0,0,0,0,114,0,2,36,5,0,162,16,
	119,0,8,36,19,0,168,16,33,32,64,2,
	125,25,192,8,0,0,0,0,33,16,32,2,
	206,253,64,16,255,255,49,38,168,69,192,12,
	33,32,64,2,184,128,132,39,33,40,64,2,
	15,63,192,12,33,48,64,0,1,0,82,38,
	33,16,32,2,247,255,64,20,255,255,49,38,
	125,25,192,8,0,0,0,0,33,32,64,2,
	29,70,192,12,33,40,160,2,189,253,64,20,
	33,40,160,2,2,131,4,60,40,133,132,36,
	15,63,192,12,33,48,64,2,125,25,192,8,
	0,0,0,0,144,0,164,143,122,28,192,12,
	0,0,0,0,125,25,192,8,0,0,0,0,
	33,16,96,2,175,253,64,16,255,255,115,38,
	143,63,192,12,0,0,0,0,33,16,96,2,
	252,255,64,20,255,255,115,38,125,25,192,8,
	0,0,0,0,33,16,32,2,165,253,64,16,
	255,255,49,38,33,32,96,2,208,32,192,12,
	33,40,192,2,33,16,32,2,251,255,64,20,
	255,255,49,38,125,25,192,8,0,0,0,0,
	1,0,130,146,0,0,0,0,159,255,66,36,
	0,22,2,0,3,30,2,0,24,0,98,44,
	27,0,64,16,128,16,3,0,2,131,1,60,
	33,8,34,0,136,140,34,140,0,0,0,0,
	8,0,64,0,0,0,0,0,12,33,192,12,
	33,32,64,2,125,25,192,8,0,0,0,0,
	15,33,192,12,33,32,96,2,125,25,192,8,
	0,0,0,0,18,33,192,12,33,32,96,2,
	125,25,192,8,0,0,0,0,22,33,192,12,
	33,32,96,2,125,25,192,8,0,0,0,0,
	25,33,192,12,33,32,64,2,125,25,192,8,
	0,0,0,0,33,32,64,2,7,33,192,12,
	33,40,192,2,125,25,192,8,0,0,0,0,
	16,0,182,175,33,32,32,2,33,40,192,3,
	33,48,224,2,161,33,192,12,33,56,160,2,
	125,25,192,8,0,0,0,0,33,136,0,0,
	2,131,4,60,72,133,132,36,15,63,192,12,
	1,0,49,38,32,0,34,46,250,255,64,20,
	0,0,0,0,125,25,192,8,0,0,0,0,
	2,131,4,60,92,133,132,36,15,63,192,12,
	33,40,128,2,123,25,192,8,0,0,0,0,
	228,0,191,143,224,0,190,143,220,0,183,143,
	216,0,182,143,212,0,181,143,208,0,180,143,
	204,0,179,143,200,0,178,143,196,0,177,143,
	192,0,176,143,8,0,224,3,232,0,189,39,
	232,255,189,39,2,131,5,60,192,154,165,36,
	20,0,191,175,16,0,176,175,0,0,162,140,
	0,0,0,0,9,0,64,16,33,128,160,0,
	0,0,5,142,192,128,132,39,15,63,192,12,
	4,0,16,38,0,0,2,142,0,0,0,0,
	249,255,64,20,0,0,0,0,20,0,191,143,
	16,0,176,143,8,0,224,3,24,0,189,39,
	0,0,132,144,0,0,0,0,208,255,130,36,
	10,0,66,44,4,0,64,16,0,22,4,0,
	3,22,2,0,89,28,192,8,208,255,66,36,
	159,255,130,36,6,0,66,44,4,0,64,16,
	0,22,4,0,3,22,2,0,89,28,192,8,
	169,255,66,36,191,255,130,36,6,0,66,44,
	3,0,64,20,0,22,4,0,89,28,192,8,
	255,255,2,36,3,22,2,0,201,255,66,36,
	8,0,224,3,0,0,0,0,216,255,189,39,
	24,0,178,175,33,144,128,0,32,0,191,175,
	28,0,179,175,20,0,177,175,16,0,176,175,
	0,0,81,142,0,0,0,0,65,28,192,12,
	33,32,32,2,33,24,64,0,255,255,19,36,
	9,0,115,16,0,129,3,0,65,28,192,12,
	1,0,36,38,33,24,64,0,4,0,115,16,
	2,0,34,38,0,0,66,174,115,28,192,8,
	37,16,3,2,255,255,2,36,32,0,191,143,
	28,0,179,143,24,0,178,143,20,0,177,143,
	16,0,176,143,8,0,224,3,40,0,189,39,
	176,255,189,39,64,0,180,175,33,160,128,0,
	72,0,191,175,68,0,181,175,60,0,179,175,
	56,0,178,175,52,0,177,175,48,0,176,175,
	0,0,130,130,0,0,0,0,53,0,64,20,
	33,128,0,0,27,67,192,12,33,32,0,0,
	1,0,4,36,27,67,192,12,33,128,64,0,
	2,0,4,36,27,67,192,12,33,136,64,0,
	33,24,64,0,255,255,2,36,5,0,2,18,
	0,0,0,0,3,0,34,18,0,0,0,0,
	6,0,98,20,255,255,2,52,2,131,4,60,
	15,63,192,12,60,137,132,36,29,29,192,8,
	0,0,0,0,5,0,2,18,0,0,0,0,
	3,0,34,18,0,0,0,0,6,0,98,20,
	1,0,2,50,2,131,4,60,15,63,192,12,
	104,137,132,36,29,29,192,8,0,0,0,0,
	6,0,64,16,255,0,5,50,2,131,4,60,
	15,63,192,12,132,137,132,36,29,29,192,8,
	0,0,0,0,2,131,4,60,176,137,132,36,
	3,50,16,0,3,18,17,0,16,0,162,175,
	255,0,98,48,20,0,162,175,3,18,3,0,
	255,0,39,50,15,63,192,12,24,0,162,175,
	29,29,192,8,0,0,0,0,40,0,180,175,
	58,0,21,36,32,0,19,36,255,255,18,36,
	32,0,177,39,40,0,162,143,0,0,0,0,
	0,0,67,128,0,0,0,0,3,0,117,16,
	0,0,0,0,3,0,115,20,0,0,0,0,
	1,0,66,36,40,0,162,175,91,28,192,12,
	40,0,164,39,33,24,64,0,75,0,114,16,
	0,0,0,0,40,0,162,143,0,0,35,166,
	0,0,67,128,0,0,0,0,3,0,117,16,
	0,0,0,0,3,0,115,20,0,0,0,0,
	1,0,66,36,40,0,162,175,91,28,192,12,
	40,0,164,39,33,24,64,0,60,0,114,16,
	1,0,16,38,0,0,34,150,0,26,3,0,
	37,16,67,0,0,0,34,166,3,0,2,42,
	220,255,64,20,2,0,49,38,32,0,165,151,
	0,0,0,0,1,0,162,48,7,0,64,16,
	0,0,0,0,2,131,4,60,208,137,132,36,
	15,63,192,12,255,0,165,48,25,29,192,8,
	0,0,0,0,36,0,162,151,0,0,0,0,
	0,7,66,48,6,0,64,16,0,0,0,0,
	2,131,4,60,15,63,192,12,0,138,132,36,
	25,29,192,8,0,0,0,0,255,66,192,12,
	33,32,0,0,1,0,4,36,34,0,165,151,
	0,0,0,0,255,66,192,12,33,128,0,0,
	36,0,165,151,0,0,0,0,255,66,192,12,
	2,0,4,36,2,131,4,60,15,63,192,12,
	32,138,132,36,2,131,4,60,80,138,132,36,
	15,63,192,12,33,40,0,2,196,128,132,39,
	200,128,134,39,31,21,192,12,32,0,165,39,
	36,0,162,151,1,0,16,38,0,1,66,36,
	36,0,162,167,8,0,2,42,7,0,64,16,
	0,0,0,0,8,29,192,8,0,0,0,0,
	2,131,4,60,116,138,132,36,15,63,192,12,
	33,40,128,2,72,0,191,143,68,0,181,143,
	64,0,180,143,60,0,179,143,56,0,178,143,
	52,0,177,143,48,0,176,143,8,0,224,3,
	80,0,189,39,0,0,0,0,0,0,0,0,
	224,255,189,39,16,0,176,175,33,128,0,0,
	20,0,177,175,33,136,0,0,24,0,191,175,
	33,32,0,2,162,65,192,12,33,40,0,0,
	43,0,64,16,0,0,0,0,1,0,16,38,
	64,0,2,42,249,255,64,20,33,32,0,2,
	33,128,0,0,85,85,17,36,33,32,0,2,
	162,65,192,12,85,85,5,36,32,0,64,16,
	0,0,0,0,1,0,16,38,64,0,2,42,
	249,255,64,20,33,32,0,2,33,128,0,0,
	170,170,17,52,33,32,0,2,162,65,192,12,
	170,170,5,52,21,0,64,16,0,0,0,0,
	1,0,16,38,64,0,2,42,249,255,64,20,
	33,32,0,2,33,128,0,0,255,255,17,52,
	33,32,0,2,162,65,192,12,255,255,5,52,
	10,0,64,16,0,0,0,0,1,0,16,38,
	64,0,2,42,249,255,64,20,33,32,0,2,
	2,131,4,60,15,63,192,12,240,140,132,36,
	101,29,192,8,0,0,0,0,60,65,192,12,
	33,32,0,2,2,131,4,60,4,141,132,36,
	33,40,32,2,33,48,0,2,15,63,192,12,
	33,56,64,0,24,0,191,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	0,0,0,0,0,0,0,0,232,255,189,39,
	16,0,191,175,210,7,192,12,0,0,0,0,
	139,14,192,12,0,0,0,0,180,10,192,12,
	0,0,0,0,32,133,132,143,1,0,2,36,
	42,16,68,0,9,0,64,16,0,2,3,36,
	64,34,4,0,2,131,1,60,33,8,35,0,
	196,246,32,172,0,2,99,36,42,16,100,0,
	250,255,64,20,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	208,255,189,39,24,0,178,175,33,144,128,0,
	32,0,180,175,33,160,160,0,44,0,191,175,
	40,0,182,175,36,0,181,175,28,0,179,175,
	20,0,177,175,3,0,128,26,16,0,176,175,
	149,29,192,8,1,0,147,38,1,0,20,36,
	32,133,147,143,255,255,82,38,255,255,2,36,
	20,0,66,18,255,255,21,36,2,131,22,60,
	192,246,214,38,108,29,192,12,33,128,128,2,
	42,16,19,2,10,0,64,16,64,18,16,0,
	33,136,86,0,242,21,192,12,33,32,32,2,
	133,12,192,12,33,32,0,2,1,0,16,38,
	42,16,19,2,249,255,64,20,0,2,49,38,
	255,255,82,38,240,255,85,22,0,0,0,0,
	44,0,191,143,40,0,182,143,36,0,181,143,
	32,0,180,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	48,0,189,39,216,255,189,39,24,0,178,175,
	33,144,160,0,28,0,179,175,33,152,192,0,
	32,0,191,175,20,0,177,175,3,0,128,24,
	16,0,176,175,195,29,192,8,1,0,145,36,
	1,0,4,36,32,133,145,143,33,128,128,0,
	42,16,17,2,8,0,64,16,33,32,0,2,
	33,40,64,2,250,29,192,12,33,48,96,2,
	1,0,16,38,42,16,17,2,250,255,64,20,
	33,32,0,2,32,0,191,143,28,0,179,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,40,0,189,39,224,255,189,39,
	24,0,191,175,20,0,177,175,3,0,128,24,
	16,0,176,175,222,29,192,8,1,0,145,36,
	1,0,4,36,32,133,145,143,33,128,128,0,
	42,16,17,2,7,0,64,16,0,0,0,0,
	237,29,192,12,33,32,0,2,1,0,16,38,
	42,16,17,2,251,255,64,20,0,0,0,0,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,64,34,4,0,
	2,131,2,60,192,246,66,36,33,32,130,0,
	44,0,131,140,1,0,2,36,32,0,130,172,
	16,0,2,36,2,0,98,164,8,0,130,140,
	0,0,0,0,8,0,224,3,0,0,64,172,
	208,255,189,39,33,48,128,0,64,18,6,0,
	2,131,3,60,192,246,99,36,36,0,177,175,
	33,136,67,0,40,0,191,175,32,0,176,175,
	4,0,34,142,0,0,0,0,4,0,64,20,
	33,128,160,0,1,0,4,36,133,29,192,12,
	33,40,192,0,3,0,0,30,221,5,2,42,
	17,30,192,8,1,0,16,36,3,0,64,20,
	33,32,32,2,220,5,16,36,33,32,32,2,
	208,7,5,36,108,0,131,140,12,0,2,36,
	2,0,98,164,16,0,162,39,8,0,98,172,
	0,128,2,54,12,0,96,172,16,0,162,175,
	255,255,2,36,20,0,162,175,2,131,2,60,
	0,155,66,36,98,31,192,12,24,0,162,175,
	40,0,191,143,36,0,177,143,32,0,176,143,
	8,0,224,3,48,0,189,39,56,254,189,39,
	160,1,176,175,33,128,192,0,48,1,164,175,
	33,32,224,0,64,18,5,0,2,131,3,60,
	192,246,99,36,33,16,67,0,56,1,162,175,
	64,18,16,0,33,16,67,0,40,0,168,39,
	196,1,191,175,192,1,190,175,188,1,183,175,
	184,1,182,175,180,1,181,175,176,1,180,175,
	172,1,179,175,168,1,178,175,164,1,177,175,
	64,1,162,175,12,0,160,24,96,1,168,175,
	32,133,131,143,0,0,0,0,42,16,163,0,
	19,1,64,16,1,0,2,36,5,0,0,26,
	42,16,3,2,15,1,64,16,1,0,2,36,
	3,0,176,20,33,40,0,0,86,31,192,8,
	1,0,2,36,212,68,192,12,33,48,0,0,
	6,0,65,4,104,1,162,175,33,72,64,0,
	35,72,9,0,104,1,169,175,87,30,192,8,
	112,1,160,175,1,0,8,36,112,1,168,175,
	1,0,4,36,133,29,192,12,33,40,0,0,
	237,29,192,12,33,32,0,2,24,0,169,39,
	56,1,168,143,255,0,2,36,80,1,169,175,
	108,0,8,141,43,1,163,39,72,1,168,175,
	0,0,98,160,255,255,66,36,253,255,65,4,
	255,255,99,36,64,1,169,143,0,0,0,0,
	120,0,41,141,64,1,168,143,128,1,169,175,
	124,0,8,141,64,1,169,143,136,1,168,175,
	44,0,34,141,0,0,0,0,12,0,64,172,
	44,0,34,141,0,0,0,0,16,0,64,172,
	44,0,34,141,120,1,160,175,32,0,64,172,
	44,0,34,141,88,1,160,175,24,0,64,172,
	48,1,168,143,0,0,0,0,168,0,0,25,
	40,0,169,39,144,1,169,175,88,1,168,143,
	0,0,0,0,255,0,2,49,4,0,86,36,
	60,0,194,42,2,0,64,16,0,0,0,0,
	60,0,22,36,104,1,169,143,0,0,0,0,
	2,0,32,17,0,0,0,0,104,1,182,143,
	56,1,164,143,72,1,168,143,12,0,2,36,
	2,0,2,165,80,1,169,143,0,128,194,54,
	8,0,9,173,12,0,0,173,0,0,34,173,
	255,255,8,36,4,0,40,173,144,1,168,143,
	0,0,0,0,8,0,40,173,88,1,168,143,
	96,1,169,143,208,7,5,36,98,31,192,12,
	0,0,40,173,0,128,5,52,0,128,6,52,
	128,1,164,143,0,0,0,0,129,67,192,12,
	2,0,7,36,13,0,64,20,0,0,0,0,
	88,1,165,143,2,131,4,60,15,63,192,12,
	64,141,132,36,120,1,169,143,0,0,0,0,
	1,0,41,37,20,0,34,41,117,0,64,16,
	120,1,169,175,32,31,192,8,0,0,0,0,
	128,1,168,143,64,1,169,143,8,0,2,141,
	255,255,8,36,136,0,53,141,0,0,0,0,
	50,0,72,16,33,184,0,0,1,0,4,36,
	4,0,18,36,4,0,3,36,0,0,190,142,
	8,0,166,142,112,1,169,143,255,63,212,51,
	30,0,32,17,33,184,244,2,42,16,116,0,
	27,0,64,16,33,152,96,0,144,1,168,143,
	0,0,0,0,33,136,72,2,33,128,102,0,
	15,0,128,16,0,0,0,0,0,0,2,146,
	0,0,35,146,0,0,0,0,10,0,67,16,
	33,48,192,2,2,131,4,60,92,141,132,36,
	88,1,165,143,16,0,163,175,0,0,2,146,
	33,56,64,2,15,63,192,12,20,0,162,175,
	33,32,0,0,1,0,115,38,1,0,16,38,
	1,0,49,38,42,16,116,2,235,255,64,20,
	1,0,82,38,33,24,0,0,4,0,181,142,
	0,128,194,51,217,255,64,16,0,0,0,0,
	128,1,169,143,0,0,0,0,8,0,34,141,
	0,0,0,0,25,0,128,16,18,0,87,164,
	9,0,246,18,33,48,192,2,2,131,4,60,
	140,141,132,36,88,1,165,143,0,0,0,0,
	15,63,192,12,33,56,224,2,5,31,192,8,
	0,0,0,0,64,1,168,143,0,0,0,0,
	136,0,2,141,96,1,169,143,8,0,70,140,
	0,0,34,141,0,0,198,140,0,0,0,0,
	7,0,194,16,0,0,0,0,88,1,165,143,
	2,131,4,60,15,63,192,12,184,141,132,36,
	64,1,168,143,0,0,0,0,136,0,4,141,
	152,21,192,12,0,0,0,0,64,1,169,143,
	0,0,0,0,136,0,53,173,128,1,168,143,
	8,128,2,52,0,0,0,165,2,0,2,165,
	8,0,0,173,12,0,0,165,136,1,169,143,
	8,0,2,36,2,0,34,165,4,0,40,141,
	128,1,169,143,136,1,168,175,4,0,41,141,
	64,1,168,143,128,1,169,175,120,0,9,173,
	136,1,169,143,0,0,0,0,124,0,9,173,
	88,1,168,143,48,1,169,143,1,0,8,37,
	42,16,9,1,91,255,64,20,88,1,168,175,
	64,1,168,143,0,0,0,0,44,0,3,141,
	0,0,0,0,12,0,98,140,0,0,0,0,
	5,0,64,16,0,0,0,0,12,0,101,140,
	2,131,4,60,15,63,192,12,212,141,132,36,
	64,1,169,143,0,0,0,0,44,0,35,141,
	0,0,0,0,16,0,98,140,0,0,0,0,
	5,0,64,16,0,0,0,0,16,0,101,140,
	2,131,4,60,15,63,192,12,240,141,132,36,
	64,1,168,143,0,0,0,0,44,0,3,141,
	0,0,0,0,32,0,98,140,0,0,0,0,
	5,0,64,16,0,0,0,0,32,0,101,140,
	2,131,4,60,15,63,192,12,16,142,132,36,
	64,1,169,143,0,0,0,0,44,0,35,141,
	0,0,0,0,24,0,98,140,0,0,0,0,
	5,0,64,16,0,0,0,0,24,0,101,140,
	2,131,4,60,15,63,192,12,48,142,132,36,
	196,1,191,143,192,1,190,143,188,1,183,143,
	184,1,182,143,180,1,181,143,176,1,180,143,
	172,1,179,143,168,1,178,143,164,1,177,143,
	160,1,176,143,8,0,224,3,200,1,189,39,
	224,255,189,39,16,0,176,175,33,128,128,0,
	24,0,191,175,20,0,177,175,44,0,4,142,
	0,0,0,0,0,0,130,148,0,0,0,0,
	0,32,66,48,7,0,64,20,33,136,160,0,
	0,0,133,148,2,131,4,60,15,63,192,12,
	80,142,132,36,156,31,192,8,3,0,2,36,
	2,0,132,36,33,40,0,0,33,48,0,0,
	129,67,192,12,33,56,32,2,13,0,64,16,
	33,40,0,0,44,0,3,142,0,33,2,36,
	2,0,98,164,8,0,2,142,33,48,0,0,
	0,0,64,172,44,0,4,142,33,56,32,2,
	129,67,192,12,2,0,132,36,9,0,64,20,
	0,32,5,36,44,0,2,142,0,0,0,0,
	2,0,69,148,2,131,4,60,15,63,192,12,
	108,142,132,36,156,31,192,8,1,0,2,36,
	44,0,4,142,0,32,6,36,129,67,192,12,
	33,56,32,2,8,0,64,20,33,16,0,0,
	44,0,2,142,0,0,0,0,0,0,69,148,
	2,131,4,60,15,63,192,12,132,142,132,36,
	2,0,2,36,24,0,191,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	224,255,189,39,24,0,178,175,33,144,160,0,
	28,0,191,175,20,0,177,175,7,0,128,4,
	16,0,176,175,24,133,130,143,0,0,0,0,
	255,255,66,36,42,16,68,0,4,0,64,16,
	33,136,128,0,24,133,130,143,33,32,0,0,
	255,255,81,36,33,128,128,0,42,16,48,2,
	7,0,64,20,33,32,0,2,193,31,192,12,
	33,40,64,2,1,0,16,38,42,16,48,2,
	251,255,64,16,33,32,0,2,28,0,191,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,8,0,224,3,
	0,0,0,0,232,255,189,39,16,0,191,175,
	236,63,192,12,1,16,4,36,85,0,2,36,
	131,131,1,60,128,18,34,160,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	216,255,189,39,28,0,177,175,33,136,128,0,
	32,0,178,175,33,144,160,0,212,128,132,39,
	36,0,191,175,15,63,192,12,24,0,176,175,
	9,0,64,26,33,128,0,0,0,0,37,146,
	1,0,49,38,220,128,132,39,15,63,192,12,
	1,0,16,38,42,16,18,2,249,255,64,20,
	0,0,0,0,228,128,132,39,15,63,192,12,
	0,0,0,0,36,0,191,143,32,0,178,143,
	28,0,177,143,24,0,176,143,8,0,224,3,
	40,0,189,39,48,255,189,39,33,56,128,0,
	192,0,178,175,33,144,160,0,200,0,180,175,
	33,160,192,0,255,255,226,36,6,0,66,44,
	204,0,191,175,196,0,179,175,188,0,177,175,
	2,0,64,20,184,0,176,175,1,0,7,36,
	2,0,64,30,0,0,0,0,1,0,18,36,
	2,0,128,30,64,18,7,0,60,0,20,36,
	2,131,3,60,192,246,99,36,33,136,67,0,
	4,0,34,142,0,0,0,0,4,0,64,20,
	33,152,64,2,1,0,4,36,133,29,192,12,
	33,40,224,0,255,31,4,60,255,255,132,52,
	0,128,133,54,120,0,162,39,36,16,68,0,
	0,160,3,60,37,16,67,0,104,0,165,175,
	108,0,160,175,112,0,162,175,12,0,2,36,
	80,0,160,167,82,0,162,167,80,0,162,39,
	36,16,68,0,37,128,67,0,104,0,162,39,
	36,16,68,0,232,128,132,143,37,16,67,0,
	84,0,176,175,88,0,162,175,92,0,160,175,
	5,0,128,16,4,0,2,36,82,0,162,167,
	255,255,2,36,92,0,165,175,88,0,162,175,
	44,0,34,142,0,0,0,0,0,0,66,148,
	0,0,0,0,0,32,66,48,7,0,64,20,
	33,40,0,0,255,255,4,36,2,131,5,60,
	184,142,165,36,188,7,192,12,208,1,6,36,
	33,40,0,0,44,0,34,142,33,48,0,0,
	4,0,80,172,44,0,36,142,208,7,7,36,
	129,67,192,12,2,0,132,36,12,0,64,20,
	0,0,0,0,44,0,34,142,0,0,0,0,
	2,0,69,148,2,131,4,60,15,63,192,12,
	108,142,132,36,255,255,4,36,2,131,5,60,
	184,142,165,36,188,7,192,12,216,1,6,36,
	34,11,192,12,1,0,4,36,0,163,16,60,
	4,1,16,142,0,163,2,60,4,1,66,140,
	0,0,0,0,252,255,2,18,0,33,3,36,
	44,0,34,142,0,0,0,0,2,0,67,164,
	8,0,34,142,0,0,0,0,0,0,64,172,
	0,163,16,60,4,1,16,142,44,0,36,142,
	0,0,0,0,4,0,130,140,0,0,0,0,
	0,0,66,148,0,0,0,0,0,128,66,48,
	10,0,64,20,0,0,0,0,44,0,35,142,
	0,0,0,0,4,0,98,140,0,0,0,0,
	0,0,66,148,0,0,0,0,0,128,66,48,
	250,255,64,16,0,0,0,0,255,255,115,38,
	19,0,96,18,33,40,64,2,44,0,35,142,
	0,0,0,0,4,0,98,140,0,0,0,0,
	0,0,66,148,0,0,0,0,0,128,66,48,
	229,255,64,16,0,0,0,0,4,0,98,140,
	0,0,0,0,0,0,66,148,0,0,0,0,
	0,128,66,48,250,255,64,20,0,0,0,0,
	89,32,192,8,0,0,0,0,2,131,4,60,
	200,142,132,36,33,48,128,2,0,163,3,60,
	4,1,99,140,0,128,2,52,82,0,162,167,
	35,128,112,0,15,63,192,12,33,56,0,2,
	19,0,0,18,64,41,18,0,35,40,178,0,
	128,40,5,0,33,40,178,0,192,40,5,0,
	26,0,176,0,2,0,0,22,0,0,0,0,
	13,0,7,0,255,255,1,36,4,0,1,22,
	0,128,1,60,2,0,161,20,0,0,0,0,
	13,0,6,0,18,40,0,0,236,128,132,39,
	15,63,192,12,0,0,0,0,204,0,191,143,
	200,0,180,143,196,0,179,143,192,0,178,143,
	188,0,177,143,184,0,176,143,8,0,224,3,
	208,0,189,39,224,255,189,39,20,0,177,175,
	33,136,128,0,24,0,191,175,180,10,192,12,
	16,0,176,175,34,11,192,12,1,0,4,36,
	16,133,132,143,0,163,16,60,4,1,16,142,
	193,63,192,12,0,0,0,0,0,163,2,60,
	4,1,66,140,0,0,0,0,35,40,80,0,
	73,252,162,36,99,0,66,44,4,0,64,16,
	0,0,0,0,2,131,4,60,196,32,192,8,
	0,143,132,36,5,0,160,20,0,0,0,0,
	2,131,4,60,36,143,132,36,196,32,192,8,
	33,40,0,0,2,131,4,60,76,143,132,36,
	15,63,192,12,1,0,16,36,3,0,48,18,
	0,0,0,0,34,11,192,12,33,32,0,0,
	0,129,144,175,24,0,191,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	200,255,189,39,32,0,178,175,33,144,128,0,
	33,48,64,2,44,0,181,175,1,131,21,60,
	60,252,181,38,33,56,160,2,40,0,180,175,
	2,131,20,60,144,143,148,38,36,0,179,175,
	0,163,19,60,120,1,115,142,0,163,3,60,
	120,1,99,140,32,131,2,60,48,0,191,175,
	28,0,177,175,24,0,176,175,16,0,180,175,
	33,32,96,2,35,136,67,0,84,64,192,12,
	33,40,32,2,3,0,64,18,33,128,64,0,
	10,0,0,22,0,0,0,0,16,0,180,175,
	33,32,96,2,33,40,32,2,33,48,64,2,
	244,63,192,12,33,56,160,2,33,128,2,2,
	5,0,0,18,33,40,96,2,2,131,4,60,
	168,143,132,36,252,32,192,8,33,40,96,2,
	2,131,4,60,204,143,132,36,15,63,192,12,
	33,48,177,0,48,0,191,143,44,0,181,143,
	40,0,180,143,36,0,179,143,32,0,178,143,
	28,0,177,143,24,0,176,143,8,0,224,3,
	56,0,189,39,0,163,1,60,232,5,36,172,
	0,163,1,60,8,0,224,3,236,5,37,172,
	28,129,132,175,8,0,224,3,0,0,0,0,
	16,129,132,175,8,0,224,3,0,0,0,0,
	15,0,132,48,20,129,132,175,8,0,224,3,
	0,0,0,0,24,129,132,175,8,0,224,3,
	0,0,0,0,32,129,132,175,8,0,224,3,
	0,0,0,0,33,72,128,0,33,80,160,0,
	33,88,192,0,7,162,4,60,48,1,132,52,
	7,162,8,60,0,1,8,53,20,129,130,143,
	24,129,131,143,128,48,2,0,28,129,130,143,
	3,0,197,52,2,0,96,16,0,0,130,172,
	67,0,197,52,16,129,130,143,0,0,0,0,
	2,0,64,16,33,24,160,0,0,1,99,52,
	36,129,130,143,0,0,0,0,2,0,64,16,
	0,0,0,0,0,4,99,52,32,129,130,143,
	0,0,3,173,3,0,64,16,7,162,5,60,
	0,0,2,173,7,162,5,60,4,1,165,52,
	7,162,6,60,8,1,198,52,255,0,2,60,
	255,255,66,52,7,162,3,60,12,1,99,52,
	7,162,4,60,16,1,132,52,36,16,66,1,
	0,0,169,172,0,0,194,172,43,16,7,0,
	192,16,2,0,0,0,107,172,8,0,224,3,
	0,0,130,172,7,162,3,60,40,1,99,52,
	3,0,2,36,0,163,1,60,20,1,32,172,
	8,0,224,3,0,0,98,172,232,255,189,39,
	16,0,191,175,33,24,0,0,7,162,6,60,
	40,1,198,52,15,0,4,60,63,66,132,52,
	0,0,197,140,0,0,0,0,16,0,162,48,
	7,0,64,20,1,0,99,36,42,16,131,0,
	249,255,64,16,0,0,0,0,2,131,4,60,
	122,33,192,8,240,143,132,36,36,129,130,143,
	0,0,0,0,3,0,64,20,33,24,0,0,
	125,33,192,8,33,16,0,0,1,0,5,36,
	15,0,4,60,63,66,132,52,0,163,2,60,
	20,1,66,140,0,0,0,0,247,255,69,16,
	1,0,99,36,42,16,131,0,249,255,64,16,
	0,0,0,0,0,163,5,60,20,1,165,140,
	2,131,4,60,24,144,132,36,15,63,192,12,
	0,0,0,0,1,0,2,36,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	224,255,189,39,24,0,191,175,33,72,192,0,
	255,31,3,60,255,255,99,52,33,64,0,0,
	36,32,131,0,0,160,2,60,37,32,130,0,
	36,40,163,0,16,0,32,25,37,40,162,0,
	0,0,134,144,0,0,167,144,0,0,0,0,
	7,0,199,16,1,0,165,36,2,131,4,60,
	72,144,132,36,15,63,192,12,33,40,0,1,
	157,33,192,8,1,0,2,36,1,0,8,37,
	42,16,9,1,242,255,64,20,1,0,132,36,
	33,16,0,0,24,0,191,143,32,0,189,39,
	8,0,224,3,0,0,0,0,0,163,2,60,
	232,5,66,140,152,255,189,39,80,0,180,175,
	120,0,180,143,64,0,176,175,33,128,160,0,
	68,0,177,175,33,136,192,0,72,0,178,175,
	33,144,224,0,100,0,191,175,96,0,190,175,
	92,0,183,175,88,0,182,175,84,0,181,175,
	76,0,179,175,12,0,64,16,16,0,164,175,
	0,163,2,60,236,5,66,140,0,0,0,0,
	7,0,64,16,0,0,0,0,0,163,2,60,
	236,5,66,140,0,0,0,0,1,8,66,44,
	10,0,64,20,16,0,2,60,0,163,5,60,
	232,5,165,140,0,163,6,60,236,5,198,140,
	2,131,4,60,15,63,192,12,124,144,132,36,
	7,35,192,8,0,0,0,0,16,0,168,143,
	0,0,0,0,43,16,72,0,6,0,64,16,
	0,0,0,0,2,131,4,60,15,63,192,12,
	172,144,132,36,7,35,192,8,0,0,0,0,
	224,132,130,143,0,0,0,0,11,0,64,20,
	0,0,0,0,0,163,4,60,236,5,132,140,
	13,8,192,12,0,0,0,0,255,31,3,60,
	255,255,99,52,36,16,67,0,0,160,3,60,
	37,16,67,0,224,132,130,175,228,132,130,143,
	0,0,0,0,11,0,64,20,0,0,0,0,
	0,163,4,60,236,5,132,140,13,8,192,12,
	0,0,0,0,255,31,3,60,255,255,99,52,
	36,16,67,0,0,160,3,60,37,16,67,0,
	228,132,130,175,224,132,133,143,0,163,6,60,
	232,5,198,140,228,132,135,143,2,131,4,60,
	15,63,192,12,208,144,132,36,16,129,133,143,
	20,129,134,143,2,131,4,60,15,63,192,12,
	8,145,132,36,7,162,2,60,232,0,66,52,
	0,0,83,140,1,0,3,130,105,0,2,36,
	7,0,98,20,251,255,2,60,1,0,2,36,
	36,129,130,175,4,0,2,60,0,8,66,52,
	10,34,192,8,37,152,98,2,36,129,128,175,
	255,247,66,52,36,152,98,2,7,162,2,60,
	232,0,66,52,0,0,83,172,0,0,5,130,
	114,0,2,36,3,0,162,16,82,0,2,36,
	3,0,162,20,119,0,2,36,42,34,192,8,
	33,176,0,0,3,0,162,16,87,0,2,36,
	3,0,162,20,108,0,2,36,42,34,192,8,
	1,0,22,36,3,0,162,16,76,0,2,36,
	3,0,162,20,116,0,2,36,42,34,192,8,
	2,0,22,36,118,0,162,16,84,0,2,36,
	116,0,162,16,0,0,0,0,2,131,4,60,
	15,63,192,12,52,145,132,36,7,35,192,8,
	0,0,0,0,0,0,38,130,0,0,0,0,
	12,0,192,16,99,0,2,36,3,0,194,16,
	67,0,2,36,4,0,194,20,33,152,0,0,
	5,0,19,36,61,34,192,8,5,0,21,36,
	2,131,1,60,80,155,50,160,61,34,192,8,
	33,168,0,0,33,168,0,0,5,0,19,36,
	2,131,1,60,80,155,32,160,16,0,168,143,
	0,163,18,60,236,5,82,142,0,0,0,0,
	197,0,0,17,255,255,20,37,255,255,194,38,
	2,0,87,44,2,0,30,36,33,128,160,2,
	42,16,112,2,73,0,64,20,0,0,0,0,
	42,0,224,18,5,0,2,36,13,0,2,22,
	0,0,0,0,25,0,64,26,33,136,0,0,
	224,132,130,143,0,0,0,0,33,16,81,0,
	0,0,81,160,1,0,49,38,42,16,50,2,
	249,255,64,20,33,48,64,2,105,34,192,8,
	0,0,0,0,2,131,3,60,33,24,112,0,
	80,155,99,144,0,0,0,0,9,0,64,26,
	33,136,0,0,224,132,130,143,0,0,0,0,
	33,16,81,0,1,0,49,38,0,0,67,160,
	42,16,50,2,249,255,64,20,0,0,0,0,
	33,48,64,2,0,163,4,60,232,5,132,140,
	224,132,133,143,0,0,0,0,28,33,192,12,
	1,0,7,36,76,33,192,12,0,0,0,0,
	83,33,192,12,0,0,0,0,147,0,64,20,
	0,0,0,0,3,0,192,18,33,48,64,2,
	22,0,222,22,0,0,0,0,0,163,4,60,
	232,5,132,140,228,132,133,143,0,0,0,0,
	28,33,192,12,33,56,0,0,76,33,192,12,
	0,0,0,0,83,33,192,12,0,0,0,0,
	131,0,64,20,0,0,0,0,8,0,222,22,
	0,0,0,0,224,132,132,143,228,132,133,143,
	0,0,0,0,129,33,192,12,33,48,64,2,
	122,0,64,20,0,0,0,0,1,0,16,38,
	42,16,112,2,185,255,64,16,0,0,0,0,
	255,255,148,38,255,255,2,36,178,255,130,22,
	33,128,160,2,7,35,192,8,0,0,0,0,
	180,10,192,12,0,0,0,0,34,11,192,12,
	1,0,4,36,0,0,34,130,0,0,0,0,
	6,0,64,16,33,184,0,0,24,0,160,175,
	2,131,1,60,88,155,52,164,171,34,192,8,
	33,176,0,0,6,0,23,36,4,0,2,36,
	24,0,160,175,2,131,1,60,88,155,34,164,
	33,176,0,0,0,8,30,36,24,0,177,143,
	0,0,0,0,42,16,241,2,83,0,64,20,
	64,16,17,0,2,131,8,60,88,155,8,37,
	33,168,72,0,0,0,178,150,0,0,0,0,
	26,0,210,3,2,0,64,22,0,0,0,0,
	13,0,7,0,255,255,1,36,4,0,65,22,
	0,128,1,60,2,0,193,23,0,0,0,0,
	13,0,6,0,18,16,0,0,16,0,168,143,
	0,0,0,0,24,0,72,0,33,56,192,2,
	33,128,0,0,0,163,19,60,4,1,115,142,
	0,163,4,60,232,5,132,140,224,132,133,143,
	18,160,0,0,0,0,0,0,0,0,0,0,
	28,33,192,12,33,48,64,2,10,0,128,26,
	0,0,0,0,76,33,192,12,0,0,0,0,
	83,33,192,12,0,0,0,0,48,0,64,20,
	1,0,16,38,42,16,20,2,248,255,64,20,
	0,0,0,0,2,131,5,60,140,145,165,36,
	0,163,16,60,4,1,16,142,3,0,192,18,
	0,0,0,0,2,131,5,60,128,145,165,36,
	2,131,4,60,96,145,132,36,15,63,192,12,
	33,48,64,2,19,0,19,18,24,0,146,2,
	18,24,0,0,35,16,19,2,0,0,0,0,
	27,0,98,0,2,0,64,20,0,0,0,0,
	13,0,7,0,18,16,0,0,2,131,4,60,
	152,145,132,36,64,41,2,0,35,40,162,0,
	128,40,5,0,33,40,162,0,15,63,192,12,
	192,40,5,0,255,34,192,8,2,0,181,38,
	2,131,4,60,168,145,132,36,15,63,192,12,
	2,0,181,38,1,0,49,38,42,16,241,2,
	178,255,64,16,0,0,0,0,1,0,214,38,
	2,0,194,42,166,255,64,20,0,0,0,0,
	100,0,191,143,96,0,190,143,92,0,183,143,
	88,0,182,143,84,0,181,143,80,0,180,143,
	76,0,179,143,72,0,178,143,68,0,177,143,
	64,0,176,143,8,0,224,3,104,0,189,39,
	0,0,0,0,43,16,134,0,0,0,164,175,
	4,0,165,175,8,0,166,175,7,0,64,20,
	12,0,167,175,43,16,196,0,5,0,64,20,
	1,0,2,36,43,16,167,0,2,0,64,16,
	43,16,229,0,255,255,2,36,8,0,224,3,
	0,0,0,0,232,255,189,39,3,131,4,60,
	208,12,132,36,170,0,5,36,16,0,191,175,
	144,71,192,12,60,0,6,36,2,131,6,60,
	112,155,198,36,2,131,2,60,212,246,66,140,
	2,131,3,60,216,246,99,132,0,0,194,172,
	4,0,195,164,2,131,2,60,138,155,66,148,
	2,131,3,60,132,155,99,148,2,131,4,60,
	134,155,132,148,2,131,5,60,136,155,165,148,
	3,131,1,60,216,12,34,164,2,131,2,60,
	130,155,66,148,3,131,10,60,218,12,74,37,
	3,0,199,136,0,0,199,152,4,0,200,128,
	5,0,201,128,3,0,71,169,0,0,71,185,
	4,0,72,161,5,0,73,161,3,131,1,60,
	238,12,35,164,3,131,1,60,242,12,36,164,
	3,131,1,60,246,12,37,164,3,131,1,60,
	240,12,34,164,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,3,131,2,60,
	216,12,66,140,3,131,3,60,220,12,99,140,
	3,131,1,60,208,12,34,172,3,131,1,60,
	212,12,35,172,3,131,2,60,238,12,66,148,
	3,131,3,60,240,12,99,148,3,131,4,60,
	242,12,132,148,232,255,189,39,16,0,176,175,
	3,131,1,60,234,12,35,164,24,133,131,143,
	20,0,191,175,3,131,1,60,224,12,32,172,
	3,131,1,60,228,12,32,172,3,131,1,60,
	248,12,32,172,3,131,1,60,252,12,32,172,
	3,131,1,60,8,13,32,164,3,131,1,60,
	4,13,32,164,3,131,1,60,232,12,34,164,
	33,16,68,0,3,131,1,60,236,12,36,164,
	3,131,1,60,244,12,34,164,8,0,96,24,
	1,0,16,36,150,35,192,12,33,32,0,2,
	24,133,130,143,1,0,16,38,42,16,80,0,
	250,255,64,16,0,0,0,0,206,35,192,12,
	0,0,0,0,52,36,192,12,0,0,0,0,
	1,0,2,36,3,131,1,60,0,13,34,164,
	3,0,2,36,3,131,1,60,2,13,32,164,
	3,131,1,60,20,13,34,172,2,131,1,60,
	164,247,34,172,20,0,191,143,16,0,176,143,
	8,0,224,3,24,0,189,39,224,255,189,39,
	20,0,177,175,33,136,128,0,16,0,176,175,
	192,129,17,0,3,131,4,60,16,13,132,36,
	33,32,4,2,187,0,5,36,24,0,191,175,
	144,71,192,12,128,0,6,36,2,131,2,60,
	140,155,66,148,100,0,3,36,3,131,1,60,
	33,8,48,0,24,13,35,172,0,18,2,0,
	37,16,34,2,3,131,1,60,33,8,48,0,
	16,13,34,164,22,36,192,12,33,32,32,2,
	4,0,2,36,64,138,17,0,3,131,1,60,
	33,8,48,0,20,13,34,172,2,131,1,60,
	33,8,49,0,164,247,34,172,3,131,1,60,
	33,8,48,0,52,13,32,172,3,131,1,60,
	33,8,48,0,56,13,32,172,3,131,1,60,
	33,8,48,0,106,13,32,164,3,131,1,60,
	33,8,48,0,110,13,32,164,3,131,1,60,
	33,8,48,0,114,13,32,164,3,131,1,60,
	33,8,48,0,120,13,32,172,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,24,133,130,143,216,255,189,39,
	20,0,177,175,1,0,17,36,36,0,191,175,
	32,0,180,175,28,0,179,175,24,0,178,175,
	55,0,64,24,16,0,176,175,3,131,20,60,
	228,12,148,38,3,131,2,60,56,13,66,36,
	128,0,83,36,124,0,82,36,128,0,16,36,
	0,0,130,142,0,0,0,0,6,0,34,22,
	33,32,32,2,0,0,64,174,101,36,192,12,
	0,0,96,174,8,36,192,8,128,0,115,38,
	3,131,4,60,33,32,144,0,40,13,132,140,
	3,131,5,60,33,40,176,0,44,13,165,140,
	244,255,134,142,248,255,135,142,20,35,192,12,
	0,0,0,0,17,0,64,20,33,32,32,2,
	3,131,3,60,33,24,112,0,48,13,99,148,
	3,131,2,60,33,16,80,0,16,13,66,148,
	0,0,0,0,8,0,98,20,0,0,0,0,
	3,131,1,60,33,8,48,0,106,13,32,164,
	101,36,192,12,33,32,32,2,8,36,192,8,
	128,0,115,38,0,0,64,174,125,36,192,12,
	0,0,96,174,128,0,115,38,128,0,82,38,
	24,133,130,143,1,0,49,38,42,16,81,0,
	210,255,64,16,128,0,16,38,36,0,191,143,
	32,0,180,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	40,0,189,39,192,33,4,0,3,131,2,60,
	28,13,66,36,33,24,130,0,3,131,5,60,
	208,12,165,140,3,131,6,60,212,12,198,140,
	0,0,101,172,4,0,102,172,12,0,66,36,
	3,131,3,60,224,12,99,140,33,16,130,0,
	3,131,1,60,33,8,36,0,36,13,35,172,
	3,131,3,60,216,12,99,140,3,131,5,60,
	220,12,165,140,0,0,67,172,4,0,69,172,
	3,131,2,60,33,16,68,0,16,13,66,148,
	3,131,1,60,33,8,36,0,8,0,224,3,
	48,13,34,164,24,133,130,143,224,255,189,39,
	20,0,177,175,1,0,17,36,24,0,191,175,
	38,0,64,24,16,0,176,175,128,0,16,36,
	3,131,4,60,33,32,144,0,40,13,132,140,
	3,131,5,60,33,40,176,0,44,13,165,140,
	3,131,6,60,216,12,198,140,3,131,7,60,
	220,12,231,140,20,35,192,12,0,0,0,0,
	18,0,64,20,0,0,0,0,3,131,3,60,
	33,24,112,0,48,13,99,148,3,131,2,60,
	33,16,80,0,16,13,66,148,0,0,0,0,
	9,0,98,20,0,0,0,0,3,131,2,60,
	33,16,80,0,20,13,66,140,0,0,0,0,
	3,0,64,16,0,0,0,0,203,36,192,12,
	33,32,32,2,24,133,130,143,1,0,49,38,
	42,16,81,0,221,255,64,16,128,0,16,38,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,192,41,4,0,
	3,131,3,60,33,24,101,0,20,13,99,140,
	4,0,2,36,16,0,98,20,240,255,189,39,
	1,0,2,36,64,26,4,0,3,131,1,60,
	33,8,37,0,20,13,34,172,2,131,1,60,
	33,8,35,0,164,247,34,172,1,0,2,36,
	3,131,1,60,33,8,37,0,110,13,34,164,
	3,131,1,60,33,8,37,0,112,13,32,164,
	8,0,224,3,16,0,189,39,224,255,189,39,
	24,0,178,175,33,144,128,0,16,0,176,175,
	192,129,18,0,28,0,191,175,20,0,177,175,
	3,131,2,60,33,16,80,0,20,13,66,140,
	0,0,0,0,18,0,64,16,4,0,17,36,
	16,0,81,16,254,255,66,36,2,0,66,44,
	4,0,64,16,64,18,18,0,161,36,192,12,
	0,0,0,0,64,18,18,0,3,131,1,60,
	33,8,48,0,20,13,49,172,2,131,1,60,
	33,8,34,0,164,247,49,172,3,131,1,60,
	33,8,48,0,110,13,32,164,28,0,191,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,3,131,4,60,
	208,12,132,140,3,131,5,60,212,12,165,140,
	3,131,6,60,216,12,198,140,3,131,7,60,
	220,12,231,140,232,255,189,39,16,0,191,175,
	20,35,192,12,0,0,0,0,10,0,64,20,
	1,0,2,36,3,131,1,60,252,12,34,172,
	1,0,2,36,3,131,1,60,4,13,34,164,
	3,131,1,60,6,13,32,164,197,36,192,8,
	1,0,2,36,3,131,2,60,248,12,66,140,
	0,0,0,0,9,0,64,20,1,0,2,36,
	72,37,192,12,0,0,0,0,1,0,2,36,
	3,131,1,60,8,13,34,164,3,131,1,60,
	10,13,32,164,1,0,2,36,3,131,1,60,
	248,12,34,172,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,224,255,189,39,
	20,0,177,175,33,136,128,0,16,0,176,175,
	192,129,17,0,24,0,191,175,3,131,2,60,
	33,16,80,0,114,13,66,132,0,0,0,0,
	5,0,64,16,1,0,2,36,3,131,1,60,
	33,8,48,0,67,37,192,8,56,13,34,172,
	3,131,4,60,208,12,132,36,3,131,2,60,
	64,13,66,36,33,24,2,2,3,131,1,60,
	33,8,48,0,60,13,32,164,0,0,133,140,
	4,0,134,140,0,0,101,172,4,0,102,172,
	12,0,66,36,3,131,3,60,224,12,99,140,
	33,16,2,2,3,131,1,60,33,8,48,0,
	72,13,35,172,3,131,3,60,216,12,99,140,
	3,131,5,60,220,12,165,140,0,0,67,172,
	4,0,69,172,3,131,2,60,33,16,80,0,
	16,13,66,148,3,131,1,60,33,8,48,0,
	84,13,34,164,0,0,132,140,3,131,5,60,
	212,12,165,140,3,131,6,60,216,12,198,140,
	3,131,7,60,220,12,231,140,20,35,192,12,
	0,0,0,0,5,0,64,20,0,0,0,0,
	3,131,1,60,33,8,48,0,22,37,192,8,
	86,13,32,164,3,131,2,60,228,12,66,140,
	2,131,3,60,128,155,99,148,192,17,2,0,
	3,131,1,60,33,8,34,0,108,13,34,148,
	0,0,0,0,33,16,67,0,3,131,1,60,
	33,8,48,0,86,13,34,164,3,131,2,60,
	232,12,66,148,192,129,17,0,3,131,1,60,
	33,8,48,0,88,13,34,164,3,131,2,60,
	234,12,66,148,33,32,32,2,3,131,1,60,
	33,8,48,0,90,13,34,164,3,131,3,60,
	236,12,99,148,3,131,2,60,33,16,80,0,
	52,13,66,140,3,131,5,60,60,13,165,36,
	3,131,1,60,33,8,48,0,52,13,32,172,
	3,131,1,60,33,8,48,0,96,13,34,172,
	3,131,1,60,33,8,48,0,92,13,35,164,
	3,131,2,60,252,12,66,140,3,131,1,60,
	33,8,48,0,100,13,34,172,80,40,192,12,
	33,40,5,2,1,0,2,36,3,131,1,60,
	33,8,48,0,56,13,32,172,3,131,1,60,
	33,8,48,0,114,13,34,164,3,131,1,60,
	33,8,48,0,116,13,32,164,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,232,255,189,39,128,0,2,36,
	3,131,4,60,228,12,132,140,3,131,5,60,
	104,13,165,36,16,0,191,175,192,25,4,0,
	3,131,1,60,33,8,35,0,104,13,34,164,
	151,40,192,12,33,40,101,0,2,131,4,60,
	15,63,192,12,12,146,132,36,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,16,0,191,175,102,37,192,12,
	0,0,0,0,13,38,192,12,0,0,0,0,
	16,0,191,143,24,0,189,39,8,0,224,3,
	0,0,0,0,24,133,130,143,208,255,189,39,
	24,0,178,175,33,144,0,0,28,0,179,175,
	1,0,19,36,44,0,191,175,40,0,182,175,
	36,0,181,175,32,0,180,175,20,0,177,175,
	110,0,64,24,16,0,176,175,3,131,21,60,
	216,12,181,38,3,131,22,60,16,13,214,38,
	128,0,208,38,128,0,20,36,192,17,18,0,
	3,131,4,60,33,32,148,0,40,13,132,140,
	3,131,5,60,33,40,180,0,44,13,165,140,
	0,0,166,142,3,131,7,60,220,12,231,140,
	0,0,0,0,20,35,192,12,33,136,86,0,
	10,0,64,20,0,0,0,0,3,131,3,60,
	33,24,116,0,48,13,99,148,3,131,2,60,
	33,16,84,0,16,13,66,148,0,0,0,0,
	74,0,98,16,0,0,0,0,4,0,2,142,
	0,0,0,0,70,0,64,16,0,0,0,0,
	12,0,4,142,16,0,5,142,0,0,166,142,
	3,131,7,60,220,12,231,140,20,35,192,12,
	0,0,0,0,61,0,65,4,0,0,0,0,
	58,0,64,18,0,0,0,0,12,0,4,142,
	16,0,5,142,12,0,38,142,16,0,39,142,
	20,35,192,12,0,0,0,0,50,0,64,4,
	0,0,0,0,12,0,4,142,16,0,5,142,
	12,0,38,142,16,0,39,142,20,35,192,12,
	0,0,0,0,43,0,64,20,0,0,0,0,
	20,0,5,142,8,0,3,142,20,0,36,142,
	8,0,34,142,33,40,163,0,33,32,130,0,
	43,16,164,0,33,0,64,20,0,0,0,0,
	32,0,164,20,0,0,0,0,24,0,4,142,
	28,0,5,142,24,0,38,142,28,0,39,142,
	20,35,192,12,0,0,0,0,23,0,64,4,
	0,0,0,0,24,0,4,142,28,0,5,142,
	24,0,38,142,28,0,39,142,20,35,192,12,
	0,0,0,0,16,0,64,20,0,0,0,0,
	32,0,4,150,32,0,35,150,0,0,0,0,
	43,16,131,0,9,0,64,20,0,0,0,0,
	8,0,131,20,0,0,0,0,0,0,2,150,
	0,0,35,150,0,0,0,0,43,16,67,0,
	2,0,64,16,0,0,0,0,33,144,96,2,
	128,0,16,38,24,133,130,143,1,0,115,38,
	42,16,83,0,154,255,64,16,128,0,148,38,
	3,131,1,60,228,12,50,172,12,0,64,22,
	192,17,18,0,3,131,2,60,216,12,66,140,
	3,131,3,60,220,12,99,140,3,131,1,60,
	208,12,34,172,3,131,1,60,212,12,35,172,
	3,131,1,60,3,38,192,8,224,12,32,172,
	3,131,3,60,33,24,98,0,28,13,99,140,
	3,131,4,60,33,32,130,0,32,13,132,140,
	3,131,1,60,208,12,35,172,3,131,1,60,
	212,12,36,172,3,131,3,60,33,24,98,0,
	36,13,99,140,3,131,1,60,33,8,34,0,
	24,13,34,140,0,0,0,0,33,24,98,0,
	3,131,1,60,224,12,35,172,44,0,191,143,
	40,0,182,143,36,0,181,143,32,0,180,143,
	28,0,179,143,24,0,178,143,20,0,177,143,
	16,0,176,143,8,0,224,3,48,0,189,39,
	24,133,130,143,208,255,189,39,36,0,181,175,
	1,0,21,36,44,0,191,175,40,0,182,175,
	32,0,180,175,28,0,179,175,24,0,178,175,
	20,0,177,175,82,0,64,24,16,0,176,175,
	3,131,22,60,216,12,214,38,3,131,2,60,
	48,13,66,36,128,0,84,36,96,0,83,36,
	124,0,82,36,120,0,81,36,128,0,16,36,
	0,0,36,142,0,0,69,142,0,0,198,142,
	3,131,7,60,220,12,231,140,20,35,192,12,
	0,0,0,0,55,0,64,20,0,0,0,0,
	0,0,131,150,0,0,98,150,0,0,0,0,
	50,0,98,20,0,0,0,0,3,131,4,60,
	33,32,144,0,28,13,132,140,3,131,5,60,
	33,40,176,0,32,13,165,140,248,255,198,142,
	3,131,7,60,212,12,231,140,20,35,192,12,
	0,0,0,0,37,0,64,16,0,0,0,0,
	8,0,196,142,3,131,3,60,33,24,112,0,
	36,13,99,140,0,0,0,0,43,16,131,0,
	29,0,64,20,0,0,0,0,27,0,131,20,
	0,0,0,0,0,0,196,142,3,131,5,60,
	220,12,165,140,0,0,38,142,0,0,71,142,
	20,35,192,12,0,0,0,0,16,0,64,4,
	0,0,0,0,0,0,196,142,3,131,5,60,
	220,12,165,140,0,0,38,142,0,0,71,142,
	20,35,192,12,0,0,0,0,9,0,64,20,
	0,0,0,0,0,0,99,150,0,0,130,150,
	0,0,0,0,43,16,67,0,3,0,64,20,
	0,0,0,0,22,36,192,12,33,32,160,2,
	128,0,148,38,128,0,115,38,128,0,82,38,
	128,0,49,38,24,133,130,143,1,0,181,38,
	42,16,85,0,185,255,64,16,128,0,16,38,
	44,0,191,143,40,0,182,143,36,0,181,143,
	32,0,180,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	48,0,189,39,216,255,189,39,3,131,4,60,
	0,13,132,36,32,0,191,175,28,0,179,175,
	24,0,178,175,20,0,177,175,16,0,176,175,
	0,0,130,132,0,0,0,0,14,0,64,16,
	0,0,0,0,3,131,2,60,2,13,66,148,
	3,131,3,60,234,12,99,148,1,0,66,36,
	3,131,1,60,2,13,34,164,255,255,66,48,
	43,16,67,0,3,0,64,20,0,0,0,0,
	11,39,192,12,0,0,128,164,3,131,4,60,
	8,13,132,36,0,0,130,132,0,0,0,0,
	14,0,64,16,0,0,0,0,3,131,2,60,
	10,13,66,148,3,131,3,60,234,12,99,148,
	1,0,66,36,3,131,1,60,10,13,34,164,
	255,255,66,48,43,16,67,0,3,0,64,20,
	0,0,0,0,24,39,192,12,0,0,128,164,
	3,131,4,60,4,13,132,36,0,0,130,132,
	0,0,0,0,14,0,64,16,0,0,0,0,
	3,131,2,60,6,13,66,148,3,131,3,60,
	244,12,99,148,1,0,66,36,3,131,1,60,
	6,13,34,164,255,255,66,48,43,16,67,0,
	3,0,64,20,0,0,0,0,37,39,192,12,
	0,0,128,164,24,133,130,143,0,0,0,0,
	78,0,64,24,1,0,17,36,3,131,2,60,
	16,13,66,36,226,0,83,36,128,0,82,36,
	128,0,16,36,3,131,2,60,33,16,80,0,
	110,13,66,132,0,0,0,0,18,0,64,16,
	0,0,0,0,3,131,2,60,33,16,80,0,
	112,13,66,148,0,0,0,0,1,0,66,36,
	96,0,66,166,3,131,3,60,236,12,99,148,
	255,255,66,48,43,16,67,0,6,0,64,20,
	0,0,0,0,3,131,1,60,33,8,48,0,
	110,13,32,164,79,39,192,12,33,32,32,2,
	3,131,2,60,33,16,80,0,106,13,66,132,
	0,0,0,0,18,0,64,16,0,0,0,0,
	3,131,2,60,33,16,80,0,108,13,66,148,
	0,0,0,0,1,0,66,36,92,0,66,166,
	3,131,3,60,232,12,99,148,255,255,66,48,
	43,16,67,0,6,0,64,20,0,0,0,0,
	3,131,1,60,33,8,48,0,106,13,32,164,
	129,39,192,12,33,32,32,2,0,0,98,134,
	0,0,0,0,16,0,64,16,0,0,0,0,
	3,131,2,60,33,16,80,0,116,13,66,148,
	0,0,0,0,1,0,66,36,100,0,66,166,
	3,131,3,60,246,12,99,148,255,255,66,48,
	43,16,67,0,4,0,64,20,0,0,0,0,
	0,0,96,166,191,39,192,12,33,32,32,2,
	128,0,115,38,128,0,82,38,24,133,130,143,
	1,0,49,38,42,16,81,0,185,255,64,16,
	128,0,16,38,32,0,191,143,28,0,179,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,40,0,189,39,232,255,189,39,
	16,0,191,175,52,36,192,12,0,0,0,0,
	1,0,2,36,3,131,1,60,0,13,34,164,
	3,131,1,60,2,13,32,164,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,16,0,191,175,72,37,192,12,
	0,0,0,0,1,0,2,36,3,131,1,60,
	8,13,34,164,3,131,1,60,10,13,32,164,
	16,0,191,143,24,0,189,39,8,0,224,3,
	0,0,0,0,240,255,189,39,3,131,1,60,
	248,12,32,172,3,131,1,60,252,12,32,172,
	8,0,224,3,16,0,189,39,24,133,130,143,
	224,255,189,39,20,0,177,175,1,0,17,36,
	24,0,191,175,23,0,64,24,16,0,176,175,
	128,0,16,36,3,131,4,60,33,32,144,0,
	40,13,132,140,3,131,5,60,33,40,176,0,
	44,13,165,140,3,131,6,60,216,12,198,140,
	3,131,7,60,220,12,231,140,20,35,192,12,
	0,0,0,0,3,0,64,20,1,0,49,38,
	74,39,192,8,1,0,2,36,24,133,130,143,
	0,0,0,0,42,16,81,0,236,255,64,16,
	128,0,16,38,33,16,0,0,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,232,255,189,39,192,41,4,0,
	16,0,191,175,3,131,3,60,33,24,101,0,
	20,13,99,140,1,0,2,36,16,0,98,20,
	2,0,2,36,64,26,4,0,3,131,1,60,
	33,8,37,0,20,13,34,172,2,131,1,60,
	33,8,35,0,164,247,34,172,1,0,2,36,
	3,131,1,60,33,8,37,0,110,13,34,164,
	3,131,1,60,33,8,37,0,125,39,192,8,
	112,13,32,164,21,0,98,20,3,0,3,36,
	64,18,4,0,3,131,1,60,33,8,37,0,
	20,13,35,172,2,131,1,60,33,8,34,0,
	164,247,35,172,3,131,2,60,33,16,69,0,
	120,13,66,140,0,0,0,0,1,0,66,36,
	3,131,1,60,33,8,37,0,44,39,192,12,
	120,13,34,172,3,0,64,16,0,0,0,0,
	161,36,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	224,255,189,39,16,0,176,175,33,128,128,0,
	20,0,177,175,3,131,17,60,208,12,49,38,
	24,0,191,175,0,0,36,142,3,131,5,60,
	212,12,165,140,3,131,6,60,216,12,198,140,
	3,131,7,60,220,12,231,140,20,35,192,12,
	0,0,0,0,33,32,0,2,22,36,192,12,
	1,0,80,44,92,37,192,12,0,0,0,0,
	206,35,192,12,0,0,0,0,33,0,0,22,
	0,0,0,0,0,0,36,142,3,131,5,60,
	212,12,165,140,3,131,6,60,216,12,198,140,
	3,131,7,60,220,12,231,140,20,35,192,12,
	0,0,0,0,22,0,64,20,0,0,0,0,
	3,131,2,60,238,12,66,148,3,131,3,60,
	240,12,99,148,3,131,4,60,242,12,132,148,
	3,131,1,60,232,12,34,164,3,131,1,60,
	234,12,35,164,3,131,1,60,161,36,192,12,
	236,12,36,164,3,131,1,60,52,36,192,12,
	8,13,32,164,1,0,2,36,3,131,1,60,
	0,13,34,164,3,131,1,60,2,13,32,164,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,232,255,189,39,
	192,17,4,0,16,0,191,175,3,131,1,60,
	33,8,34,0,56,13,34,140,0,0,0,0,
	3,0,64,16,0,0,0,0,203,36,192,12,
	0,0,0,0,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,3,131,1,60,
	248,12,32,172,3,131,1,60,8,0,224,3,
	8,13,32,164,232,255,189,39,192,25,4,0,
	1,0,2,36,16,0,191,175,3,131,1,60,
	33,8,35,0,203,36,192,12,52,13,34,172,
	16,0,191,143,24,0,189,39,8,0,224,3,
	0,0,0,0,192,33,4,0,3,131,2,60,
	28,13,66,36,33,24,130,0,4,0,166,140,
	8,0,167,140,0,0,102,172,4,0,103,172,
	12,0,66,36,12,0,163,140,33,16,130,0,
	3,131,1,60,33,8,36,0,36,13,35,172,
	16,0,163,140,20,0,166,140,0,0,67,172,
	4,0,70,172,24,0,163,148,1,0,2,36,
	3,131,1,60,33,8,36,0,106,13,34,164,
	3,131,1,60,33,8,36,0,48,13,35,164,
	26,0,162,148,3,131,1,60,33,8,36,0,
	8,0,224,3,108,13,34,164,28,0,130,148,
	3,131,1,60,232,12,34,164,30,0,130,148,
	3,131,1,60,234,12,34,164,32,0,130,148,
	3,131,1,60,236,12,34,164,40,0,130,140,
	3,131,1,60,8,0,224,3,252,12,34,172,
	224,255,189,39,16,0,176,175,33,128,160,0,
	192,25,4,0,3,131,2,60,16,13,66,36,
	20,0,177,175,33,136,98,0,24,0,191,175,
	4,0,4,142,8,0,5,142,12,0,38,142,
	16,0,39,142,20,35,192,12,0,0,0,0,
	48,0,64,4,1,0,2,36,4,0,4,142,
	8,0,5,142,12,0,38,142,16,0,39,142,
	20,35,192,12,0,0,0,0,40,0,64,20,
	33,16,0,0,12,0,4,142,20,0,35,142,
	0,0,0,0,43,16,131,0,34,0,64,20,
	1,0,2,36,32,0,131,20,33,16,0,0,
	16,0,4,142,20,0,5,142,24,0,38,142,
	28,0,39,142,20,35,192,12,0,0,0,0,
	24,0,64,4,1,0,2,36,16,0,4,142,
	20,0,5,142,24,0,38,142,28,0,39,142,
	20,35,192,12,0,0,0,0,16,0,64,20,
	33,16,0,0,16,0,4,142,20,0,5,142,
	3,131,6,60,216,12,198,140,3,131,7,60,
	220,12,231,140,20,35,192,12,0,0,0,0,
	6,0,64,20,1,0,2,36,24,0,3,150,
	32,0,34,150,0,0,0,0,43,16,67,0,
	1,0,66,56,24,0,191,143,20,0,177,143,
	16,0,176,143,8,0,224,3,32,0,189,39,
	44,133,130,143,216,255,189,39,20,0,177,175,
	33,136,128,0,32,0,180,175,33,160,160,0,
	36,0,191,175,28,0,179,175,24,0,178,175,
	53,0,64,16,16,0,176,175,2,131,19,60,
	192,4,115,38,33,32,96,2,54,21,192,12,
	1,0,5,36,33,128,64,0,8,0,0,22,
	64,26,17,0,2,131,2,60,33,16,67,0,
	176,247,66,140,33,24,99,2,1,0,66,36,
	143,40,192,8,240,242,98,172,8,0,4,142,
	64,146,17,0,20,242,101,38,33,40,69,2,
	172,41,192,12,33,48,128,2,33,24,64,0,
	60,0,98,40,2,0,64,16,0,242,98,38,
	60,0,3,36,33,136,66,2,33,32,32,2,
	33,40,0,2,1,0,2,36,17,0,2,162,
	0,128,98,52,0,0,2,174,6,23,192,12,
	18,0,3,166,10,0,64,20,33,32,0,2,
	2,131,2,60,33,16,82,0,172,247,66,140,
	0,0,0,0,1,0,66,36,152,21,192,12,
	236,0,34,174,143,40,192,8,0,0,0,0,
	2,131,2,60,33,16,82,0,168,247,66,140,
	0,0,0,0,1,0,66,36,232,0,34,174,
	36,0,191,143,32,0,180,143,28,0,179,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,40,0,189,39,44,133,130,143,
	216,255,189,39,20,0,177,175,33,136,128,0,
	32,0,180,175,33,160,160,0,36,0,191,175,
	28,0,179,175,24,0,178,175,53,0,64,16,
	16,0,176,175,2,131,19,60,192,4,115,38,
	33,32,96,2,54,21,192,12,1,0,5,36,
	33,128,64,0,8,0,0,22,64,26,17,0,
	2,131,2,60,33,16,67,0,176,247,66,140,
	33,24,99,2,1,0,66,36,214,40,192,8,
	240,242,98,172,8,0,4,142,64,146,17,0,
	20,242,101,38,33,40,69,2,74,42,192,12,
	33,48,128,2,33,24,64,0,60,0,98,40,
	2,0,64,16,0,242,98,38,60,0,3,36,
	33,136,66,2,33,32,32,2,33,40,0,2,
	1,0,2,36,17,0,2,162,0,128,98,52,
	0,0,2,174,6,23,192,12,18,0,3,166,
	10,0,64,20,33,32,0,2,2,131,2,60,
	33,16,82,0,172,247,66,140,0,0,0,0,
	1,0,66,36,152,21,192,12,236,0,34,174,
	214,40,192,8,0,0,0,0,2,131,2,60,
	33,16,82,0,168,247,66,140,0,0,0,0,
	1,0,66,36,232,0,34,174,36,0,191,143,
	32,0,180,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	40,0,189,39,216,255,189,39,24,0,178,175,
	33,144,128,0,20,0,177,175,33,136,160,0,
	16,0,176,175,33,128,192,0,36,0,191,175,
	32,0,180,175,28,0,179,175,4,0,36,142,
	8,0,37,142,160,133,134,143,2,131,7,60,
	180,211,231,140,20,35,192,12,0,0,0,0,
	11,0,64,20,0,0,0,0,2,131,4,60,
	144,146,132,36,15,63,192,12,33,40,0,2,
	100,129,132,39,108,129,134,39,31,21,192,12,
	6,0,5,38,92,41,192,8,0,0,0,0,
	3,131,20,60,208,12,148,38,0,0,132,142,
	3,131,5,60,212,12,165,140,3,131,6,60,
	216,12,198,140,3,131,7,60,220,12,231,140,
	0,0,0,0,20,35,192,12,192,129,18,0,
	3,131,3,60,33,24,112,0,20,13,99,140,
	0,0,0,0,80,0,96,16,1,0,83,44,
	33,32,64,2,11,40,192,12,33,40,32,2,
	50,0,64,16,33,32,64,2,223,39,192,12,
	33,40,32,2,92,37,192,12,0,0,0,0,
	206,35,192,12,0,0,0,0,0,0,132,142,
	3,131,5,60,212,12,165,140,3,131,6,60,
	216,12,198,140,3,131,7,60,220,12,231,140,
	20,35,192,12,0,0,0,0,16,0,64,16,
	0,0,0,0,14,0,96,18,0,0,0,0,
	3,131,2,60,248,12,66,140,3,131,1,60,
	9,0,64,16,0,13,32,164,3,131,1,60,
	72,37,192,12,4,13,32,164,1,0,2,36,
	3,131,1,60,8,13,34,164,3,131,1,60,
	10,13,32,164,3,131,2,60,228,12,66,140,
	0,0,0,0,38,0,66,22,0,0,0,0,
	254,39,192,12,33,32,32,2,52,36,192,12,
	0,0,0,0,36,0,34,142,0,0,0,0,
	30,0,64,16,0,0,0,0,206,39,192,12,
	0,0,0,0,92,41,192,8,0,0,0,0,
	3,131,4,60,33,32,144,0,40,13,132,140,
	3,131,5,60,33,40,176,0,44,13,165,140,
	3,131,6,60,216,12,198,140,3,131,7,60,
	220,12,231,140,20,35,192,12,0,0,0,0,
	12,0,64,20,0,0,0,0,3,131,3,60,
	33,24,112,0,48,13,99,148,3,131,2,60,
	33,16,80,0,16,13,66,148,0,0,0,0,
	3,0,98,20,0,0,0,0,203,36,192,12,
	33,32,64,2,36,0,191,143,32,0,180,143,
	28,0,179,143,24,0,178,143,20,0,177,143,
	16,0,176,143,8,0,224,3,40,0,189,39,
	224,255,189,39,20,0,177,175,33,136,128,0,
	16,0,176,175,192,129,17,0,24,0,191,175,
	3,131,2,60,33,16,80,0,20,13,66,140,
	0,0,0,0,28,0,64,16,0,0,0,0,
	3,131,4,60,33,32,144,0,40,13,132,140,
	3,131,5,60,33,40,176,0,44,13,165,140,
	3,131,6,60,216,12,198,140,3,131,7,60,
	220,12,231,140,20,35,192,12,0,0,0,0,
	14,0,64,20,0,0,0,0,3,131,3,60,
	33,24,112,0,48,13,99,148,3,131,2,60,
	33,16,80,0,16,13,66,148,0,0,0,0,
	5,0,98,20,0,0,0,0,161,36,192,12,
	0,0,0,0,211,39,192,12,33,32,32,2,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,2,18,5,0,
	0,0,130,160,8,0,224,3,1,0,133,160,
	2,22,5,0,0,0,130,160,2,20,5,0,
	1,0,130,160,2,18,5,0,2,0,130,160,
	8,0,224,3,3,0,133,160,0,0,130,144,
	1,0,131,144,0,18,2,0,8,0,224,3,
	37,16,98,0,0,0,130,144,1,0,131,144,
	2,0,133,144,0,22,2,0,0,28,3,0,
	33,16,67,0,0,42,5,0,3,0,131,144,
	33,16,69,0,8,0,224,3,37,16,67,0,
	224,255,189,39,16,0,176,175,33,128,128,0,
	24,0,191,175,20,0,177,175,48,129,135,39,
	3,0,226,136,0,0,226,152,4,0,227,128,
	5,0,228,128,3,0,2,170,0,0,2,186,
	4,0,3,162,5,0,4,162,3,0,162,136,
	0,0,162,152,4,0,163,128,5,0,164,128,
	9,0,2,170,6,0,2,186,10,0,3,162,
	11,0,4,162,12,0,4,38,38,0,5,36,
	144,41,192,12,33,136,192,0,14,0,4,38,
	144,41,192,12,66,66,5,36,17,0,4,38,
	33,40,0,0,3,0,2,36,144,41,192,12,
	16,0,2,162,19,0,0,162,20,0,0,162,
	40,0,34,142,0,0,0,0,43,32,2,0,
	36,0,34,142,0,0,0,0,3,0,64,16,
	33,24,128,0,218,41,192,8,128,0,130,52,
	33,16,96,0,21,0,2,162,4,0,37,150,
	0,0,0,0,144,41,192,12,22,0,4,38,
	9,0,34,138,6,0,34,154,10,0,35,130,
	11,0,36,130,27,0,2,170,24,0,2,186,
	28,0,3,162,29,0,4,162,12,0,37,142,
	0,0,0,0,148,41,192,12,30,0,4,38,
	16,0,37,150,0,0,0,0,144,41,192,12,
	34,0,4,38,21,0,34,138,18,0,34,154,
	22,0,35,130,23,0,36,130,39,0,2,170,
	36,0,2,186,40,0,3,162,41,0,4,162,
	24,0,37,150,0,0,0,0,144,41,192,12,
	42,0,4,38,26,0,37,150,0,0,0,0,
	144,41,192,12,44,0,4,38,28,0,37,150,
	0,0,0,0,144,41,192,12,46,0,4,38,
	30,0,37,150,0,0,0,0,144,41,192,12,
	48,0,4,38,32,0,37,150,0,0,0,0,
	144,41,192,12,50,0,4,38,52,0,2,36,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,224,255,189,39,
	16,0,176,175,33,128,160,0,24,0,191,175,
	20,0,177,175,21,0,2,146,33,136,128,0,
	1,0,66,48,40,0,34,174,22,0,2,146,
	22,0,4,38,128,0,66,48,156,41,192,12,
	36,0,34,174,4,0,34,166,27,0,2,138,
	24,0,2,154,28,0,3,130,29,0,4,130,
	9,0,34,170,6,0,34,186,10,0,35,162,
	11,0,36,162,161,41,192,12,30,0,4,38,
	34,0,4,38,156,41,192,12,12,0,34,174,
	16,0,34,166,39,0,2,138,36,0,2,154,
	40,0,3,130,41,0,4,130,21,0,34,170,
	18,0,34,186,22,0,35,162,23,0,36,162,
	156,41,192,12,42,0,4,38,44,0,4,38,
	156,41,192,12,24,0,34,166,46,0,4,38,
	156,41,192,12,26,0,34,166,48,0,4,38,
	156,41,192,12,28,0,34,166,50,0,4,38,
	156,41,192,12,30,0,34,166,32,0,34,166,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,232,255,189,39,
	16,0,176,175,33,128,128,0,20,0,191,175,
	48,129,134,39,3,0,194,136,0,0,194,152,
	4,0,195,128,5,0,196,128,3,0,2,170,
	0,0,2,186,4,0,3,162,5,0,4,162,
	3,0,162,136,0,0,162,152,4,0,163,128,
	5,0,164,128,9,0,2,170,6,0,2,186,
	10,0,3,162,11,0,4,162,12,0,4,38,
	144,41,192,12,7,0,5,36,14,0,4,38,
	144,41,192,12,66,66,5,36,17,0,4,38,
	33,40,0,0,3,0,2,36,144,41,192,12,
	16,0,2,162,21,0,2,36,128,0,3,36,
	19,0,0,162,20,0,3,162,20,0,191,143,
	16,0,176,143,8,0,224,3,24,0,189,39,
	176,255,189,39,68,0,177,175,64,0,176,175,
	33,128,160,0,72,0,191,175,14,0,3,146,
	66,0,2,36,9,0,98,20,33,136,128,0,
	15,0,2,146,0,0,0,0,6,0,67,20,
	64,26,17,0,16,0,3,146,3,0,2,36,
	11,0,98,16,0,0,0,0,64,26,17,0,
	2,131,2,60,33,16,67,0,184,247,66,140,
	0,0,0,0,1,0,66,36,2,131,1,60,
	33,8,35,0,182,42,192,8,184,247,34,172,
	20,0,3,146,0,0,0,0,5,0,96,16,
	128,0,2,36,21,0,98,16,64,26,17,0,
	179,42,192,8,0,0,0,0,16,0,164,39,
	64,26,17,0,2,131,2,60,33,16,67,0,
	180,247,66,140,0,0,0,0,1,0,66,36,
	2,131,1,60,33,8,35,0,180,247,34,172,
	17,42,192,12,33,40,0,2,33,32,32,2,
	16,0,165,39,222,40,192,12,33,48,0,2,
	182,42,192,8,0,0,0,0,2,131,2,60,
	33,16,67,0,180,247,66,140,0,0,0,0,
	1,0,66,36,2,131,1,60,33,8,35,0,
	180,247,34,172,100,41,192,12,33,32,32,2,
	182,42,192,8,0,0,0,0,112,129,132,39,
	15,63,192,12,0,0,0,0,72,0,191,143,
	68,0,177,143,64,0,176,143,8,0,224,3,
	80,0,189,39,8,0,224,3,0,0,0,0,
	0,0,0,0,0,0,0,0,0,0,0,0,
	1,0,162,48,8,0,64,16,255,255,198,48,
	67,40,5,0,64,16,5,0,33,16,68,0,
	0,0,66,144,0,0,0,0,203,42,192,8,
	33,48,194,0,67,40,5,0,255,255,165,36,
	255,255,2,36,6,0,162,16,255,255,3,36,
	0,0,130,148,2,0,132,36,255,255,165,36,
	252,255,163,20,33,48,194,0,255,255,195,48,
	2,20,6,0,33,48,98,0,255,255,195,48,
	2,20,6,0,33,48,98,0,8,0,224,3,
	255,255,194,48,208,255,189,39,16,0,176,175,
	33,128,128,0,28,0,179,175,33,152,160,0,
	24,0,178,175,33,144,192,0,36,0,181,175,
	33,168,0,2,32,0,180,175,33,160,0,0,
	40,0,191,175,20,0,177,175,12,0,3,142,
	0,0,2,142,0,0,0,0,35,24,98,0,
	42,16,114,0,2,0,64,16,33,136,64,2,
	33,136,96,0,13,0,32,18,33,40,96,2,
	35,144,81,2,8,0,2,142,0,0,4,142,
	33,48,32,2,80,68,192,12,33,32,68,0,
	8,0,2,142,0,0,2,142,0,0,2,142,
	33,152,113,2,33,16,81,0,0,0,2,174,
	0,0,2,142,0,0,0,0,4,0,64,18,
	33,160,130,2,4,0,16,142,233,42,192,8,
	0,0,0,0,18,0,180,166,33,16,0,2,
	40,0,191,143,36,0,181,143,32,0,180,143,
	28,0,179,143,24,0,178,143,20,0,177,143,
	16,0,176,143,8,0,224,3,48,0,189,39,
	224,255,189,39,24,0,178,175,33,144,128,0,
	2,131,4,60,192,4,132,36,36,0,165,175,
	1,0,5,36,28,0,191,175,20,0,177,175,
	54,21,192,12,16,0,176,175,33,136,64,0,
	8,0,32,22,33,40,0,0,2,131,2,60,
	176,5,66,140,0,0,0,0,1,0,66,36,
	2,131,1,60,102,43,192,8,176,5,34,172,
	0,1,3,36,8,0,48,142,8,0,2,36,
	16,0,2,166,6,0,2,36,18,0,2,162,
	4,0,2,36,14,0,3,166,19,0,2,162,
	20,0,3,166,2,131,6,60,212,4,198,36,
	3,0,194,136,0,0,194,152,4,0,195,132,
	25,0,2,170,22,0,2,186,26,0,3,166,
	2,131,1,60,195,211,34,136,176,133,130,155,
	0,0,0,0,31,0,2,170,28,0,2,186,
	32,0,4,38,144,71,192,12,6,0,6,36,
	39,0,162,139,36,0,162,155,0,0,0,0,
	41,0,2,170,38,0,2,186,132,129,133,39,
	3,0,162,136,0,0,162,152,4,0,163,128,
	5,0,164,128,3,0,2,170,0,0,2,186,
	4,0,3,162,5,0,4,162,2,131,5,60,
	212,4,165,36,3,0,162,136,0,0,162,152,
	4,0,163,128,5,0,164,128,9,0,2,170,
	6,0,2,186,10,0,3,162,11,0,4,162,
	33,32,64,2,8,6,2,36,12,0,2,166,
	60,128,2,52,0,0,34,174,60,0,2,36,
	18,0,34,166,74,21,192,12,33,40,32,2,
	3,0,64,20,0,0,0,0,152,21,192,12,
	33,32,32,2,28,0,191,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,216,255,189,39,32,0,180,175,
	33,160,128,0,16,0,176,175,33,128,160,0,
	36,0,191,175,28,0,179,175,24,0,178,175,
	20,0,177,175,8,0,2,142,33,152,192,0,
	33,136,83,0,6,0,35,150,0,1,4,36,
	5,0,100,16,0,2,2,36,113,0,98,16,
	0,0,0,0,15,44,192,8,0,0,0,0,
	24,0,35,150,176,133,130,151,0,0,0,0,
	139,0,98,20,0,0,0,0,26,0,35,150,
	2,131,2,60,194,211,66,148,0,0,0,0,
	133,0,98,20,0,0,0,0,0,0,34,150,
	0,0,0,0,129,0,68,20,8,0,2,36,
	2,0,35,150,0,0,0,0,125,0,98,20,
	6,4,2,36,4,0,35,150,0,0,0,0,
	121,0,98,20,0,0,0,0,2,131,4,60,
	192,4,132,36,54,21,192,12,1,0,5,36,
	33,144,64,0,8,0,64,22,0,0,0,0,
	2,131,2,60,176,5,66,140,0,0,0,0,
	1,0,66,36,2,131,1,60,15,44,192,8,
	176,5,34,172,8,0,5,142,8,0,80,142,
	9,0,162,136,6,0,162,152,10,0,163,128,
	11,0,164,128,3,0,2,170,0,0,2,186,
	4,0,3,162,5,0,4,162,2,131,6,60,
	212,4,198,36,3,0,194,136,0,0,194,152,
	4,0,195,128,5,0,196,128,9,0,2,170,
	6,0,2,186,10,0,3,162,11,0,4,162,
	12,0,4,38,12,0,165,36,33,128,19,2,
	80,68,192,12,244,255,102,38,0,1,2,36,
	0,0,2,166,8,0,2,36,2,0,2,166,
	6,0,2,36,4,0,2,162,4,0,2,36,
	5,0,2,162,0,2,2,36,6,0,2,166,
	2,131,5,60,212,4,165,36,3,0,162,136,
	0,0,162,152,4,0,163,132,11,0,2,170,
	8,0,2,186,12,0,3,166,2,131,1,60,
	195,211,34,136,176,133,130,155,0,0,0,0,
	17,0,2,170,14,0,2,186,11,0,34,138,
	8,0,34,154,12,0,35,134,21,0,2,170,
	18,0,2,186,22,0,3,166,17,0,34,138,
	14,0,34,154,0,0,0,0,27,0,2,170,
	24,0,2,186,33,32,128,2,33,40,64,2,
	60,128,2,52,0,0,66,174,60,0,2,36,
	74,21,192,12,18,0,66,166,38,0,64,20,
	0,0,0,0,152,21,192,12,33,32,64,2,
	15,44,192,8,0,0,0,0,14,0,35,150,
	196,133,130,151,0,0,0,0,29,0,98,20,
	0,0,0,0,16,0,35,150,2,131,2,60,
	214,211,66,148,0,0,0,0,23,0,98,20,
	0,0,0,0,0,0,34,150,0,0,0,0,
	19,0,68,20,8,0,2,36,2,0,35,150,
	0,0,0,0,15,0,98,20,6,4,2,36,
	4,0,35,150,0,0,0,0,11,0,98,20,
	0,0,0,0,68,133,130,143,140,129,134,39,
	11,0,35,138,8,0,35,154,12,0,36,134,
	3,0,195,168,0,0,195,184,4,0,196,164,
	20,0,66,36,152,129,130,175,36,0,191,143,
	32,0,180,143,28,0,179,143,24,0,178,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	40,0,189,39,192,255,189,39,80,0,169,143,
	84,0,168,143,56,0,180,175,33,160,128,0,
	44,0,177,175,88,0,177,143,16,0,164,39,
	52,0,179,175,92,0,179,143,3,131,3,60,
	32,17,99,36,40,0,176,175,33,128,192,0,
	60,0,191,175,48,0,178,175,0,0,98,140,
	8,0,50,142,1,0,66,36,0,0,98,172,
	3,0,162,136,0,0,162,152,4,0,163,128,
	5,0,170,128,3,0,66,170,0,0,66,186,
	4,0,67,162,5,0,74,162,2,131,10,60,
	212,4,74,37,3,0,66,137,0,0,66,153,
	4,0,67,129,5,0,69,129,9,0,66,170,
	6,0,66,186,10,0,67,162,11,0,69,162,
	69,0,2,36,16,0,162,163,17,0,168,163,
	18,0,34,150,240,132,131,143,33,48,0,0,
	25,0,169,163,20,0,66,36,0,66,2,0,
	255,255,66,48,2,18,2,0,37,64,2,1,
	0,74,3,0,255,255,98,48,2,18,2,0,
	37,72,34,1,3,131,2,60,0,17,66,140,
	22,0,160,167,26,0,160,167,18,0,168,167,
	176,133,136,143,1,0,99,36,240,132,131,175,
	20,0,169,167,24,0,162,163,28,0,168,175,
	3,0,226,136,0,0,226,152,0,0,0,0,
	35,0,162,171,32,0,162,187,192,42,192,12,
	20,0,5,36,39,16,2,0,26,0,162,167,
	14,0,2,36,44,0,2,22,8,0,2,36,
	12,0,66,166,19,0,162,139,16,0,162,155,
	23,0,163,139,20,0,163,155,27,0,164,139,
	24,0,164,155,31,0,165,139,28,0,165,155,
	17,0,66,170,14,0,66,186,21,0,67,170,
	18,0,67,186,25,0,68,170,22,0,68,186,
	29,0,69,170,26,0,69,186,35,0,162,139,
	32,0,162,155,0,0,0,0,33,0,66,170,
	30,0,66,186,34,0,2,36,0,0,34,174,
	0,0,35,142,18,0,34,150,0,0,0,0,
	33,16,67,0,18,0,34,166,18,0,34,150,
	0,0,0,0,60,0,66,44,68,0,64,16,
	33,32,128,2,0,0,98,142,18,0,35,150,
	60,0,66,36,35,16,67,0,0,0,98,174,
	60,0,2,36,18,0,34,166,201,44,192,8,
	33,32,128,2,164,129,133,39,3,0,162,136,
	0,0,162,152,4,0,163,128,5,0,164,128,
	17,0,66,170,14,0,66,186,18,0,67,162,
	19,0,68,162,8,0,2,36,20,0,66,166,
	19,0,162,139,16,0,162,155,23,0,163,139,
	20,0,163,155,27,0,164,139,24,0,164,155,
	31,0,165,139,28,0,165,155,25,0,66,170,
	22,0,66,186,29,0,67,170,26,0,67,186,
	33,0,68,170,30,0,68,186,37,0,69,170,
	34,0,69,186,35,0,162,139,32,0,162,155,
	0,0,0,0,41,0,66,170,38,0,66,186,
	42,0,2,36,0,0,34,174,0,0,35,142,
	18,0,34,150,0,0,0,0,33,16,67,0,
	18,0,34,166,18,0,34,150,0,0,0,0,
	60,0,66,44,8,0,64,16,0,0,0,0,
	0,0,98,142,18,0,35,150,60,0,66,36,
	35,16,67,0,0,0,98,174,60,0,2,36,
	18,0,34,166,18,0,34,150,0,0,0,0,
	0,26,2,0,2,18,2,0,37,24,98,0,
	12,0,67,166,33,32,128,2,74,21,192,12,
	33,40,32,2,8,0,64,20,33,32,32,2,
	3,131,3,60,36,17,99,36,0,0,98,140,
	0,0,0,0,1,0,66,36,152,21,192,12,
	0,0,98,172,60,0,191,143,56,0,180,143,
	52,0,179,143,48,0,178,143,44,0,177,143,
	40,0,176,143,8,0,224,3,64,0,189,39,
	176,255,189,39,56,0,180,175,112,0,180,143,
	48,0,178,175,100,0,178,143,52,0,179,175,
	104,0,179,143,64,0,182,175,33,176,128,0,
	72,0,190,175,33,240,160,0,60,0,181,175,
	33,168,224,0,68,0,183,175,108,0,183,143,
	2,131,4,60,192,4,132,36,76,0,191,175,
	44,0,177,175,40,0,176,175,32,0,166,175,
	7,2,130,38,2,130,2,0,54,21,192,12,
	33,40,0,2,33,136,64,0,8,0,32,22,
	0,74,18,0,2,131,4,60,232,146,132,36,
	33,40,128,2,15,63,192,12,33,48,0,2,
	74,45,192,8,0,0,0,0,255,255,66,50,
	2,18,2,0,37,72,34,1,0,66,19,0,
	255,255,98,50,2,18,2,0,37,64,2,1,
	8,0,130,38,0,58,2,0,255,255,66,48,
	2,18,2,0,37,56,226,0,0,163,4,60,
	220,5,132,52,4,0,5,36,4,0,34,142,
	0,17,6,36,8,0,80,140,4,0,35,142,
	8,0,2,36,0,0,98,172,0,0,9,166,
	2,0,8,166,6,0,0,166,192,42,192,12,
	4,0,7,166,33,32,160,2,4,0,5,36,
	192,42,192,12,255,255,70,48,4,0,4,38,
	2,0,5,36,192,42,192,12,255,255,70,48,
	33,32,0,2,8,0,5,36,192,42,192,12,
	255,255,70,48,33,32,224,2,33,40,128,2,
	192,42,192,12,255,255,70,48,39,24,2,0,
	255,255,98,48,2,0,64,20,33,40,224,2,
	255,255,3,52,6,0,3,166,4,0,36,142,
	0,0,0,0,220,42,192,12,33,48,128,2,
	33,32,192,2,0,0,67,140,33,40,192,3,
	0,128,99,52,0,0,67,172,4,0,35,142,
	32,0,166,143,18,0,99,148,33,56,160,2,
	18,0,35,166,96,0,170,143,17,0,3,36,
	16,0,163,175,24,0,177,175,28,0,162,175,
	23,44,192,12,20,0,170,175,3,131,3,60,
	124,17,99,36,0,0,98,140,0,0,0,0,
	1,0,66,36,0,0,98,172,76,0,191,143,
	72,0,190,143,68,0,183,143,64,0,182,143,
	60,0,181,143,56,0,180,143,52,0,179,143,
	48,0,178,143,44,0,177,143,40,0,176,143,
	8,0,224,3,80,0,189,39,128,255,189,39,
	116,0,183,175,33,184,128,0,112,0,182,175,
	33,176,160,0,104,0,180,175,33,160,192,0,
	108,0,181,175,33,168,224,0,40,0,164,39,
	96,0,178,175,144,0,178,143,33,40,0,0,
	100,0,179,175,148,0,179,143,16,0,6,36,
	120,0,191,175,92,0,177,175,144,71,192,12,
	88,0,176,175,56,0,177,39,33,32,32,2,
	33,40,0,0,2,0,16,36,40,0,176,167,
	2,0,162,150,0,0,0,0,42,0,162,167,
	19,0,130,138,16,0,130,154,0,0,0,0,
	47,0,162,171,44,0,162,187,144,71,192,12,
	16,0,6,36,33,32,64,2,33,40,96,2,
	40,0,166,39,33,56,32,2,56,0,176,167,
	0,0,162,150,2,131,16,60,8,239,16,38,
	58,0,162,167,15,0,130,138,12,0,130,154,
	0,0,0,0,63,0,162,171,60,0,162,187,
	242,5,2,36,84,0,162,167,72,0,162,39,
	72,0,160,167,76,0,176,175,80,0,176,175,
	247,71,192,12,16,0,162,175,255,255,3,36,
	22,0,67,16,12,0,145,38,33,32,224,2,
	6,0,197,38,35,48,150,2,0,0,163,150,
	4,0,2,36,16,0,162,175,161,0,2,36,
	20,0,162,175,28,0,176,175,0,18,3,0,
	2,26,3,0,37,16,67,0,255,255,66,48,
	24,0,162,175,80,0,162,143,76,0,163,143,
	33,56,32,2,35,16,67,0,255,255,66,48,
	220,44,192,12,32,0,162,175,120,0,191,143,
	116,0,183,143,112,0,182,143,108,0,181,143,
	104,0,180,143,100,0,179,143,96,0,178,143,
	92,0,177,143,88,0,176,143,8,0,224,3,
	128,0,189,39,196,133,130,143,184,255,189,39,
	64,0,191,175,60,0,177,175,109,0,64,16,
	56,0,176,175,255,255,3,36,106,0,67,16,
	0,0,0,0,176,133,130,143,176,133,145,39,
	102,0,64,16,0,0,0,0,100,0,67,16,
	0,0,0,0,2,131,2,60,8,239,66,36,
	44,0,162,175,48,0,162,175,242,5,2,36,
	40,0,160,167,6,0,128,16,52,0,162,167,
	1,0,2,36,23,0,130,16,0,0,0,0,
	36,46,192,8,0,0,0,0,2,131,16,60,
	160,204,16,38,156,71,192,12,33,32,0,2,
	0,163,4,60,4,1,132,140,204,204,3,60,
	205,204,99,52,25,0,131,0,33,40,32,2,
	33,48,0,2,33,56,64,0,40,0,164,39,
	16,64,0,0,194,16,8,0,0,0,0,0,
	104,56,192,12,16,0,162,175,251,45,192,8,
	33,24,64,0,3,131,2,60,28,18,66,148,
	0,0,0,0,2,0,66,48,61,0,64,16,
	0,0,0,0,2,131,16,60,160,204,16,38,
	156,71,192,12,33,32,0,2,0,163,4,60,
	4,1,132,140,204,204,3,60,205,204,99,52,
	25,0,131,0,33,40,32,2,33,48,0,2,
	33,56,64,0,40,0,164,39,16,64,0,0,
	194,16,8,0,0,0,0,0,105,57,192,12,
	16,0,162,175,33,24,64,0,255,255,2,36,
	39,0,98,16,0,0,0,0,140,129,130,147,
	0,0,0,0,1,0,66,48,7,0,64,20,
	0,0,0,0,68,133,131,143,152,129,130,143,
	0,0,0,0,43,16,67,0,11,0,64,16,
	33,32,0,0,68,133,131,143,148,129,130,143,
	0,0,0,0,6,0,98,16,33,32,0,0,
	196,133,133,143,148,129,131,175,17,43,192,12,
	33,32,0,0,33,32,0,0,140,129,133,39,
	14,0,6,36,4,0,2,36,16,0,162,175,
	162,0,2,36,20,0,162,175,24,0,162,175,
	2,131,2,60,8,239,66,36,28,0,162,175,
	48,0,162,143,44,0,163,143,196,133,135,39,
	35,16,67,0,255,255,66,48,220,44,192,12,
	32,0,162,175,64,0,191,143,60,0,177,143,
	56,0,176,143,8,0,224,3,72,0,189,39,
	208,255,189,39,36,0,179,175,33,152,128,0,
	40,0,180,175,33,160,160,0,32,0,178,175,
	24,0,176,175,33,128,224,0,44,0,191,175,
	28,0,177,175,6,0,2,150,64,0,177,143,
	0,0,0,0,20,0,64,16,33,144,192,0,
	12,0,68,38,8,0,5,36,192,42,192,12,
	0,17,6,36,4,0,4,38,2,0,5,36,
	192,42,192,12,255,255,70,48,33,32,0,2,
	33,40,32,2,192,42,192,12,255,255,70,48,
	255,255,66,48,255,255,3,52,4,0,67,16,
	0,0,0,0,3,131,3,60,111,46,192,8,
	120,17,99,36,4,0,2,150,0,0,0,0,
	0,26,2,0,2,18,2,0,37,24,98,0,
	255,255,99,48,4,0,113,16,8,0,7,38,
	3,131,3,60,111,46,192,8,120,17,99,36,
	2,0,2,150,0,0,0,0,0,26,2,0,
	2,18,2,0,37,24,98,0,255,255,99,48,
	161,0,2,36,15,0,98,20,248,255,40,38,
	33,32,96,2,33,40,128,2,3,131,3,60,
	112,17,99,36,0,0,98,140,33,48,64,2,
	16,0,167,175,33,56,0,2,20,0,168,175,
	1,0,66,36,86,45,192,12,0,0,98,172,
	115,46,192,8,0,0,0,0,3,131,3,60,
	116,17,99,36,0,0,98,140,0,0,0,0,
	1,0,66,36,0,0,98,172,44,0,191,143,
	40,0,180,143,36,0,179,143,32,0,178,143,
	28,0,177,143,24,0,176,143,8,0,224,3,
	48,0,189,39,192,255,189,39,52,0,181,175,
	33,168,128,0,44,0,179,175,33,152,160,0,
	48,0,180,175,33,160,192,0,32,0,176,175,
	33,128,224,0,33,32,0,2,33,48,0,0,
	40,0,178,175,80,0,178,143,3,131,3,60,
	144,16,99,36,56,0,191,175,36,0,177,175,
	0,0,98,140,33,40,64,2,1,0,66,36,
	192,42,192,12,0,0,98,172,255,255,66,48,
	255,255,3,52,8,0,67,16,8,0,2,36,
	3,131,2,60,148,16,66,140,0,0,0,0,
	1,0,66,36,3,131,1,60,217,46,192,8,
	148,16,34,172,0,0,3,150,0,0,0,0,
	58,0,98,20,255,1,69,38,2,131,4,60,
	192,4,132,36,3,131,2,60,172,16,66,140,
	3,131,3,60,196,16,99,140,1,0,66,36,
	1,0,99,36,3,131,1,60,172,16,34,172,
	3,131,1,60,196,16,35,172,54,21,192,12,
	2,42,5,0,33,136,64,0,8,0,32,22,
	33,32,0,2,3,131,2,60,200,16,66,140,
	0,0,0,0,1,0,66,36,3,131,1,60,
	217,46,192,8,200,16,34,172,33,40,64,2,
	33,48,0,0,0,0,0,162,192,42,192,12,
	2,0,0,166,33,40,0,2,39,16,2,0,
	2,0,162,164,4,0,36,142,0,0,0,0,
	220,42,192,12,33,48,64,2,33,32,160,2,
	6,0,101,38,35,48,147,2,0,0,67,140,
	12,0,135,38,0,128,99,52,0,0,67,172,
	1,0,3,36,18,0,50,166,16,0,163,175,
	4,0,3,36,20,0,163,175,24,0,177,175,
	23,44,192,12,28,0,162,175,3,131,2,60,
	228,16,66,140,0,0,0,0,1,0,66,36,
	3,131,1,60,228,16,34,172,56,0,191,143,
	52,0,181,143,48,0,180,143,44,0,179,143,
	40,0,178,143,36,0,177,143,32,0,176,143,
	8,0,224,3,64,0,189,39,200,255,189,39,
	44,0,181,175,33,168,128,0,3,131,3,60,
	4,17,99,36,48,0,191,175,40,0,180,175,
	36,0,179,175,32,0,178,175,28,0,177,175,
	24,0,176,175,0,0,98,140,33,136,160,0,
	1,0,66,36,0,0,98,172,18,0,34,150,
	0,0,0,0,255,255,84,48,243,5,130,46,
	8,0,64,20,33,152,192,0,3,131,2,60,
	8,17,66,140,0,0,0,0,1,0,66,36,
	3,131,1,60,132,47,192,8,8,17,34,172,
	2,131,18,60,18,233,82,38,33,32,64,2,
	0,0,48,142,8,0,37,142,255,63,16,50,
	80,68,192,12,33,48,0,2,0,0,34,142,
	0,0,0,0,0,128,66,48,5,0,64,20,
	33,144,80,2,4,0,49,142,0,0,0,0,
	1,47,192,8,33,32,64,2,2,131,18,60,
	18,233,82,38,33,128,114,2,16,0,17,38,
	33,32,32,2,176,133,133,39,168,71,192,12,
	4,0,6,36,9,0,64,16,33,32,32,2,
	128,129,133,39,168,71,192,12,4,0,6,36,
	4,0,64,16,0,0,0,0,3,131,3,60,
	128,47,192,8,12,17,99,36,0,0,4,146,
	64,0,2,36,240,0,131,48,4,0,98,16,
	15,0,130,48,3,131,3,60,128,47,192,8,
	8,17,99,36,128,136,2,0,20,0,34,42,
	4,0,64,16,33,32,0,2,3,131,3,60,
	128,47,192,8,8,17,99,36,33,40,32,2,
	192,42,192,12,33,48,0,0,255,255,66,48,
	255,255,3,52,4,0,67,16,0,0,0,0,
	3,131,3,60,128,47,192,8,8,17,99,36,
	6,0,2,150,0,0,0,0,63,255,66,48,
	18,0,64,16,33,56,17,2,3,131,3,60,
	48,17,99,36,0,0,98,140,0,0,0,0,
	1,0,66,36,0,0,98,172,3,131,2,60,
	56,17,66,140,3,131,3,60,24,17,99,140,
	1,0,66,36,1,0,99,36,3,131,1,60,
	56,17,34,172,3,131,1,60,132,47,192,8,
	24,17,35,172,2,0,2,150,0,0,0,0,
	0,26,2,0,2,18,2,0,37,24,98,0,
	255,255,99,48,35,64,113,0,35,16,242,0,
	35,16,130,2,42,16,72,0,4,0,64,16,
	1,0,2,36,3,131,3,60,128,47,192,8,
	24,17,99,36,9,0,3,146,0,0,0,0,
	5,0,98,16,17,0,2,36,15,0,98,16,
	33,32,160,2,126,47,192,8,0,0,0,0,
	33,32,160,2,33,40,64,2,3,131,3,60,
	28,17,99,36,0,0,98,140,33,48,0,2,
	16,0,168,175,1,0,66,36,123,46,192,12,
	0,0,98,172,132,47,192,8,0,0,0,0,
	33,40,64,2,3,131,3,60,28,17,99,36,
	0,0,98,140,33,48,0,2,16,0,168,175,
	1,0,66,36,41,46,192,12,0,0,98,172,
	132,47,192,8,0,0,0,0,3,131,3,60,
	20,17,99,36,0,0,98,140,0,0,0,0,
	1,0,66,36,0,0,98,172,48,0,191,143,
	44,0,181,143,40,0,180,143,36,0,179,143,
	32,0,178,143,28,0,177,143,24,0,176,143,
	8,0,224,3,56,0,189,39,232,255,189,39,
	255,0,12,60,255,0,140,53,0,255,13,60,
	0,255,173,53,16,0,176,175,3,131,16,60,
	0,17,16,38,33,32,0,2,33,40,0,0,
	0,163,9,60,220,5,41,141,0,163,10,60,
	16,6,74,141,0,163,11,60,224,5,107,141,
	20,0,191,175,0,28,9,0,2,20,9,0,
	37,24,98,0,0,60,10,0,2,20,10,0,
	37,56,226,0,0,68,11,0,2,20,11,0,
	37,64,2,1,2,18,3,0,36,16,76,0,
	0,26,3,0,36,24,109,0,37,16,67,0,
	184,133,130,175,2,18,7,0,36,16,76,0,
	0,58,7,0,36,56,237,0,37,16,71,0,
	192,133,130,175,2,18,8,0,36,16,76,0,
	0,66,8,0,36,64,13,1,37,16,72,0,
	176,133,137,175,196,133,138,175,188,133,139,175,
	180,133,130,175,144,71,192,12,76,0,6,36,
	3,131,4,60,144,16,132,36,33,40,0,0,
	32,0,2,36,0,0,2,174,10,0,2,36,
	3,131,1,60,44,17,34,172,144,71,192,12,
	104,0,6,36,3,131,4,60,112,17,132,36,
	33,40,0,0,144,71,192,12,16,0,6,36,
	3,131,4,60,80,17,132,36,33,40,0,0,
	144,71,192,12,32,0,6,36,20,0,191,143,
	16,0,176,143,8,0,224,3,24,0,189,39,
	176,255,189,39,100,0,162,143,96,0,169,143,
	72,0,182,175,33,176,128,0,48,0,176,175,
	104,0,176,143,34,0,164,39,60,0,179,175,
	108,0,179,143,3,131,3,60,104,17,99,36,
	56,0,178,175,2,131,18,60,212,4,82,38,
	52,0,177,175,33,136,192,0,68,0,181,175,
	112,0,181,143,4,0,6,36,76,0,191,175,
	64,0,180,175,0,66,2,0,255,255,66,48,
	2,18,2,0,37,64,2,1,0,0,98,140,
	8,0,116,142,1,0,66,36,0,0,98,172,
	3,0,162,136,0,0,162,152,4,0,163,128,
	5,0,170,128,3,0,130,170,0,0,130,186,
	4,0,131,162,5,0,138,162,3,0,66,138,
	0,0,66,154,4,0,67,130,5,0,69,130,
	9,0,130,170,6,0,130,186,10,0,131,162,
	11,0,133,162,255,255,2,52,16,0,162,167,
	18,0,98,150,33,40,0,0,20,0,160,163,
	21,0,160,163,30,0,66,36,0,26,2,0,
	255,255,66,48,2,18,2,0,37,24,98,0,
	18,0,163,167,3,0,226,136,0,0,226,152,
	0,0,0,0,25,0,162,171,22,0,162,187,
	3,0,34,137,0,0,34,153,4,0,35,129,
	5,0,39,129,29,0,162,171,26,0,162,187,
	30,0,163,163,31,0,167,163,144,71,192,12,
	32,0,168,167,3,0,66,138,0,0,66,154,
	4,0,67,134,41,0,162,171,38,0,162,187,
	42,0,163,167,33,16,0,2,0,130,16,0,
	255,255,66,48,2,18,2,0,37,128,2,2,
	14,0,2,36,58,0,34,22,44,0,176,167,
	18,0,162,151,0,0,0,0,12,0,130,166,
	19,0,162,139,16,0,162,155,23,0,163,139,
	20,0,163,155,27,0,164,139,24,0,164,155,
	31,0,165,139,28,0,165,155,17,0,130,170,
	14,0,130,186,21,0,131,170,18,0,131,186,
	25,0,132,170,22,0,132,186,29,0,133,170,
	26,0,133,186,35,0,162,139,32,0,162,155,
	39,0,163,139,36,0,163,155,43,0,164,139,
	40,0,164,155,44,0,165,131,33,0,130,170,
	30,0,130,186,37,0,131,170,34,0,131,186,
	41,0,132,170,38,0,132,186,42,0,133,162,
	45,0,162,131,0,0,0,0,43,0,130,162,
	44,0,2,36,0,0,98,174,0,0,99,142,
	18,0,98,150,0,0,0,0,33,16,67,0,
	18,0,98,166,18,0,98,150,0,0,0,0,
	60,0,66,44,80,0,64,16,33,32,192,2,
	0,0,162,142,18,0,99,150,60,0,66,36,
	35,16,67,0,0,0,162,174,60,0,2,36,
	18,0,98,166,172,48,192,8,33,32,192,2,
	208,129,133,39,3,0,162,136,0,0,162,152,
	4,0,163,128,5,0,164,128,17,0,130,170,
	14,0,130,186,18,0,131,162,19,0,132,162,
	129,55,2,36,20,0,130,166,19,0,162,139,
	16,0,162,155,23,0,163,139,20,0,163,155,
	27,0,164,139,24,0,164,155,31,0,165,139,
	28,0,165,155,25,0,130,170,22,0,130,186,
	29,0,131,170,26,0,131,186,33,0,132,170,
	30,0,132,186,37,0,133,170,34,0,133,186,
	35,0,162,139,32,0,162,155,39,0,163,139,
	36,0,163,155,43,0,164,139,40,0,164,155,
	44,0,165,131,41,0,130,170,38,0,130,186,
	45,0,131,170,42,0,131,186,49,0,132,170,
	46,0,132,186,50,0,133,162,45,0,162,131,
	0,0,0,0,51,0,130,162,52,0,2,36,
	0,0,98,174,0,0,99,142,18,0,98,150,
	0,0,0,0,33,16,67,0,18,0,98,166,
	18,0,98,150,0,0,0,0,60,0,66,44,
	8,0,64,16,0,0,0,0,0,0,162,142,
	18,0,99,150,60,0,66,36,35,16,67,0,
	0,0,162,174,60,0,2,36,18,0,98,166,
	18,0,98,150,0,0,0,0,0,26,2,0,
	2,18,2,0,37,24,98,0,12,0,131,166,
	33,32,192,2,74,21,192,12,33,40,96,2,
	8,0,64,20,33,32,96,2,3,131,3,60,
	108,17,99,36,0,0,98,140,0,0,0,0,
	1,0,66,36,152,21,192,12,0,0,98,172,
	76,0,191,143,72,0,182,143,68,0,181,143,
	64,0,180,143,60,0,179,143,56,0,178,143,
	52,0,177,143,48,0,176,143,8,0,224,3,
	80,0,189,39,33,24,0,0,5,0,7,36,
	58,0,6,36,0,0,162,144,0,0,0,0,
	2,17,2,0,2,131,1,60,33,8,34,0,
	176,155,34,144,0,0,0,0,0,0,130,160,
	0,0,162,144,1,0,132,36,15,0,66,48,
	2,131,1,60,33,8,34,0,176,155,34,144,
	1,0,165,36,0,0,130,160,3,0,103,16,
	1,0,132,36,0,0,134,160,1,0,132,36,
	1,0,99,36,6,0,98,40,233,255,64,20,
	0,0,0,0,8,0,224,3,0,0,0,0,
	128,255,189,39,2,101,2,36,0,2,3,36,
	112,0,176,175,44,0,176,39,33,32,0,2,
	33,40,0,0,48,0,6,36,120,0,191,175,
	116,0,177,175,40,0,162,167,144,71,192,12,
	42,0,163,167,3,131,17,60,96,18,49,38,
	2,131,5,60,224,147,165,36,188,71,192,12,
	33,32,32,2,18,0,64,20,33,32,0,2,
	2,131,5,60,236,147,165,36,0,0,162,140,
	4,0,163,140,8,0,164,140,44,0,162,175,
	48,0,163,175,52,0,164,175,12,0,162,128,
	0,0,0,0,56,0,162,163,2,131,5,60,
	212,4,165,36,193,48,192,12,56,0,164,39,
	8,49,192,8,92,0,177,39,33,40,32,2,
	204,63,192,12,48,0,6,36,92,0,177,39,
	33,32,32,2,33,40,0,0,144,71,192,12,
	4,0,6,36,2,131,4,60,212,4,132,36,
	0,0,130,140,4,0,131,132,96,0,162,175,
	100,0,163,167,4,82,2,36,0,1,3,36,
	236,255,132,36,2,0,5,36,102,0,162,167,
	54,21,192,12,104,0,163,167,33,128,64,0,
	22,0,0,18,40,0,165,39,4,0,4,142,
	0,0,0,0,220,42,192,12,66,0,6,36,
	33,32,0,0,0,0,67,140,132,129,133,39,
	0,128,99,52,0,0,67,172,4,0,3,142,
	14,0,6,36,18,0,99,148,33,56,32,2,
	18,0,3,166,82,4,3,36,16,0,165,175,
	20,0,163,175,24,0,163,175,28,0,176,175,
	214,47,192,12,32,0,162,175,120,0,191,143,
	116,0,177,143,112,0,176,143,8,0,224,3,
	128,0,189,39,144,255,189,39,104,0,180,175,
	33,160,128,0,100,0,179,175,33,152,160,0,
	92,0,177,175,33,136,192,0,33,32,224,0,
	40,0,166,39,56,0,167,39,96,0,178,175,
	2,131,18,60,8,239,82,38,88,0,176,175,
	128,0,176,143,242,5,2,36,84,0,162,167,
	72,0,162,39,108,0,191,175,72,0,160,167,
	76,0,178,175,80,0,178,175,16,0,162,175,
	247,71,192,12,33,40,0,2,255,255,3,36,
	37,0,67,16,255,1,5,38,2,131,4,60,
	192,4,132,36,54,21,192,12,2,42,5,0,
	33,128,64,0,30,0,0,18,33,40,64,2,
	80,0,166,143,76,0,162,143,4,0,4,142,
	35,48,194,0,220,42,192,12,255,255,198,48,
	33,32,128,2,0,0,67,140,6,0,101,38,
	0,128,99,52,0,0,67,172,4,0,3,142,
	35,48,51,2,18,0,99,148,18,0,39,38,
	18,0,3,166,28,0,40,150,22,0,35,38,
	16,0,163,175,15,144,3,52,24,0,163,175,
	28,0,176,175,32,0,162,175,0,18,8,0,
	2,66,8,0,37,16,72,0,255,255,66,48,
	214,47,192,12,20,0,162,175,108,0,191,143,
	104,0,180,143,100,0,179,143,96,0,178,143,
	92,0,177,143,88,0,176,143,8,0,224,3,
	112,0,189,39,200,255,189,39,44,0,181,175,
	33,168,128,0,28,0,177,175,33,136,160,0,
	48,0,191,175,40,0,180,175,36,0,179,175,
	32,0,178,175,24,0,176,175,18,0,34,150,
	0,0,0,0,255,255,84,48,243,5,130,46,
	4,0,64,20,33,152,192,0,3,131,3,60,
	241,49,192,8,84,17,99,36,2,131,18,60,
	16,233,82,38,33,32,64,2,0,0,48,142,
	8,0,37,142,255,63,16,50,80,68,192,12,
	33,48,0,2,0,0,34,142,0,0,0,0,
	0,128,66,48,5,0,64,20,33,144,80,2,
	4,0,49,142,0,0,0,0,148,49,192,8,
	33,32,64,2,2,131,2,60,16,233,66,36,
	33,128,98,2,6,0,17,38,33,32,32,2,
	0,163,5,60,224,5,165,52,168,71,192,12,
	4,0,6,36,9,0,64,16,33,32,32,2,
	224,129,133,39,168,71,192,12,4,0,6,36,
	5,0,64,16,10,0,17,38,3,131,3,60,
	241,49,192,8,88,17,99,36,10,0,17,38,
	33,32,32,2,2,131,5,60,212,4,165,36,
	168,71,192,12,6,0,6,36,9,0,64,16,
	33,32,32,2,228,129,133,39,168,71,192,12,
	6,0,6,36,4,0,64,16,0,0,0,0,
	3,131,3,60,241,49,192,8,88,17,99,36,
	0,0,3,150,255,255,2,52,4,0,98,16,
	30,0,7,38,3,131,3,60,241,49,192,8,
	88,17,99,36,2,0,2,150,2,131,5,60,
	16,233,165,36,0,26,2,0,2,18,2,0,
	37,24,98,0,255,255,99,48,226,255,104,36,
	35,16,229,0,35,16,130,2,42,16,72,0,
	4,0,64,16,0,0,0,0,3,131,3,60,
	241,49,192,8,96,17,99,36,16,0,2,150,
	0,0,0,0,0,26,2,0,2,18,2,0,
	37,24,98,0,255,255,99,48,15,144,2,52,
	11,0,98,20,33,32,160,2,3,131,3,60,
	100,17,99,36,0,0,98,140,33,48,0,2,
	16,0,168,175,1,0,66,36,54,49,192,12,
	0,0,98,172,245,49,192,8,0,0,0,0,
	3,131,3,60,92,17,99,36,0,0,98,140,
	0,0,0,0,1,0,66,36,0,0,98,172,
	48,0,191,143,44,0,181,143,40,0,180,143,
	36,0,179,143,32,0,178,143,28,0,177,143,
	24,0,176,143,8,0,224,3,56,0,189,39,
	0,0,0,0,0,0,0,0,232,255,189,39,
	16,0,191,175,13,8,192,12,0,8,4,36,
	8,133,130,175,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,232,255,189,39,
	45,0,128,16,16,0,191,175,240,129,133,143,
	7,0,130,36,194,16,2,0,10,0,160,20,
	1,0,70,36,8,133,133,143,0,133,130,39,
	0,133,133,175,0,0,162,172,0,8,2,36,
	240,129,133,175,2,131,1,60,20,211,32,172,
	4,0,162,172,0,0,164,140,0,0,0,0,
	4,0,131,140,0,0,0,0,43,16,102,0,
	14,0,64,20,0,0,0,0,5,0,102,20,
	35,16,102,0,0,0,130,140,0,0,0,0,
	43,50,192,8,0,0,162,172,4,0,130,172,
	192,16,2,0,33,32,130,0,4,0,134,172,
	240,129,133,175,57,50,192,8,8,0,130,36,
	240,129,130,143,0,0,0,0,4,0,130,16,
	33,40,128,0,0,0,132,140,28,50,192,8,
	0,0,0,0,2,131,4,60,15,63,192,12,
	64,148,132,36,33,16,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	56,0,128,16,248,255,132,36,240,129,133,143,
	0,0,0,0,78,50,192,8,43,16,164,0,
	0,0,163,140,0,0,0,0,43,16,163,0,
	5,0,64,20,43,16,164,0,12,0,64,20,
	43,16,131,0,10,0,64,20,0,0,0,0,
	33,40,96,0,43,16,164,0,244,255,64,16,
	0,0,0,0,0,0,162,140,0,0,0,0,
	43,16,130,0,239,255,64,16,0,0,0,0,
	4,0,134,140,0,0,163,140,192,16,6,0,
	33,16,130,0,11,0,67,20,0,0,0,0,
	4,0,98,140,0,0,0,0,33,16,194,0,
	4,0,130,172,0,0,162,140,0,0,0,0,
	0,0,66,140,0,0,0,0,102,50,192,8,
	0,0,130,172,0,0,131,172,4,0,163,140,
	0,0,0,0,192,16,3,0,33,16,162,0,
	9,0,68,20,0,0,0,0,4,0,130,140,
	0,0,0,0,33,16,98,0,4,0,162,172,
	0,0,130,140,0,0,0,0,117,50,192,8,
	0,0,162,172,0,0,164,172,240,129,133,175,
	8,0,224,3,0,0,0,0,232,255,189,39,
	16,0,191,175,0,50,192,12,0,0,0,0,
	178,45,192,12,33,32,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	1,0,3,36,5,0,195,20,255,255,2,36,
	0,0,226,140,0,0,0,0,43,16,2,0,
	35,16,2,0,8,0,224,3,0,0,0,0,
	224,255,189,39,16,0,176,175,33,128,224,0,
	20,0,177,175,48,0,177,143,1,0,2,36,
	5,0,162,20,24,0,191,175,0,0,194,140,
	0,0,0,0,8,0,64,16,0,0,0,0,
	11,0,2,36,33,32,0,2,33,40,32,2,
	48,72,192,12,96,0,2,174,1,0,66,36,
	100,0,2,174,17,0,34,146,0,0,0,0,
	1,0,66,52,17,0,34,162,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,8,0,224,3,0,0,0,0,
	16,0,163,143,0,0,0,0,17,0,98,144,
	0,0,0,0,2,0,66,52,8,0,224,3,
	17,0,98,160,8,0,224,3,0,0,0,0,
	224,255,189,39,16,0,176,175,33,128,128,0,
	244,129,131,151,255,0,2,36,28,0,191,175,
	24,0,178,175,20,0,177,175,4,0,2,174,
	60,0,0,174,1,0,98,36,244,129,130,167,
	10,0,3,166,3,0,162,136,0,0,162,152,
	7,0,163,136,4,0,163,152,11,0,164,136,
	8,0,164,152,15,0,167,136,12,0,167,152,
	15,0,2,170,12,0,2,186,19,0,3,170,
	16,0,3,186,23,0,4,170,20,0,4,186,
	27,0,7,170,24,0,7,186,3,0,194,136,
	0,0,194,152,7,0,195,136,4,0,195,152,
	11,0,196,136,8,0,196,152,15,0,197,136,
	12,0,197,152,31,0,2,170,28,0,2,186,
	35,0,3,170,32,0,3,186,39,0,4,170,
	36,0,4,186,43,0,5,170,40,0,5,186,
	80,0,2,142,76,0,3,142,0,0,0,0,
	35,16,67,0,255,255,81,48,88,0,3,150,
	3,0,2,36,13,0,98,16,0,0,0,0,
	2,131,18,60,160,204,82,38,156,71,192,12,
	33,32,64,2,7,0,81,20,33,32,64,2,
	76,0,5,142,0,0,0,0,168,71,192,12,
	33,48,32,2,21,0,64,16,33,16,0,0,
	2,131,18,60,192,204,82,38,156,71,192,12,
	33,32,64,2,7,0,81,20,33,32,64,2,
	76,0,5,142,0,0,0,0,168,71,192,12,
	33,48,32,2,9,0,64,16,33,16,0,0,
	3,131,3,60,132,17,99,36,0,0,98,140,
	1,0,4,36,1,0,66,36,178,45,192,12,
	0,0,98,172,1,0,2,36,28,0,191,143,
	24,0,178,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,0,0,0,0,
	0,0,0,0,224,255,189,39,20,0,177,175,
	33,136,224,0,16,0,176,175,48,0,176,143,
	24,0,191,175,156,71,192,12,33,32,32,2,
	0,0,2,174,33,16,32,2,24,0,191,143,
	20,0,177,143,16,0,176,143,8,0,224,3,
	32,0,189,39,8,0,224,3,33,16,224,0,
	0,0,227,140,204,204,2,60,205,204,66,52,
	25,0,98,0,16,32,0,0,0,0,0,0,
	0,0,0,0,8,0,224,3,194,16,4,0,
	224,255,189,39,16,0,176,175,33,128,224,0,
	33,32,0,2,33,40,0,0,20,0,177,175,
	48,0,177,143,24,0,191,175,208,71,192,12,
	16,0,6,36,2,0,64,20,35,16,80,0,
	16,0,2,36,0,0,34,174,33,16,0,2,
	24,0,191,143,20,0,177,143,16,0,176,143,
	8,0,224,3,32,0,189,39,232,255,189,39,
	40,0,164,143,44,0,165,143,16,0,191,175,
	205,59,192,12,0,0,0,0,16,0,191,143,
	24,0,189,39,8,0,224,3,0,0,0,0,
	232,255,189,39,40,0,164,143,44,0,165,143,
	16,0,191,175,239,59,192,12,0,0,0,0,
	16,0,191,143,24,0,189,39,8,0,224,3,
	0,0,0,0,232,255,189,39,40,0,164,143,
	44,0,165,143,16,0,191,175,17,60,192,12,
	0,0,0,0,16,0,191,143,24,0,189,39,
	8,0,224,3,0,0,0,0,8,0,224,3,
	33,16,224,0,0,0,226,140,8,0,224,3,
	0,0,0,0,216,255,189,39,24,0,176,175,
	56,0,176,143,32,0,191,175,28,0,177,175,
	36,0,2,142,1,0,3,36,20,0,81,140,
	187,0,163,20,0,0,0,0,0,0,195,140,
	0,0,0,0,183,0,96,16,0,0,0,0,
	32,133,130,143,0,0,0,0,43,16,67,0,
	178,0,64,20,255,255,104,36,64,18,8,0,
	2,131,3,60,192,246,99,36,33,40,67,0,
	255,255,132,36,22,0,130,44,170,0,64,16,
	128,16,4,0,2,131,1,60,33,8,34,0,
	144,148,34,140,0,0,0,0,8,0,64,0,
	0,0,0,0,2,0,2,36,16,0,2,162,
	17,0,2,146,0,0,195,140,0,0,0,0,
	15,52,192,8,2,0,66,52,33,32,32,2,
	17,0,3,146,4,0,2,36,16,0,2,162,
	40,0,0,166,44,0,17,174,2,0,99,52,
	156,71,192,12,17,0,3,162,255,255,66,48,
	33,16,34,2,48,0,2,174,40,52,192,8,
	52,0,0,166,17,0,3,146,2,0,2,36,
	16,0,2,162,243,51,192,8,40,0,17,174,
	17,0,3,146,2,0,2,36,16,0,2,162,
	243,51,192,8,40,0,17,174,66,0,2,36,
	13,0,0,21,16,0,2,162,24,133,132,143,
	0,0,0,0,64,25,4,0,35,24,100,0,
	128,17,3,0,35,16,67,0,192,16,2,0,
	33,16,68,0,128,24,2,0,33,16,67,0,
	178,51,192,8,192,17,2,0,152,0,2,60,
	128,150,66,52,40,0,2,174,17,0,2,146,
	0,0,0,0,199,51,192,8,2,0,66,52,
	17,0,3,146,4,0,2,36,16,0,2,162,
	20,0,162,36,44,0,2,174,26,0,162,36,
	40,0,0,166,48,0,2,174,243,51,192,8,
	52,0,0,166,2,0,2,36,16,0,2,162,
	17,0,2,146,1,0,3,36,40,0,3,174,
	2,0,66,52,40,52,192,8,17,0,2,162,
	17,0,3,146,0,0,0,0,241,51,192,8,
	67,0,2,36,65,0,2,36,16,0,2,162,
	17,0,2,146,168,0,163,140,0,0,0,0,
	15,52,192,8,2,0,66,52,65,0,2,36,
	16,0,2,162,156,0,162,140,0,1,164,140,
	22,52,192,8,0,0,0,0,65,0,2,36,
	16,0,2,162,17,0,2,146,0,1,163,140,
	0,0,0,0,15,52,192,8,2,0,66,52,
	65,0,2,36,16,0,2,162,17,0,2,146,
	164,0,163,140,0,0,0,0,15,52,192,8,
	2,0,66,52,65,0,2,36,16,0,2,162,
	17,0,2,146,160,0,163,140,0,0,0,0,
	15,52,192,8,2,0,66,52,17,0,3,146,
	65,0,2,36,16,0,2,162,40,0,0,174,
	2,0,99,52,40,52,192,8,17,0,3,162,
	65,0,2,36,16,0,2,162,172,0,162,140,
	4,1,164,140,22,52,192,8,0,0,0,0,
	65,0,2,36,16,0,2,162,17,0,2,146,
	4,1,163,140,0,0,0,0,15,52,192,8,
	2,0,66,52,65,0,2,36,16,0,2,162,