summaryrefslogtreecommitdiffstats
path: root/zoneinfo64.txt
blob: 519db6fadadcbab0ed66e3e47620c4aed49af90c (plain)
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
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
//---------------------------------------------------------
// Copyright (C) 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html#License
//---------------------------------------------------------
// Build tool:  tz2icu
// Build date:  Fri May  4 16:06:17 2018
// tz database: ftp://ftp.iana.org/tz/
// tz version:  2018e
// ICU version: 61.1
//---------------------------------------------------------
// >> !!! >>   THIS IS A MACHINE-GENERATED FILE   << !!! <<
// >> !!! >>>            DO NOT EDIT             <<< !!! <<
//---------------------------------------------------------

zoneinfo64:table(nofallback) {
 TZVersion { "2018e" }
 Zones:array { 
  /* ACT */ :int { 354 } //Z#0
  /* AET */ :int { 366 } //Z#1
  /* AGT */ :int { 64 } //Z#2
  /* ART */ :int { 18 } //Z#3
  /* AST */ :int { 60 } //Z#4
  /* Africa/Abidjan */ :table {
    trans:intvector { -1830383032 }
    typeOffsets:intvector { -968, 0, 0, 0 }
    typeMap:bin { "01" }
    links:intvector { 5, 11, 13, 21, 22, 27, 38, 51, 52, 55, 346 }
  } //Z#5
  /* Africa/Accra */ :table {
    trans:intvector { -1640995148, -1556841600, -1546388400, -1525305600, -1514852400, -1493769600, -1483316400, -1462233600, -1451780400, -1430611200, -1420158000, -1399075200, -1388622000, -1367539200, -1357086000, -1336003200, -1325550000, -1304380800, -1293927600, -1272844800, -1262391600, -1241308800, -1230855600, -1209772800, -1199319600, -1178150400, -1167697200, -1146614400, -1136161200, -1115078400, -1104625200, -1083542400, -1073089200, -1051920000, -1041466800, -1020384000, -1009930800, -988848000, -978394800, -957312000, -946858800, -925689600, -915236400, -894153600, -883700400, -862617600, -852164400 }
    typeOffsets:intvector { -52, 0, 0, 0, 0, 1200 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#6
  /* Africa/Addis_Ababa */ :int { 48 } //Z#7
  /* Africa/Algiers */ :table {
    transPre32:intvector { -1, 1808288224 }
    trans:intvector { -1855958961, -1689814800, -1680397200, -1665363600, -1648342800, -1635123600, -1616893200, -1604278800, -1585443600, -1574038800, -1552266000, -1539997200, -1531443600, -956365200, -950486400, -942012000, -812502000, -796262400, -781052400, -766630800, -733280400, -439430400, -212029200, 41468400, 54774000, 231724800, 246236400, 259545600, 275274000, 309740400, 325468800, 341802000, 357523200 }
    typeOffsets:intvector { 732, 0, 0, 0, 0, 3600, 561, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "03010201020102010201020102010201040504050401040102010204050401020104" }
  } //Z#8
  /* Africa/Asmara */ :int { 48 } //Z#9
  /* Africa/Asmera */ :int { 48 } //Z#10
  /* Africa/Bamako */ :int { 5 } //Z#11
  /* Africa/Bangui */ :int { 36 } //Z#12
  /* Africa/Banjul */ :int { 5 } //Z#13
  /* Africa/Bissau */ :table {
    trans:intvector { -1830380400, 157770000 }
    typeOffsets:intvector { -3740, 0, -3600, 0, 0, 0 }
    typeMap:bin { "0102" }
  } //Z#14
  /* Africa/Blantyre */ :int { 43 } //Z#15
  /* Africa/Brazzaville */ :int { 36 } //Z#16
  /* Africa/Bujumbura */ :int { 43 } //Z#17
  /* Africa/Cairo */ :table {
    transPre32:intvector { -1, 2109558187 }
    trans:intvector { -929844000, -923108400, -906170400, -892868400, -875844000, -857790000, -844308000, -825822000, -812685600, -794199600, -779853600, -762663600, -399088800, -386650800, -368330400, -355114800, -336790800, -323654400, -305168400, -292032000, -273632400, -260496000, -242096400, -228960000, -210560400, -197424000, -178938000, -165801600, -147402000, -134265600, -115866000, -102643200, -84330000, -71107200, -52707600, -39484800, -21171600, -7948800, 10364400, 23587200, 41900400, 55123200, 73522800, 86745600, 105058800, 118281600, 136594800, 149817600, 168130800, 181353600, 199753200, 212976000, 231289200, 244512000, 262825200, 276048000, 294361200, 307584000, 325983600, 339206400, 357519600, 370742400, 396399600, 402278400, 426812400, 433814400, 452214000, 465436800, 483750000, 496972800, 515286000, 528508800, 546822000, 560044800, 578444400, 591667200, 610412400, 623203200, 641516400, 654739200, 673052400, 686275200, 704674800, 717897600, 736210800, 749433600, 767746800, 780969600, 799020000, 812322000, 830469600, 843771600, 861919200, 875221200, 893368800, 906670800, 925423200, 938725200, 956872800, 970174800, 988322400, 1001624400, 1019772000, 1033074000, 1051221600, 1064523600, 1083276000, 1096578000, 1114725600, 1128027600, 1146175200, 1158872400, 1177624800, 1189112400, 1209074400, 1219957200, 1240524000, 1250802000, 1272578400, 1281474000, 1284069600, 1285880400, 1400191200, 1403816400, 1406844000, 1411678800 }
    typeOffsets:intvector { 7509, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    links:intvector { 3, 18, 400 }
  } //Z#18
  /* Africa/Casablanca */ :table {
    trans:intvector { -1773012580, -956361600, -950490000, -942019200, -761187600, -617241600, -605149200, -81432000, -71110800, 141264000, 147222000, 199756800, 207702000, 231292800, 244249200, 265507200, 271033200, 448243200, 504918000, 1212278400, 1220223600, 1243814400, 1250809200, 1272758400, 1281222000, 1301788800, 1312066800, 1335664800, 1342749600, 1345428000, 1348970400, 1367114400, 1373162400, 1376100000, 1382839200, 1396144800, 1403920800, 1406944800, 1414288800, 1427594400, 1434247200, 1437271200, 1445738400, 1459044000, 1465092000, 1468116000, 1477792800, 1490493600, 1495332000, 1498960800, 1509242400, 1521943200, 1526176800, 1529200800, 1540692000, 1553997600, 1557021600, 1560045600, 1572141600, 1585447200, 1587261600, 1590285600, 1603591200, 1616896800, 1618106400, 1621130400, 1635645600, 1651975200, 1667095200, 1682215200, 1698544800, 1713060000, 1729994400, 1743904800, 1761444000, 1774749600, 1792893600, 1806199200, 1824948000, 1837648800, 1856397600, 1869098400, 1887847200, 1901152800, 1919296800, 1932602400, 1950746400, 1964052000, 1982800800, 1995501600, 2014250400, 2026951200, 2045700000, 2058400800, 2077149600, 2090455200, 2107994400, 2121904800, 2138234400 }
    transPost32:intvector { 0, -2141612896, 0, -2122864096 }
    typeOffsets:intvector { -1820, 0, 0, 0, 0, 3600, 3600, 0 }
    typeMap:bin { "0102010201020102010201020102010201030102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Morocco" }
    finalRaw:int { 0 }
    finalYear:int { 2039 }
  } //Z#19
  /* Africa/Ceuta */ :table {
    transPre32:intvector { -1, 2117514496 }
    trans:intvector { -1630112400, -1616810400, -1442451600, -1427673600, -1379293200, -1364774400, -1348448400, -1333324800, -1316390400, -1301270400, -81432000, -71110800, 141264000, 147222000, 199756800, 207702000, 231292800, 244249200, 265507200, 271033200, 448243200, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -1276, 0, 0, 0, 0, 3600, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#20
  /* Africa/Conakry */ :int { 5 } //Z#21
  /* Africa/Dakar */ :int { 5 } //Z#22
  /* Africa/Dar_es_Salaam */ :int { 48 } //Z#23
  /* Africa/Djibouti */ :int { 48 } //Z#24
  /* Africa/Douala */ :int { 36 } //Z#25
  /* Africa/El_Aaiun */ :table {
    trans:intvector { -1136070432, 198291600, 199756800, 207702000, 231292800, 244249200, 265507200, 271033200, 1212278400, 1220223600, 1243814400, 1250809200, 1272758400, 1281222000, 1301788800, 1312066800, 1335664800, 1342749600, 1345428000, 1348970400, 1367114400, 1373162400, 1376100000, 1382839200, 1396144800, 1403920800, 1406944800, 1414288800, 1427594400, 1434247200, 1437271200, 1445738400, 1459044000, 1465092000, 1468116000, 1477792800, 1490493600, 1495332000, 1498960800, 1509242400, 1521943200, 1526176800, 1529200800, 1540692000, 1553997600, 1557021600, 1560045600, 1572141600, 1585447200, 1587261600, 1590285600, 1603591200, 1616896800, 1618106400, 1621130400, 1635645600, 1651975200, 1667095200, 1682215200, 1698544800, 1713060000, 1729994400, 1743904800, 1761444000, 1774749600, 1792893600, 1806199200, 1824948000, 1837648800, 1856397600, 1869098400, 1887847200, 1901152800, 1919296800, 1932602400, 1950746400, 1964052000, 1982800800, 1995501600, 2014250400, 2026951200, 2045700000, 2058400800, 2077149600, 2090455200, 2107994400, 2121904800, 2138234400 }
    transPost32:intvector { 0, -2141612896, 0, -2122864096 }
    typeOffsets:intvector { -3168, 0, -3600, 0, 0, 0, 0, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "Morocco" }
    finalRaw:int { 0 }
    finalYear:int { 2039 }
  } //Z#26
  /* Africa/Freetown */ :int { 5 } //Z#27
  /* Africa/Gaborone */ :int { 43 } //Z#28
  /* Africa/Harare */ :int { 43 } //Z#29
  /* Africa/Johannesburg */ :table {
    transPre32:intvector { -1, 1836794176 }
    trans:intvector { -2109288600, -860976000, -845254800, -829526400, -813805200 }
    typeOffsets:intvector { 6720, 0, 5400, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "010203020302" }
    links:intvector { 30, 44, 45 }
  } //Z#30
  /* Africa/Juba */ :table {
    trans:intvector { -1230775588, 10360800, 24786000, 41810400, 56322000, 73432800, 87944400, 104882400, 119480400, 136332000, 151016400, 167781600, 182552400, 199231200, 214174800, 230680800, 245710800, 262735200, 277246800, 294184800, 308782800, 325634400, 340405200, 357084000, 371941200, 388533600, 403477200, 419983200, 435013200, 452037600, 466635600, 483487200, 498171600, 947930400 }
    typeOffsets:intvector { 7588, 0, 7200, 0, 7200, 3600, 10800, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020103" }
  } //Z#31
  /* Africa/Kampala */ :int { 48 } //Z#32
  /* Africa/Khartoum */ :table {
    trans:intvector { -1230775808, 10360800, 24786000, 41810400, 56322000, 73432800, 87944400, 104882400, 119480400, 136332000, 151016400, 167781600, 182552400, 199231200, 214174800, 230680800, 245710800, 262735200, 277246800, 294184800, 308782800, 325634400, 340405200, 357084000, 371941200, 388533600, 403477200, 419983200, 435013200, 452037600, 466635600, 483487200, 498171600, 947930400, 1509483600 }
    typeOffsets:intvector { 7808, 0, 7200, 0, 7200, 3600, 10800, 0 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010301" }
  } //Z#33
  /* Africa/Kigali */ :int { 43 } //Z#34
  /* Africa/Kinshasa */ :int { 36 } //Z#35
  /* Africa/Lagos */ :table {
    trans:intvector { -1588464816 }
    typeOffsets:intvector { 816, 0, 3600, 0 }
    typeMap:bin { "01" }
    links:intvector { 12, 16, 25, 35, 36, 37, 39, 42, 50, 53 }
  } //Z#36
  /* Africa/Libreville */ :int { 36 } //Z#37
  /* Africa/Lome */ :int { 5 } //Z#38
  /* Africa/Luanda */ :int { 36 } //Z#39
  /* Africa/Lubumbashi */ :int { 43 } //Z#40
  /* Africa/Lusaka */ :int { 43 } //Z#41
  /* Africa/Malabo */ :int { 36 } //Z#42
  /* Africa/Maputo */ :table {
    trans:intvector { -2109291020 }
    typeOffsets:intvector { 7820, 0, 7200, 0 }
    typeMap:bin { "01" }
    links:intvector { 15, 17, 28, 29, 34, 40, 41, 43, 377 }
  } //Z#43
  /* Africa/Maseru */ :int { 30 } //Z#44
  /* Africa/Mbabane */ :int { 30 } //Z#45
  /* Africa/Mogadishu */ :int { 48 } //Z#46
  /* Africa/Monrovia */ :table {
    trans:intvector { -1604359012, 63593070 }
    typeOffsets:intvector { -2588, 0, -2670, 0, 0, 0 }
    typeMap:bin { "0102" }
  } //Z#47
  /* Africa/Nairobi */ :table {
    trans:intvector { -1309746436, -1262314800, -946780200, -315629100 }
    typeOffsets:intvector { 8836, 0, 9000, 0, 9900, 0, 10800, 0 }
    typeMap:bin { "03010203" }
    links:intvector { 7, 9, 10, 23, 24, 32, 46, 48, 395, 514, 518, 523 }
  } //Z#48
  /* Africa/Ndjamena */ :table {
    trans:intvector { -1830387612, 308703600, 321314400 }
    typeOffsets:intvector { 3612, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201" }
  } //Z#49
  /* Africa/Niamey */ :int { 36 } //Z#50
  /* Africa/Nouakchott */ :int { 5 } //Z#51
  /* Africa/Ouagadougou */ :int { 5 } //Z#52
  /* Africa/Porto-Novo */ :int { 36 } //Z#53
  /* Africa/Sao_Tome */ :table {
    transPre32:intvector { -1, 1581055280 }
    trans:intvector { -1830384000, 1514768400 }
    typeOffsets:intvector { 1616, 0, -2205, 0, 0, 0, 3600, 0 }
    typeMap:bin { "010203" }
  } //Z#54
  /* Africa/Timbuktu */ :int { 5 } //Z#55
  /* Africa/Tripoli */ :table {
    trans:intvector { -1577926364, -574902000, -568087200, -512175600, -504928800, -449888400, -441856800, -347158800, 378684000, 386463600, 402271200, 417999600, 433807200, 449622000, 465429600, 481590000, 496965600, 512953200, 528674400, 544230000, 560037600, 575852400, 591660000, 607388400, 623196000, 641775600, 844034400, 860108400, 875916000, 1352505600, 1364515200, 1382659200 }
    typeOffsets:intvector { 3164, 0, 3600, 0, 3600, 3600, 7200, 0 }
    typeMap:bin { "0102010201020103010201020102010201020102010201020103010203010203" }
    links:intvector { 56, 531 }
  } //Z#56
  /* Africa/Tunis */ :table {
    transPre32:intvector { -1, 1497764852 }
    trans:intvector { -1855958961, -969242400, -950493600, -941940000, -891136800, -877827600, -857257200, -844556400, -842918400, -842223600, -828230400, -812502000, -796269600, -781052400, -766634400, 231202800, 243903600, 262825200, 276044400, 581122800, 591145200, 606870000, 622594800, 641516400, 654649200, 1114902000, 1128038400, 1143334800, 1162083600, 1174784400, 1193533200, 1206838800, 1224982800 }
    typeOffsets:intvector { 2444, 0, 561, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302" }
  } //Z#57
  /* Africa/Windhoek */ :table {
    transPre32:intvector { -1, 1836796792 }
    trans:intvector { -2109288600, -860976000, -845254800, 764200800, 778640400, 796780800, 810090000, 828835200, 841539600, 860284800, 873594000, 891734400, 905043600, 923184000, 936493200, 954633600, 967942800, 986083200, 999392400, 1018137600, 1030842000, 1049587200, 1062896400, 1081036800, 1094346000, 1112486400, 1125795600, 1143936000, 1157245200, 1175385600, 1188694800, 1207440000, 1220749200, 1238889600, 1252198800, 1270339200, 1283648400, 1301788800, 1315098000, 1333238400, 1346547600, 1365292800, 1377997200, 1396742400, 1410051600, 1428192000, 1441501200, 1459641600, 1472950800, 1491091200, 1504400400, 1508796000 }
    typeOffsets:intvector { 4104, 0, 3600, 0, 3600, 3600, 5400, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "0304050401020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010204" }
  } //Z#58
  /* America/Adak */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106022494 }
    trans:intvector { -880196400, -765374400, -21466800, -5745600, 9982800, 25704000, 41432400, 57758400, 73486800, 89208000, 104936400, 120657600, 126709200, 152107200, 162392400, 183556800, 199285200, 215611200, 230734800, 247060800, 262789200, 278510400, 294238800, 309960000, 325688400, 341409600, 357138000, 372859200, 388587600, 404913600, 420037200, 436363200, 452088000, 467809200, 483537600, 499258800, 514987200, 530708400, 544622400, 562158000, 576072000, 594212400, 607521600, 625662000, 638971200, 657111600, 671025600, 688561200, 702475200, 720010800, 733924800, 752065200, 765374400, 783514800, 796824000, 814964400, 828878400, 846414000, 860328000, 877863600, 891777600, 909313200, 923227200, 941367600, 954676800, 972817200, 986126400, 1004266800, 1018180800, 1035716400, 1049630400, 1067166000, 1081080000, 1099220400, 1112529600, 1130670000, 1143979200, 1162119600, 1173614400, 1194174000 }
    typeOffsets:intvector { 44002, 0, -42398, 0, -39600, 0, -39600, 3600, -36000, 0, -36000, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020304050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "US" }
    finalRaw:int { -36000 }
    finalYear:int { 2008 }
    links:intvector { 59, 80, 615 }
  } //Z#59
  /* America/Anchorage */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106016072 }
    trans:intvector { -880200000, -765378000, -21470400, -5749200, 9979200, 25700400, 41428800, 57754800, 73483200, 89204400, 104932800, 120654000, 126705600, 152103600, 162388800, 183553200, 199281600, 215607600, 230731200, 247057200, 262785600, 278506800, 294235200, 309956400, 325684800, 341406000, 357134400, 372855600, 388584000, 404910000, 420033600, 436359600, 452084400, 467805600, 483534000, 499255200, 514983600, 530704800, 544618800, 562154400, 576068400, 594208800, 607518000, 625658400, 638967600, 657108000, 671022000, 688557600, 702471600, 720007200, 733921200, 752061600, 765370800, 783511200, 796820400, 814960800, 828874800, 846410400, 860324400, 877860000, 891774000, 909309600, 923223600, 941364000, 954673200, 972813600, 986122800, 1004263200, 1018177200, 1035712800, 1049626800, 1067162400, 1081076400, 1099216800, 1112526000, 1130666400, 1143975600, 1162116000, 1173610800, 1194170400 }
    typeOffsets:intvector { 50424, 0, -36000, 0, -36000, 3600, -35976, 0, -32400, 0, -32400, 3600 }
    typeMap:bin { "03010201020102010201020102010201020102010201020102010201020102010204050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "US" }
    finalRaw:int { -32400 }
    finalYear:int { 2008 }
    links:intvector { 4, 60, 614 }
  } //Z#60
  /* America/Anguilla */ :int { 186 } //Z#61
  /* America/Antigua */ :int { 186 } //Z#62
  /* America/Araguaina */ :table {
    trans:intvector { -1767214032, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -191365200, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600, 592974000, 602042400, 624423600, 634701600, 813726000, 824004000, 844570800, 856058400, 876106800, 888717600, 908074800, 919562400, 938919600, 951616800, 970974000, 982461600, 1003028400, 1013911200, 1036292400, 1045360800, 1350788400, 1361066400 }
    typeOffsets:intvector { -11568, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#63
  /* America/Argentina/Buenos_Aires */ :table {
    transPre32:intvector { -1, 1922869324 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687927600, 699415200, 719377200, 731469600, 938919600, 952052400, 1198983600, 1205632800, 1224385200, 1237082400 }
    typeOffsets:intvector { -14028, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030204050405040504050405040504030405040504" }
    links:intvector { 2, 64, 90 }
  } //Z#64
  /* America/Argentina/Catamarca */ :table {
    transPre32:intvector { -1, 1922871084 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687931200, 699415200, 719377200, 731469600, 938919600, 952052400, 1086058800, 1087704000, 1198983600, 1205632800 }
    typeOffsets:intvector { -15788, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030204050405040504050205040504030402040504" }
    links:intvector { 65, 66, 95 }
  } //Z#65
  /* America/Argentina/ComodRivadavia */ :int { 65 } //Z#66
  /* America/Argentina/Cordoba */ :table {
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687931200, 699415200, 719377200, 731469600, 938919600, 952052400, 1198983600, 1205632800, 1224385200, 1237082400 }
    typeOffsets:intvector { -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020103040304030403040104030403020304030403" }
    links:intvector { 67, 101, 197 }
  } //Z#67
  /* America/Argentina/Jujuy */ :table {
    transPre32:intvector { -1, 1922870968 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 657086400, 669178800, 686721600, 699415200, 719377200, 731469600, 938919600, 952052400, 1198983600, 1205632800 }
    typeOffsets:intvector { -15672, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020405040504050203020504050403040504" }
    links:intvector { 68, 143 }
  } //Z#68
  /* America/Argentina/La_Rioja */ :table {
    transPre32:intvector { -1, 1922871340 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667792800, 673588800, 687927600, 699415200, 719377200, 731469600, 938919600, 952052400, 1086058800, 1087704000, 1198983600, 1205632800 }
    typeOffsets:intvector { -16044, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020405040504050405020405040504030402040504" }
  } //Z#69
  /* America/Argentina/Mendoza */ :table {
    transPre32:intvector { -1, 1922871812 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 655963200, 667796400, 687499200, 699418800, 719380800, 731469600, 938919600, 952052400, 1085281200, 1096171200, 1198983600, 1205632800 }
    typeOffsets:intvector { -16516, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030204050405040502030203020504030402040504" }
    links:intvector { 70, 161 }
  } //Z#70
  /* America/Argentina/Rio_Gallegos */ :table {
    transPre32:intvector { -1, 1922871908 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687927600, 699415200, 719377200, 731469600, 938919600, 952052400, 1086058800, 1087704000, 1198983600, 1205632800 }
    typeOffsets:intvector { -16612, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030204050405040504050405040504030402040504" }
  } //Z#71
  /* America/Argentina/Salta */ :table {
    transPre32:intvector { -1, 1922870996 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687931200, 699415200, 719377200, 731469600, 938919600, 952052400, 1198983600, 1205632800 }
    typeOffsets:intvector { -15700, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020405040504050405020504050403040504" }
  } //Z#72
  /* America/Argentina/San_Juan */ :table {
    transPre32:intvector { -1, 1922871740 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667792800, 673588800, 687927600, 699415200, 719377200, 731469600, 938919600, 952052400, 1085972400, 1090728000, 1198983600, 1205632800 }
    typeOffsets:intvector { -16444, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020405040504050405020405040504030402040504" }
  } //Z#73
  /* America/Argentina/San_Luis */ :table {
    transPre32:intvector { -1, 1922871220 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 637380000, 655963200, 667796400, 675748800, 938919600, 952052400, 1085972400, 1090728000, 1198983600, 1200880800, 1205031600, 1223784000, 1236481200, 1255233600 }
    typeOffsets:intvector { -15924, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020405040504050203020403040204050302030204" }
  } //Z#74
  /* America/Argentina/Tucuman */ :table {
    transPre32:intvector { -1, 1922870948 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687931200, 699415200, 719377200, 731469600, 938919600, 952052400, 1086058800, 1087099200, 1198983600, 1205632800, 1224385200, 1237082400 }
    typeOffsets:intvector { -15652, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302040504050405040502050405040304020405040504" }
  } //Z#75
  /* America/Argentina/Ushuaia */ :table {
    transPre32:intvector { -1, 1922871688 }
    trans:intvector { -1567453392, -1233432000, -1222981200, -1205956800, -1194037200, -1172865600, -1162501200, -1141329600, -1130965200, -1109793600, -1099429200, -1078257600, -1067806800, -1046635200, -1036270800, -1015099200, -1004734800, -983563200, -973198800, -952027200, -941576400, -931032000, -900882000, -890337600, -833749200, -827265600, -752274000, -733780800, -197326800, -190843200, -184194000, -164491200, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 596948400, 605066400, 624423600, 636516000, 656478000, 667965600, 687927600, 699415200, 719377200, 731469600, 938919600, 952052400, 1085886000, 1087704000, 1198983600, 1205632800 }
    typeOffsets:intvector { -16392, 0, -15408, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030204050405040504050405040504030402040504" }
  } //Z#76
  /* America/Aruba */ :int { 105 } //Z#77
  /* America/Asuncion */ :table {
    trans:intvector { -1206389360, 86760000, 134017200, 181368000, 194497200, 212990400, 226033200, 244526400, 257569200, 276062400, 291783600, 307598400, 323406000, 339220800, 354942000, 370756800, 386478000, 402292800, 418014000, 433828800, 449636400, 465451200, 481172400, 496987200, 512708400, 528523200, 544244400, 560059200, 575866800, 591681600, 607402800, 625032000, 638938800, 654753600, 670474800, 686721600, 699418800, 718257600, 733546800, 749448000, 762318000, 780984000, 793767600, 812520000, 825649200, 844574400, 856666800, 876024000, 888721200, 907473600, 920775600, 938923200, 952225200, 970372800, 983674800, 1002427200, 1018148400, 1030852800, 1049598000, 1062907200, 1081047600, 1097985600, 1110682800, 1129435200, 1142132400, 1160884800, 1173582000, 1192939200, 1205031600, 1224388800, 1236481200, 1255838400, 1270954800, 1286078400, 1302404400, 1317528000, 1333854000, 1349582400, 1364094000, 1381032000 }
    typeOffsets:intvector { -13840, 0, -14400, 0, -14400, 3600, -10800, 0 }
    typeMap:bin { "0103010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "Para" }
    finalRaw:int { -14400 }
    finalYear:int { 2014 }
  } //Z#78
  /* America/Atikokan */ :table {
    transPre32:intvector { -1, 1928234084 }
    trans:intvector { -1632067200, -1615136400, -923248800, -765392400 }
    typeOffsets:intvector { -21988, 0, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "0102010203" }
    links:intvector { 79, 100 }
  } //Z#79
  /* America/Atka */ :int { 59 } //Z#80
  /* America/Bahia */ :table {
    trans:intvector { -1767216356, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -191365200, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600, 592974000, 602042400, 624423600, 634701600, 656478000, 666756000, 687927600, 697600800, 719982000, 728445600, 750826800, 761709600, 782276400, 793159200, 813726000, 824004000, 844570800, 856058400, 876106800, 888717600, 908074800, 919562400, 938919600, 951616800, 970974000, 982461600, 1003028400, 1013911200, 1036292400, 1045360800, 1318734000, 1330221600 }
    typeOffsets:intvector { -9244, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#81
  /* America/Bahia_Banderas */ :table {
    trans:intvector { -1514739600, -1343066400, -1234807200, -1220292000, -1207159200, -1191344400, -873828000, -661539600, 28800, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 989139600, 1001836800, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1175418000, 1193558400, 1207472400, 1225008000, 1238922000, 1256457600, 1270371600, 1288508400, 1301817600, 1319958000 }
    typeOffsets:intvector { -25260, 0, -28800, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "0204020402040201020302030203020302030203020302030203020302030203020302030205040504" }
    finalRule { "Mexico" }
    finalRaw:int { -21600 }
    finalYear:int { 2012 }
  } //Z#82
  /* America/Barbados */ :table {
    trans:intvector { -1199217691, 234943200, 244616400, 261554400, 276066000, 293004000, 307515600, 325058400, 338706000 }
    typeOffsets:intvector { -14309, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "010201020102010201" }
  } //Z#83
  /* America/Belem */ :table {
    trans:intvector { -1767213964, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -191365200, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600 }
    typeOffsets:intvector { -11636, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201" }
  } //Z#84
  /* America/Belize */ :table {
    trans:intvector { -1822500432, -1616954400, -1606069800, -1585504800, -1574015400, -1554055200, -1542565800, -1522605600, -1511116200, -1490551200, -1479666600, -1459101600, -1448217000, -1427652000, -1416162600, -1396202400, -1384713000, -1364752800, -1353263400, -1333303200, -1321813800, -1301248800, -1290364200, -1269799200, -1258914600, -1238349600, -1226860200, -1206900000, -1195410600, -1175450400, -1163961000, -1143396000, -1132511400, -1111946400, -1101061800, -1080496800, -1069612200, -1049047200, -1037557800, -1017597600, -1006108200, -986148000, -974658600, -954093600, -943209000, -922644000, -911759400, -891194400, -879705000, -859744800, -848255400, 123919200, 129618000, 409039200, 413874000 }
    typeOffsets:intvector { -21168, 0, -21600, 0, -21600, 1800, -21600, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020103010301" }
  } //Z#85
  /* America/Blanc-Sablon */ :table {
    transPre32:intvector { -1, 1581070604 }
    trans:intvector { -1632074400, -1615143600, -880221600, -765399600 }
    typeOffsets:intvector { -13708, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "0102010201" }
  } //Z#86
  /* America/Boa_Vista */ :table {
    trans:intvector { -1767211040, -1206954000, -1191358800, -1175371200, -1159822800, -633816000, -622065600, -602280000, -591829200, -570744000, -560206800, -539121600, -531349200, -191361600, -184194000, -155160000, -150066000, -128894400, -121122000, -99950400, -89586000, -68414400, -57963600, 499752000, 511239600, 530596800, 540270000, 562132800, 571201200, 938923200, 951620400, 970977600, 971578800 }
    typeOffsets:intvector { -14560, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#87
  /* America/Bogota */ :table {
    trans:intvector { -1739041424, 704869200, 733896000 }
    typeOffsets:intvector { -17776, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201" }
  } //Z#88
  /* America/Boise */ :table {
    transPre32:intvector { -1, 1577327296 }
    trans:intvector { -1633269600, -1615129200, -1601820000, -1583679600, -1471788000, -880210800, -765388800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 129114000, 152092800, 162378000, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { -27889, 0, -28800, 0, -28800, 3600, -25200, 0, -25200, 3600 }
    typeMap:bin { "010201020103040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
  } //Z#89
  /* America/Buenos_Aires */ :int { 64 } //Z#90
  /* America/Cambridge_Bay */ :table {
    trans:intvector { -1577923200, -880210800, -765388800, -147891600, -131562000, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954662400, 972802800, 973400400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { 0, 0, -25200, 0, -25200, 3600, -25200, 7200, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "0102010301020102010201020102010201020102010201020102010201020102010201020102010201020102040506040201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
  } //Z#91
  /* America/Campo_Grande */ :table {
    trans:intvector { -1767212492, -1206954000, -1191358800, -1175371200, -1159822800, -633816000, -622065600, -602280000, -591829200, -570744000, -560206800, -539121600, -531349200, -191361600, -184194000, -155160000, -150066000, -128894400, -121122000, -99950400, -89586000, -68414400, -57963600, 499752000, 511239600, 530596800, 540270000, 562132800, 571201200, 592977600, 602046000, 624427200, 634705200, 656481600, 666759600, 687931200, 697604400, 719985600, 728449200, 750830400, 761713200, 782280000, 793162800, 813729600, 824007600, 844574400, 856062000, 876110400, 888721200, 908078400, 919566000, 938923200, 951620400, 970977600, 982465200, 1003032000, 1013914800, 1036296000, 1045364400, 1066536000, 1076814000, 1099368000, 1108868400, 1129435200, 1140318000, 1162699200, 1172372400, 1192334400, 1203217200, 1224388800, 1234666800, 1255838400, 1266721200, 1287288000, 1298170800, 1318737600, 1330225200, 1350792000, 1361070000, 1382241600, 1392519600, 1413691200, 1424574000, 1445140800, 1456023600, 1476590400, 1487473200, 1508040000, 1518922800, 1541304000, 1550372400, 1572753600, 1581822000, 1604203200, 1613876400, 1636257600, 1645326000, 1667707200, 1677380400, 1699156800, 1708225200, 1730606400, 1739674800, 1762056000, 1771729200, 1793505600, 1803178800, 1825560000, 1834628400, 1857009600, 1866078000, 1888459200, 1897527600, 1919908800, 1928977200, 1951358400, 1960426800, 1983412800, 1992481200, 2014862400, 2024535600, 2046312000, 2055380400, 2077761600, 2086830000, 2109211200, 2118884400, 2140660800 }
    transPost32:intvector { 0, -2144633296, 0, -2122252096 }
    typeOffsets:intvector { -13108, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "Brazil" }
    finalRaw:int { -14400 }
    finalYear:int { 2039 }
  } //Z#92
  /* America/Cancun */ :table {
    trans:intvector { -1514743200, 377935200, 828860400, 846396000, 860310000, 877845600, 891759600, 902037600, 909298800, 923212800, 941353200, 954662400, 972802800, 989136000, 1001833200, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1175414400, 1193554800, 1207468800, 1225004400, 1238918400, 1256454000, 1270368000, 1288508400, 1301817600, 1319958000, 1333267200, 1351407600, 1365321600, 1382857200, 1396771200, 1414306800, 1422777600 }
    typeOffsets:intvector { -20824, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010304030403040201020102010201020102010201020102010201020102010201020102010201020103" }
  } //Z#93
  /* America/Caracas */ :table {
    transPre32:intvector { -1, 1770461760 }
    trans:intvector { -1826739140, -157750200, 1197183600, 1462086000 }
    typeOffsets:intvector { -16064, 0, -16200, 0, -16060, 0, -14400, 0 }
    typeMap:bin { "0201030103" }
  } //Z#94
  /* America/Catamarca */ :int { 65 } //Z#95
  /* America/Cayenne */ :table {
    trans:intvector { -1846269040, -71092800 }
    typeOffsets:intvector { -12560, 0, -14400, 0, -10800, 0 }
    typeMap:bin { "0102" }
  } //Z#96
  /* America/Cayman */ :int { 181 } //Z#97
  /* America/Chicago */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -1563724800, -1551632400, -1538928000, -1520182800, -1504454400, -1491757200, -1473004800, -1459702800, -1441555200, -1428253200, -1410105600, -1396803600, -1378656000, -1365354000, -1347206400, -1333904400, -1315152000, -1301850000, -1283702400, -1270400400, -1252252800, -1238950800, -1220803200, -1207501200, -1189353600, -1176051600, -1157299200, -1144602000, -1125849600, -1112547600, -1094400000, -1081098000, -1067788800, -1045414800, -1031500800, -1018198800, -1000051200, -986749200, -967996800, -955299600, -936547200, -923245200, -905097600, -891795600, -880214400, -765392400, -747244800, -733942800, -715795200, -702493200, -684345600, -671043600, -652896000, -639594000, -620841600, -608144400, -589392000, -576090000, -557942400, -544640400, -526492800, -513190800, -495043200, -481741200, -463593600, -447267600, -431539200, -415818000, -400089600, -384368400, -368640000, -352918800, -337190400, -321469200, -305740800, -289414800, -273686400, -257965200, -242236800, -226515600, -210787200, -195066000, -179337600, -163616400, -147888000, -131562000, -116438400, -100112400, -84384000, -68662800, -52934400, -37213200, -21484800, -5763600, 9964800, 25686000, 41414400, 57740400, 73468800, 89190000, 104918400, 120639600, 126691200, 152089200, 162374400, 183538800, 199267200, 215593200, 230716800, 247042800, 262771200, 278492400, 294220800, 309942000, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -21036, 0, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201030102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
    links:intvector { 98, 380, 617 }
  } //Z#98
  /* America/Chihuahua */ :table {
    trans:intvector { -1514739600, -1343066400, -1234807200, -1220292000, -1207159200, -1191344400, 828864000, 846399600, 860313600, 877849200, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 989139600, 1001836800, 1018170000, 1035705600 }
    typeOffsets:intvector { -25460, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "0103010301030403040302010201020102010201" }
    finalRule { "Mexico" }
    finalRaw:int { -25200 }
    finalYear:int { 2003 }
  } //Z#99
  /* America/Coral_Harbour */ :int { 79 } //Z#100
  /* America/Cordoba */ :int { 67 } //Z#101
  /* America/Costa_Rica */ :table {
    trans:intvector { -1545071027, 288770400, 297234000, 320220000, 328683600, 664264800, 678344400, 695714400, 700635600 }
    typeOffsets:intvector { -20173, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "010201020102010201" }
  } //Z#102
  /* America/Creston */ :table {
    transPre32:intvector { -1, 1581084860 }
    trans:intvector { -1680454800, -1627833600 }
    typeOffsets:intvector { -27964, 0, -28800, 0, -25200, 0 }
    typeMap:bin { "020102" }
  } //Z#103
  /* America/Cuiaba */ :table {
    trans:intvector { -1767212140, -1206954000, -1191358800, -1175371200, -1159822800, -633816000, -622065600, -602280000, -591829200, -570744000, -560206800, -539121600, -531349200, -191361600, -184194000, -155160000, -150066000, -128894400, -121122000, -99950400, -89586000, -68414400, -57963600, 499752000, 511239600, 530596800, 540270000, 562132800, 571201200, 592977600, 602046000, 624427200, 634705200, 656481600, 666759600, 687931200, 697604400, 719985600, 728449200, 750830400, 761713200, 782280000, 793162800, 813729600, 824007600, 844574400, 856062000, 876110400, 888721200, 908078400, 919566000, 938923200, 951620400, 970977600, 982465200, 1003032000, 1013914800, 1036296000, 1045364400, 1099368000, 1108868400, 1129435200, 1140318000, 1162699200, 1172372400, 1192334400, 1203217200, 1224388800, 1234666800, 1255838400, 1266721200, 1287288000, 1298170800, 1318737600, 1330225200, 1350792000, 1361070000, 1382241600, 1392519600, 1413691200, 1424574000, 1445140800, 1456023600, 1476590400, 1487473200, 1508040000, 1518922800, 1541304000, 1550372400, 1572753600, 1581822000, 1604203200, 1613876400, 1636257600, 1645326000, 1667707200, 1677380400, 1699156800, 1708225200, 1730606400, 1739674800, 1762056000, 1771729200, 1793505600, 1803178800, 1825560000, 1834628400, 1857009600, 1866078000, 1888459200, 1897527600, 1919908800, 1928977200, 1951358400, 1960426800, 1983412800, 1992481200, 2014862400, 2024535600, 2046312000, 2055380400, 2077761600, 2086830000, 2109211200, 2118884400, 2140660800 }
    transPost32:intvector { 0, -2144633296, 0, -2122252096 }
    typeOffsets:intvector { -13460, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "Brazil" }
    finalRaw:int { -14400 }
    finalYear:int { 2039 }
  } //Z#104
  /* America/Curacao */ :table {
    trans:intvector { -1826738653, -157750200 }
    typeOffsets:intvector { -16547, 0, -16200, 0, -14400, 0 }
    typeMap:bin { "0102" }
    links:intvector { 77, 105, 148, 153 }
  } //Z#105
  /* America/Danmarkshavn */ :table {
    trans:intvector { -1686091520, 323845200, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 820465200 }
    typeOffsets:intvector { -4480, 0, -10800, 0, -10800, 3600, 0, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020103" }
  } //Z#106
  /* America/Dawson */ :table {
    transPre32:intvector { -1, 2105970356 }
    trans:intvector { -1632056400, -1615125600, -1596978000, -1583164800, -880203600, -765381600, -147884400, -131554800, 120646800, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1173607200, 1194166800 }
    typeOffsets:intvector { -33460, 0, -32400, 0, -32400, 3600, -32400, 7200, -28800, 0, -28800, 3600 }
    typeMap:bin { "010201020102010301040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "Canada" }
    finalRaw:int { -28800 }
    finalYear:int { 2008 }
  } //Z#107
  /* America/Dawson_Creek */ :table {
    transPre32:intvector { -1, 1581085752 }
    trans:intvector { -1632060000, -1615129200, -880207200, -765385200, -715788000, -702486000, -684338400, -671036400, -652888800, -639586800, -620834400, -608137200, -589384800, -576082800, -557935200, -544633200, -526485600, -513183600, -495036000, -481734000, -463586400, -450284400, -431532000, -418230000, -400082400, -386780400, -368632800, -355330800, -337183200, -323881200, -305733600, -292431600, -273679200, -260982000, -242229600, -226508400, -210780000, -195058800, -179330400, -163609200, -147880800, -131554800, -116431200, -100105200, -84376800, -68655600, -52927200, -37206000, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 84013200 }
    typeOffsets:intvector { -28856, 0, -28800, 0, -28800, 3600, -25200, 0 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203" }
  } //Z#108
  /* America/Denver */ :table {
    transPre32:intvector { -1, 1577323696 }
    trans:intvector { -1633273200, -1615132800, -1601823600, -1583683200, -1570374000, -1551628800, -1538924400, -1534089600, -880210800, -765388800, -147884400, -131558400, -116434800, -100108800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 126694800, 152092800, 162378000, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { -25196, 0, -25200, 0, -25200, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
    links:intvector { 109, 204, 543, 623 }
  } //Z#109
  /* America/Detroit */ :table {
    trans:intvector { -2051202469, -1724083200, -880218000, -765396000, -684349200, -671047200, 104914800, 120636000, 126687600, 152085600, 167814000, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -19931, 0, -21600, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
    links:intvector { 110, 622 }
  } //Z#110
  /* America/Dominica */ :int { 186 } //Z#111
  /* America/Edmonton */ :table {
    trans:intvector { -1998663968, -1632063600, -1615132800, -1600614000, -1596816000, -1567954800, -1551628800, -1536505200, -1523203200, -1504450800, -1491753600, -1473001200, -1459699200, -880210800, -765388800, -715791600, -702489600, -84380400, -68659200, -21481200, -5760000, 73472400, 89193600, 104922000, 120643200, 136371600, 152092800, 167821200, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { -27232, 0, -25200, 0, -25200, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
    links:intvector { 112, 387 }
  } //Z#112
  /* America/Eirunepe */ :table {
    trans:intvector { -1767208832, -1206950400, -1191355200, -1175367600, -1159819200, -633812400, -622062000, -602276400, -591825600, -570740400, -560203200, -539118000, -531345600, -191358000, -184190400, -155156400, -150062400, -128890800, -121118400, -99946800, -89582400, -68410800, -57960000, 499755600, 511243200, 530600400, 540273600, 562136400, 571204800, 750834000, 761716800, 1214283600, 1384056000 }
    typeOffsets:intvector { -16768, 0, -18000, 0, -18000, 3600, -14400, 0 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010301" }
  } //Z#113
  /* America/El_Salvador */ :table {
    trans:intvector { -1546279392, 547020000, 559717200, 578469600, 591166800 }
    typeOffsets:intvector { -21408, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "0102010201" }
  } //Z#114
  /* America/Ensenada */ :int { 216 } //Z#115
  /* America/Fort_Nelson */ :table {
    transPre32:intvector { -1, 1581086343 }
    trans:intvector { -1632060000, -1615129200, -880207200, -765385200, -715788000, -702486000, -684338400, -671036400, -652888800, -639586800, -620834400, -608137200, -589384800, -576082800, -557935200, -544633200, -526485600, -513183600, -495036000, -481734000, -463586400, -450284400, -431532000, -418230000, -400082400, -386780400, -368632800, -355330800, -337183200, -323881200, -305733600, -292431600, -273679200, -260982000, -242229600, -226508400, -210780000, -195058800, -179330400, -163609200, -147880800, -131554800, -116431200, -100105200, -84376800, -68655600, -52927200, -37206000, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 136375200, 152096400, 167824800, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1173607200, 1194166800, 1205056800, 1225616400, 1236506400, 1257066000, 1268560800, 1289120400, 1300010400, 1320570000, 1331460000, 1352019600, 1362909600, 1383469200, 1394359200, 1414918800, 1425808800 }
    typeOffsets:intvector { -29447, 0, -28800, 0, -28800, 3600, -25200, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020103" }
  } //Z#116
  /* America/Fort_Wayne */ :int { 131 } //Z#117
  /* America/Fortaleza */ :table {
    trans:intvector { -1767216360, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -191365200, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600, 592974000, 602042400, 624423600, 634701600, 938919600, 951616800, 970974000, 972180000, 1003028400, 1013911200 }
    typeOffsets:intvector { -9240, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#118
  /* America/Glace_Bay */ :table {
    trans:intvector { -2131646412, -1632074400, -1615143600, -880221600, -765399600, -526500000, -513198000, 73461600, 89182800, 104911200, 120632400, 136360800, 152082000, 167810400, 183531600, 199260000, 215586000, 230709600, 247035600, 262764000, 278485200, 294213600, 309934800, 325663200, 341384400, 357112800, 372834000, 388562400, 404888400, 420012000, 436338000, 452066400, 467787600, 483516000, 499237200, 514965600, 530686800, 544600800, 562136400, 576050400, 594190800, 607500000, 625640400, 638949600, 657090000, 671004000, 688539600, 702453600, 719989200, 733903200, 752043600, 765352800, 783493200, 796802400, 814942800, 828856800, 846392400, 860306400, 877842000, 891756000, 909291600, 923205600, 941346000, 954655200, 972795600, 986104800, 1004245200, 1018159200, 1035694800, 1049608800, 1067144400, 1081058400, 1099198800, 1112508000, 1130648400, 1143957600, 1162098000, 1173592800, 1194152400 }
    typeOffsets:intvector { -14388, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -14400 }
    finalYear:int { 2008 }
  } //Z#119
  /* America/Godthab */ :table {
    trans:intvector { -1686083584, 323845200, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -12416, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { -10800 }
    finalYear:int { 1997 }
  } //Z#120
  /* America/Goose_Bay */ :table {
    transPre32:intvector { -1, 1581071396 }
    trans:intvector { -1632076148, -1615145348, -1096921748, -1061670600, -1048973400, -1030221000, -1017523800, -998771400, -986074200, -966717000, -954624600, -935267400, -922570200, -903817800, -891120600, -872368200, -765401400, -746044200, -733347000, -714594600, -701897400, -683145000, -670447800, -651695400, -638998200, -619641000, -606943800, -589401000, -576099000, -557951400, -544649400, -526501800, -513199800, -495052200, -481750200, -463602600, -450300600, -431548200, -418246200, -400098600, -386796600, -368649000, -355347000, -337199400, -323897400, -305749800, -289423800, -273695400, -257974200, -242245800, -226524600, -210796200, -195075000, -179346600, -163625400, -147897000, -131571000, -119903400, -116445600, -100119600, -84391200, -68670000, -52941600, -37220400, -21492000, -5770800, 9957600, 25678800, 41407200, 57733200, 73461600, 89182800, 104911200, 120632400, 136360800, 152082000, 167810400, 183531600, 199260000, 215586000, 230709600, 247035600, 262764000, 278485200, 294213600, 309934800, 325663200, 341384400, 357112800, 372834000, 388562400, 404888400, 420012000, 436338000, 452066400, 467787600, 483516000, 499237200, 514965600, 530686800, 544593660, 562129260, 576043260, 594180060, 607492860, 625633260, 638942460, 657082860, 670996860, 688532460, 702446460, 719982060, 733896060, 752036460, 765345660, 783486060, 796795260, 814935660, 828849660, 846385260, 860299260, 877834860, 891748860, 909284460, 923198460, 941338860, 954648060, 972788460, 986097660, 1004238060, 1018152060, 1035687660, 1049601660, 1067137260, 1081051260, 1099191660, 1112500860, 1130641260, 1143950460, 1162090860, 1173585660, 1194145260, 1205035260, 1225594860, 1236484860, 1257044460, 1268539260, 1289098860, 1299988860, 1320555600, 1331445600, 1352005200 }
    typeOffsets:intvector { -14500, 0, -14400, 0, -14400, 3600, -14400, 7200, -12652, 0, -12652, 3600, -12600, 0, -12600, 3600 }
    typeMap:bin { "040504060706070607060706070607060706070607060706070607060706070607060706070607060706070607060706070607060706070607060102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010301020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -14400 }
    finalYear:int { 2013 }
  } //Z#121
  /* America/Grand_Turk */ :table {
    transPre32:intvector { -1, 1770462768 }
    trans:intvector { -1827687170, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000, 1205046000, 1225605600, 1236495600, 1257055200, 1268550000, 1289109600, 1299999600, 1320559200, 1331449200, 1352008800, 1362898800, 1383458400, 1394348400, 1414908000, 1425798000, 1446357600, 1520751600, 1541311200 }
    typeOffsets:intvector { -17072, 0, -18430, 0, -18000, 0, -18000, 3600, -14400, 0 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203040302" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2019 }
  } //Z#122
  /* America/Grenada */ :int { 186 } //Z#123
  /* America/Guadeloupe */ :int { 186 } //Z#124
  /* America/Guatemala */ :table {
    trans:intvector { -1617040676, 123055200, 130914000, 422344800, 433054800, 669708000, 684219600, 1146376800, 1159678800 }
    typeOffsets:intvector { -21724, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "010201020102010201" }
  } //Z#125
  /* America/Guayaquil */ :table {
    transPre32:intvector { -1, 1770464856 }
    trans:intvector { -1230749160, 722926800, 728884800 }
    typeOffsets:intvector { -19160, 0, -18840, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "01020302" }
  } //Z#126
  /* America/Guyana */ :table {
    trans:intvector { -1730578040, 176010300, 662698800 }
    typeOffsets:intvector { -13960, 0, -14400, 0, -13500, 0, -10800, 0 }
    typeMap:bin { "020301" }
  } //Z#127
  /* America/Halifax */ :table {
    trans:intvector { -2131645536, -1696276800, -1680469200, -1632074400, -1615143600, -1566763200, -1557090000, -1535486400, -1524949200, -1504468800, -1493413200, -1472414400, -1461963600, -1440964800, -1429390800, -1409515200, -1396731600, -1376856000, -1366491600, -1346616000, -1333832400, -1313956800, -1303678800, -1282507200, -1272661200, -1251057600, -1240088400, -1219608000, -1207429200, -1188763200, -1175979600, -1157313600, -1143925200, -1124049600, -1113771600, -1091390400, -1081026000, -1059854400, -1050786000, -1030910400, -1018126800, -999460800, -986677200, -965592000, -955227600, -935956800, -923173200, -904507200, -891723600, -880221600, -765399600, -747252000, -733950000, -715802400, -702500400, -684352800, -671050800, -652903200, -639601200, -589399200, -576097200, -557949600, -544647600, -526500000, -513198000, -495050400, -481748400, -431546400, -418244400, -400096800, -386794800, -368647200, -355345200, -337197600, -323895600, -242244000, -226522800, -210794400, -195073200, -179344800, -163623600, -147895200, -131569200, -116445600, -100119600, -84391200, -68670000, -52941600, -37220400, -21492000, -5770800, 9957600, 25678800, 41407200, 57733200, 73461600, 89182800, 104911200, 120632400, 136360800, 152082000, 167810400, 183531600, 199260000, 215586000, 230709600, 247035600, 262764000, 278485200, 294213600, 309934800, 325663200, 341384400, 357112800, 372834000, 388562400, 404888400, 420012000, 436338000, 452066400, 467787600, 483516000, 499237200, 514965600, 530686800, 544600800, 562136400, 576050400, 594190800, 607500000, 625640400, 638949600, 657090000, 671004000, 688539600, 702453600, 719989200, 733903200, 752043600, 765352800, 783493200, 796802400, 814942800, 828856800, 846392400, 860306400, 877842000, 891756000, 909291600, 923205600, 941346000, 954655200, 972795600, 986104800, 1004245200, 1018159200, 1035694800, 1049608800, 1067144400, 1081058400, 1099198800, 1112508000, 1130648400, 1143957600, 1162098000, 1173592800, 1194152400 }
    typeOffsets:intvector { -15264, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -14400 }
    finalYear:int { 2008 }
    links:intvector { 128, 383 }
  } //Z#128
  /* America/Havana */ :table {
    transPre32:intvector { -1, 1770465464 }
    trans:intvector { -1402813824, -1311534000, -1300996800, -933534000, -925675200, -902084400, -893620800, -870030000, -862171200, -775681200, -767822400, -744231600, -736372800, -144702000, -134251200, -113425200, -102542400, -86295600, -72907200, -54154800, -41457600, -21495600, -5774400, 9954000, 25675200, 41403600, 57729600, 73458000, 87364800, 104907600, 118900800, 136357200, 150436800, 167806800, 183528000, 199256400, 215582400, 230706000, 247032000, 263365200, 276667200, 290581200, 308721600, 322030800, 340171200, 358318800, 371620800, 389768400, 403070400, 421218000, 434520000, 452667600, 466574400, 484117200, 498024000, 511333200, 529473600, 542782800, 560923200, 574837200, 592372800, 606286800, 623822400, 638946000, 655876800, 671000400, 687330000, 702450000, 718779600, 733899600, 750229200, 765349200, 781678800, 796798800, 813128400, 828853200, 844578000, 860302800, 876632400, 891147600, 909291600, 922597200, 941346000, 954651600, 972795600, 986101200, 1004245200, 1018155600, 1035694800, 1049605200, 1067144400, 1080450000, 1162098000, 1173589200, 1193547600, 1205643600, 1224997200, 1236488400, 1256446800, 1268542800, 1288501200, 1300597200, 1321160400, 1333256400, 1352005200, 1362891600, 1383454800 }
    typeOffsets:intvector { -19768, 0, -19776, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "Cuba" }
    finalRaw:int { -18000 }
    finalYear:int { 2014 }
    links:intvector { 129, 394 }
  } //Z#129
  /* America/Hermosillo */ :table {
    trans:intvector { -1514739600, -1343066400, -1234807200, -1220292000, -1207159200, -1191344400, -873828000, -661539600, 28800, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400 }
    typeOffsets:intvector { -26632, 0, -28800, 0, -25200, 0, -25200, 3600, -21600, 0 }
    typeMap:bin { "020402040204020102030203020302" }
  } //Z#130
  /* America/Indiana/Indianapolis */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -900259200, -891795600, -880214400, -765392400, -747244800, -733942800, -715795200, -702493200, -684345600, -671043600, -652896000, -639594000, -620841600, -608144400, -589392000, -576090000, -557942400, -544640400, -526492800, -513190800, -495043200, -481741200, -463593600, -386787600, -368640000, -21488400, -5767200, 9961200, 25682400, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -20678, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010301030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
    links:intvector { 117, 131, 139, 511, 618 }
  } //Z#131
  /* America/Indiana/Knox */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -715795200, -702493200, -684345600, -671043600, -652896000, -639594000, -620841600, -608144400, -589392000, -576090000, -557942400, -544640400, -526492800, -513190800, -495043200, -481741200, -463593600, -447267600, -431539200, -415818000, -400089600, -386787600, -368640000, -355338000, -337190400, -321469200, -305740800, -289414800, -273686400, -257965200, -242236800, -195066000, -84384000, -68662800, -52934400, -37213200, -21484800, -5763600, 9964800, 25686000, 41414400, 57740400, 73468800, 89190000, 104918400, 120639600, 126691200, 152089200, 162374400, 183538800, 199267200, 215593200, 230716800, 247042800, 262771200, 278492400, 294220800, 309942000, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 1143961200, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -20790, 0, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010301020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020302010201" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
    links:intvector { 132, 147, 621 }
  } //Z#132
  /* America/Indiana/Marengo */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -589392000, -576090000, -495043200, -481741200, -463593600, -450291600, -431539200, -418237200, -400089600, -386787600, -368640000, -355338000, -337190400, -323888400, -305740800, -292438800, -273686400, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 126687600, 152089200, 162370800, 183535200, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -20723, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020103040304030403040304030203040304030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#133
  /* America/Indiana/Petersburg */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -462996000, -450291600, -431539200, -418237200, -400089600, -386787600, -368640000, -355338000, -337190400, -323888400, -305740800, -292438800, -273686400, -257965200, -242236800, -226515600, -210787200, -195066000, -179337600, -163616400, -147888000, -100112400, -84384000, -68662800, -52934400, -37213200, -21484800, -5763600, 9964800, 25686000, 41414400, 57740400, 73468800, 89190000, 104918400, 120639600, 126691200, 152089200, 162374400, 183538800, 199267200, 215593200, 230716800, 247042800, 1143961200, 1162105200, 1173600000, 1194159600, 1205046000, 1225605600 }
    typeOffsets:intvector { -20947, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201030102010201020102010201020102010201020102010203020102030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2009 }
  } //Z#134
  /* America/Indiana/Tell_City */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -747244800, -733942800, -526492800, -513190800, -495043200, -481741200, -462996000, -450291600, -431539200, -418237200, -400089600, -386787600, -368640000, -355338000, -337190400, -323888400, -305740800, -289414800, -273686400, -260989200, -242236800, -226515600, -210787200, -195066000, -179337600, -21488400, -5767200, 9961200, 25682400, 1143961200, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -20823, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201030403040302010201" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#135
  /* America/Indiana/Vevay */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -495043200, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -20416, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "0102010201020103040304030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#136
  /* America/Indiana/Vincennes */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -747244800, -733942800, -526492800, -513190800, -495043200, -481741200, -462996000, -450291600, -431539200, -418237200, -400089600, -386787600, -368640000, -355338000, -337190400, -323888400, -305740800, -289414800, -273686400, -260989200, -242236800, -226515600, -210787200, -195066000, -179337600, -21488400, -5767200, 9961200, 25682400, 1143961200, 1162105200, 1173600000, 1194159600, 1205046000, 1225605600 }
    typeOffsets:intvector { -21007, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010304030403020102030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2009 }
  } //Z#137
  /* America/Indiana/Winamac */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -747244800, -733942800, -715795200, -702493200, -684345600, -671043600, -652896000, -639594000, -620841600, -608144400, -589392000, -576090000, -557942400, -544640400, -526492800, -513190800, -495043200, -481741200, -463593600, -447267600, -431539200, -415818000, -400089600, -386787600, -368640000, -355338000, -337190400, -323888400, -305740800, -292438800, -273686400, -21488400, -5767200, 9961200, 25682400, 1143961200, 1162105200, 1173600000, 1194156000, 1205046000, 1225605600 }
    typeOffsets:intvector { -20785, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010304030403020104030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2009 }
  } //Z#138
  /* America/Indianapolis */ :int { 131 } //Z#139
  /* America/Inuvik */ :table {
    trans:intvector { -536457600, -147888000, -131558400, 294228000, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { 0, 0, -28800, 0, -28800, 7200, -25200, 0, -25200, 3600 }
    typeMap:bin { "010201030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "Canada" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
  } //Z#140
  /* America/Iqaluit */ :table {
    trans:intvector { -865296000, -765396000, -147898800, -131569200, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954662400, 972802800, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { 0, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600, -18000, 7200 }
    typeMap:bin { "040305030403040304030403040304030403040304030403040304030403040304030403040304030403040102030403040304030403040304030403" }
    finalRule { "Canada" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#141
  /* America/Jamaica */ :table {
    trans:intvector { -1827687170, 126687600, 152085600, 162370800, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600 }
    typeOffsets:intvector { -18430, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201" }
    links:intvector { 142, 528 }
  } //Z#142
  /* America/Jujuy */ :int { 68 } //Z#143
  /* America/Juneau */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106012357 }
    trans:intvector { -880207200, -765385200, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 126698400, 152096400, 162381600, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341402400, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452084400, 467805600, 483534000, 499255200, 514983600, 530704800, 544618800, 562154400, 576068400, 594208800, 607518000, 625658400, 638967600, 657108000, 671022000, 688557600, 702471600, 720007200, 733921200, 752061600, 765370800, 783511200, 796820400, 814960800, 828874800, 846410400, 860324400, 877860000, 891774000, 909309600, 923223600, 941364000, 954673200, 972813600, 986122800, 1004263200, 1018177200, 1035712800, 1049626800, 1067162400, 1081076400, 1099216800, 1112526000, 1130666400, 1143975600, 1162116000, 1173610800, 1194170400 }
    typeOffsets:intvector { 54139, 0, -32400, 0, -32400, 3600, -32261, 0, -28800, 0, -28800, 3600 }
    typeMap:bin { "03040504050405040504050405040504050405040504050405040204050405040501020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -32400 }
    finalYear:int { 2008 }
  } //Z#144
  /* America/Kentucky/Louisville */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -1535904000, -1525280400, -905097600, -891795600, -880214400, -765392400, -757360800, -744224400, -715795200, -608144400, -589392000, -576090000, -557942400, -544640400, -526492800, -513190800, -495043200, -481741200, -463593600, -450291600, -431539200, -415818000, -400089600, -384368400, -368640000, -352918800, -337190400, -321469200, -305740800, -289414800, -273686400, -266432400, -52938000, -37216800, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 126687600, 152089200, 162370800, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -20582, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102030403040304030403040304030203040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
    links:intvector { 145, 152 }
  } //Z#145
  /* America/Kentucky/Monticello */ :table {
    transPre32:intvector { -1, 1577320096 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -52934400, -37213200, -21484800, -5763600, 9964800, 25686000, 41414400, 57740400, 73468800, 89190000, 104918400, 120639600, 126691200, 152089200, 162374400, 183538800, 199267200, 215593200, 230716800, 247042800, 262771200, 278492400, 294220800, 309942000, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -20364, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102030403040304030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#146
  /* America/Knox_IN */ :int { 132 } //Z#147
  /* America/Kralendijk */ :int { 105 } //Z#148
  /* America/La_Paz */ :table {
    trans:intvector { -1205954844, -1192307244 }
    typeOffsets:intvector { -16356, 0, -16356, 3600, -14400, 0 }
    typeMap:bin { "0102" }
  } //Z#149
  /* America/Lima */ :table {
    transPre32:intvector { -1, 1770464188 }
    trans:intvector { -1938538284, -1009825200, -1002052800, -986756400, -971035200, -955306800, -939585600, 504939600, 512712000, 536475600, 544248000, 631170000, 638942400, 757400400, 765172800 }
    typeOffsets:intvector { -18492, 0, -18516, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "01020302030203020302030203020302" }
  } //Z#150
  /* America/Los_Angeles */ :table {
    transPre32:intvector { -1, 1577327296 }
    trans:intvector { -1633269600, -1615129200, -1601820000, -1583679600, -880207200, -765385200, -687967140, -662655600, -620838000, -608137200, -589388400, -576082800, -557938800, -544633200, -526489200, -513183600, -495039600, -481734000, -463590000, -450284400, -431535600, -418230000, -400086000, -386780400, -368636400, -355330800, -337186800, -323881200, -305737200, -292431600, -273682800, -260982000, -242233200, -226508400, -210783600, -195058800, -179334000, -163609200, -147884400, -131554800, -116434800, -100105200, -84376800, -68655600, -52927200, -37206000, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 126698400, 152096400, 162381600, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1173607200, 1194166800 }
    typeOffsets:intvector { -28378, 0, -28800, 0, -28800, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -28800 }
    finalYear:int { 2008 }
    links:intvector { 151, 548, 624, 625 }
  } //Z#151
  /* America/Louisville */ :int { 145 } //Z#152
  /* America/Lower_Princes */ :int { 105 } //Z#153
  /* America/Maceio */ :table {
    trans:intvector { -1767217028, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -191365200, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600, 592974000, 602042400, 624423600, 634701600, 813726000, 824004000, 938919600, 951616800, 970974000, 972180000, 1003028400, 1013911200 }
    typeOffsets:intvector { -8572, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#154
  /* America/Managua */ :table {
    transPre32:intvector { -1, 1770466404 }
    trans:intvector { -1121105688, 105084000, 161758800, 290584800, 299134800, 322034400, 330584400, 694260000, 717310800, 725868000, 852094800, 1113112800, 1128229200, 1146384000, 1159682400 }
    typeOffsets:intvector { -20708, 0, -21600, 0, -21600, 3600, -20712, 0, -18000, 0 }
    typeMap:bin { "03010401020102010401040102010201" }
  } //Z#155
  /* America/Manaus */ :table {
    trans:intvector { -1767211196, -1206954000, -1191358800, -1175371200, -1159822800, -633816000, -622065600, -602280000, -591829200, -570744000, -560206800, -539121600, -531349200, -191361600, -184194000, -155160000, -150066000, -128894400, -121122000, -99950400, -89586000, -68414400, -57963600, 499752000, 511239600, 530596800, 540270000, 562132800, 571201200, 750830400, 761713200 }
    typeOffsets:intvector { -14404, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201" }
    links:intvector { 156, 376 }
  } //Z#156
  /* America/Marigot */ :int { 186 } //Z#157
  /* America/Martinique */ :table {
    trans:intvector { -1851537340, 323841600, 338958000 }
    typeOffsets:intvector { -14660, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "010201" }
  } //Z#158
  /* America/Matamoros */ :table {
    trans:intvector { -1514743200, 576057600, 594198000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 989136000, 1001833200, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1175414400, 1193554800, 1207468800, 1225004400, 1238918400, 1256454000, 1268553600, 1289113200 }
    typeOffsets:intvector { -24000, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2011 }
  } //Z#159
  /* America/Mazatlan */ :table {
    trans:intvector { -1514739600, -1343066400, -1234807200, -1220292000, -1207159200, -1191344400, -873828000, -661539600, 28800, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 989139600, 1001836800, 1018170000, 1035705600 }
    typeOffsets:intvector { -25540, 0, -28800, 0, -25200, 0, -25200, 3600, -21600, 0 }
    typeMap:bin { "0204020402040201020302030203020302030203020302" }
    finalRule { "Mexico" }
    finalRaw:int { -25200 }
    finalYear:int { 2003 }
    links:intvector { 160, 537 }
  } //Z#160
  /* America/Mendoza */ :int { 70 } //Z#161
  /* America/Menominee */ :table {
    transPre32:intvector { -1, 1635207523 }
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -747244800, -733942800, -116438400, -100112400, -21484800, 104914800, 120639600, 126691200, 152089200, 162374400, 183538800, 199267200, 215593200, 230716800, 247042800, 262771200, 278492400, 294220800, 309942000, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -21027, 0, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "01020102010201020102010302010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#162
  /* America/Merida */ :table {
    trans:intvector { -1514743200, 377935200, 407653200, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 989136000, 1001833200, 1018166400, 1035702000 }
    typeOffsets:intvector { -21508, 0, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "0103010201020102010201020102010201" }
    finalRule { "Mexico" }
    finalRaw:int { -21600 }
    finalYear:int { 2003 }
  } //Z#163
  /* America/Metlakatla */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106011674 }
    trans:intvector { -880207200, -765385200, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 126698400, 152096400, 162381600, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 1446372000, 1457866800, 1478426400 }
    typeOffsets:intvector { 54822, 0, -32400, 0, -32400, 3600, -31578, 0, -28800, 0, -28800, 3600 }
    typeMap:bin { "03040504050405040504050405040504050405040504050405040504050405040504010201" }
    finalRule { "US" }
    finalRaw:int { -32400 }
    finalYear:int { 2017 }
  } //Z#164
  /* America/Mexico_City */ :table {
    trans:intvector { -1514739600, -1343066400, -1234807200, -1220292000, -1207159200, -1191344400, -975261600, -963169200, -917114400, -907354800, -821901600, -810068400, -627501600, -612990000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 989136000, 1001833200, 1018166400, 1035702000 }
    typeOffsets:intvector { -23796, 0, -25200, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "01020102010203020302030203020302030203020302030203020302" }
    finalRule { "Mexico" }
    finalRaw:int { -21600 }
    finalYear:int { 2003 }
    links:intvector { 165, 538 }
  } //Z#165
  /* America/Miquelon */ :table {
    trans:intvector { -1850328920, 326001600, 544597200, 562132800, 576046800, 594187200, 607496400, 625636800, 638946000, 657086400, 671000400, 688536000, 702450000, 719985600, 733899600, 752040000, 765349200, 783489600, 796798800, 814939200, 828853200, 846388800, 860302800, 877838400, 891752400, 909288000, 923202000, 941342400, 954651600, 972792000, 986101200, 1004241600, 1018155600, 1035691200, 1049605200, 1067140800, 1081054800, 1099195200, 1112504400, 1130644800, 1143954000, 1162094400, 1173589200, 1194148800 }
    typeOffsets:intvector { -13480, 0, -14400, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "Canada" }
    finalRaw:int { -10800 }
    finalYear:int { 2008 }
  } //Z#166
  /* America/Moncton */ :table {
    transPre32:intvector { -1, 1579085244 }
    trans:intvector { -2131642800, -1632074400, -1615143600, -1153681200, -1145822400, -1122231600, -1114372800, -1090782000, -1082923200, -1059332400, -1051473600, -1027882800, -1020024000, -996433200, -988574400, -965674800, -955396800, -934743600, -923947200, -904503600, -891892800, -880221600, -765399600, -747252000, -733950000, -715802400, -702500400, -684352800, -671050800, -652903200, -639601200, -620848800, -608151600, -589399200, -576097200, -557949600, -544647600, -526500000, -513198000, -495050400, -481748400, -463600800, -450298800, -431546400, -418244400, -400096800, -384375600, -368647200, -352926000, -337197600, -321476400, -305748000, -289422000, -273693600, -257972400, -242244000, -226522800, -210794400, -195073200, -179344800, -163623600, -147895200, -131569200, -116445600, -100119600, -84391200, -68670000, -52941600, -37220400, -21492000, -5770800, 9957600, 25678800, 41407200, 57733200, 73461600, 89182800, 136360800, 152082000, 167810400, 183531600, 199260000, 215586000, 230709600, 247035600, 262764000, 278485200, 294213600, 309934800, 325663200, 341384400, 357112800, 372834000, 388562400, 404888400, 420012000, 436338000, 452066400, 467787600, 483516000, 499237200, 514965600, 530686800, 544600800, 562136400, 576050400, 594190800, 607500000, 625640400, 638949600, 657090000, 671004000, 688539600, 702453600, 719989200, 733896060, 752036460, 765345660, 783486060, 796795260, 814935660, 828849660, 846385260, 860299260, 877834860, 891748860, 909284460, 923198460, 941338860, 954648060, 972788460, 986097660, 1004238060, 1018152060, 1035687660, 1049601660, 1067137260, 1081051260, 1099191660, 1112500860, 1130641260, 1143950460, 1162090860, 1173592800, 1194152400 }
    typeOffsets:intvector { -15548, 0, -18000, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "Canada" }
    finalRaw:int { -14400 }
    finalYear:int { 2008 }
  } //Z#167
  /* America/Monterrey */ :table {
    trans:intvector { -1514743200, 576057600, 594198000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 989136000, 1001833200, 1018166400, 1035702000 }
    typeOffsets:intvector { -24076, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201" }
    finalRule { "Mexico" }
    finalRaw:int { -21600 }
    finalYear:int { 2003 }
  } //Z#168
  /* America/Montevideo */ :table {
    trans:intvector { -1567455309, -1459627200, -1443819600, -1428006600, -1412283600, -1396470600, -1380747600, -1141590600, -1128286800, -1110141000, -1096837200, -1078691400, -1065387600, -1047241800, -1033938000, -1015187400, -1002488400, -983737800, -971038800, -954707400, -938984400, -920838600, -907534800, -896819400, -853621200, -845847000, -334789200, -319671000, -314226000, -309996000, -149720400, -134604000, -50446800, -34205400, 9860400, 14176800, 72846000, 80100000, 127278000, 132111000, 147234600, 156913200, 165376800, 219812400, 226461600, 250052400, 257911200, 282711600, 289360800, 294202800, 322020000, 566449200, 573012000, 597812400, 605066400, 625633200, 635911200, 656478000, 667965600, 688532400, 699415200, 719377200, 730864800, 1095562800, 1111896000, 1128834000, 1142136000, 1159678800, 1173585600, 1191733200, 1205035200, 1223182800, 1236484800, 1254632400, 1268539200, 1286082000, 1299988800, 1317531600, 1331438400, 1349586000, 1362888000, 1381035600, 1394337600, 1412485200, 1425787200 }
    typeOffsets:intvector { -13491, 0, -14400, 0, -12600, 0, -12600, 1800, -10800, 0, -10800, 1800, -10800, 3600, -10800, 5400 }
    typeMap:bin { "01030203020302030203020302030203020302030203020305040504060406040504060406040705040604060406040604060406040604060406040604060406040604060406040604060406040604060406040604" }
  } //Z#169
  /* America/Montreal */ :int { 217 } //Z#170
  /* America/Montserrat */ :int { 186 } //Z#171
  /* America/Nassau */ :table {
    trans:intvector { -1825095030, -179341200, -163620000, -147891600, -131565600, -116442000, -100116000, -84387600, -68666400, -52938000, -37216800, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 136364400, 152085600, 167814000, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -18570, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#172
  /* America/New_York */ :table {
    transPre32:intvector { -1, 1577316496 }
    trans:intvector { -1633280400, -1615140000, -1601830800, -1583690400, -1570381200, -1551636000, -1536512400, -1523210400, -1504458000, -1491760800, -1473008400, -1459706400, -1441558800, -1428256800, -1410109200, -1396807200, -1378659600, -1365357600, -1347210000, -1333908000, -1315155600, -1301853600, -1283706000, -1270404000, -1252256400, -1238954400, -1220806800, -1207504800, -1189357200, -1176055200, -1157302800, -1144605600, -1125853200, -1112551200, -1094403600, -1081101600, -1062954000, -1049652000, -1031504400, -1018202400, -1000054800, -986752800, -968000400, -955303200, -936550800, -923248800, -905101200, -891799200, -880218000, -765396000, -747248400, -733946400, -715798800, -702496800, -684349200, -671047200, -652899600, -639597600, -620845200, -608148000, -589395600, -576093600, -557946000, -544644000, -526496400, -513194400, -495046800, -481744800, -463597200, -447271200, -431542800, -415821600, -400093200, -384372000, -368643600, -352922400, -337194000, -321472800, -305744400, -289418400, -273690000, -257968800, -242240400, -226519200, -210790800, -195069600, -179341200, -163620000, -147891600, -131565600, -116442000, -100116000, -84387600, -68666400, -52938000, -37216800, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 126687600, 152085600, 162370800, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -17762, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
    links:intvector { 173, 619 }
  } //Z#173
  /* America/Nipigon */ :table {
    transPre32:intvector { -1, 1928233280 }
    trans:intvector { -1632070800, -1615140000, -923252400, -765396000, 136364400, 152085600, 167814000, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -21184, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#174
  /* America/Nome */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106019794 }
    trans:intvector { -880196400, -765374400, -21466800, -5745600, 9982800, 25704000, 41432400, 57758400, 73486800, 89208000, 104936400, 120657600, 126709200, 152107200, 162392400, 183556800, 199285200, 215611200, 230734800, 247060800, 262789200, 278510400, 294238800, 309960000, 325688400, 341409600, 357138000, 372859200, 388587600, 404913600, 420037200, 436363200, 452084400, 467805600, 483534000, 499255200, 514983600, 530704800, 544618800, 562154400, 576068400, 594208800, 607518000, 625658400, 638967600, 657108000, 671022000, 688557600, 702471600, 720007200, 733921200, 752061600, 765370800, 783511200, 796820400, 814960800, 828874800, 846410400, 860324400, 877860000, 891774000, 909309600, 923223600, 941364000, 954673200, 972813600, 986122800, 1004263200, 1018177200, 1035712800, 1049626800, 1067162400, 1081076400, 1099216800, 1112526000, 1130666400, 1143975600, 1162116000, 1173610800, 1194170400 }
    typeOffsets:intvector { 46702, 0, -39698, 0, -39600, 0, -39600, 3600, -32400, 0, -32400, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020304050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "US" }
    finalRaw:int { -32400 }
    finalYear:int { 2008 }
  } //Z#175
  /* America/Noronha */ :table {
    trans:intvector { -1767217820, -1206961200, -1191366000, -1175378400, -1159830000, -633823200, -622072800, -602287200, -591836400, -570751200, -560214000, -539128800, -531356400, -191368800, -184201200, -155167200, -150073200, -128901600, -121129200, -99957600, -89593200, -68421600, -57970800, 499744800, 511232400, 530589600, 540262800, 562125600, 571194000, 592970400, 602038800, 624420000, 634698000, 938916000, 951613200, 970970400, 971571600, 1003024800, 1013907600 }
    typeOffsets:intvector { -7780, 0, -7200, 0, -7200, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    links:intvector { 176, 374 }
  } //Z#176
  /* America/North_Dakota/Beulah */ :table {
    transPre32:intvector { -1, 1577323696 }
    trans:intvector { -1633273200, -1615132800, -1601823600, -1583683200, -880210800, -765388800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 126694800, 152092800, 162378000, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200, 1205053200, 1225612800, 1236502800, 1257062400, 1268557200, 1289116800, 1300003200, 1320562800 }
    typeOffsets:intvector { -24427, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102030403" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2012 }
  } //Z#177
  /* America/North_Dakota/Center */ :table {
    transPre32:intvector { -1, 1577323696 }
    trans:intvector { -1633273200, -1615132800, -1601823600, -1583683200, -880210800, -765388800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 126694800, 152092800, 162378000, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -24312, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#178
  /* America/North_Dakota/New_Salem */ :table {
    transPre32:intvector { -1, 1577323696 }
    trans:intvector { -1633273200, -1615132800, -1601823600, -1583683200, -880210800, -765388800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 126694800, 152092800, 162378000, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -24339, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102030403040304030403" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#179
  /* America/Ojinaga */ :table {
    trans:intvector { -1514739600, -1343066400, -1234807200, -1220292000, -1207159200, -1191344400, 828864000, 846399600, 860313600, 877849200, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 989139600, 1001836800, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1175418000, 1193558400, 1207472400, 1225008000, 1238922000, 1256457600, 1268557200, 1289116800 }
    typeOffsets:intvector { -25060, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "010301030103040304030201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -25200 }
    finalYear:int { 2011 }
  } //Z#180
  /* America/Panama */ :table {
    transPre32:intvector { -1, 1770464784 }
    trans:intvector { -1946918424 }
    typeOffsets:intvector { -19088, 0, -19176, 0, -18000, 0 }
    typeMap:bin { "0102" }
    links:intvector { 97, 181 }
  } //Z#181
  /* America/Pangnirtung */ :table {
    trans:intvector { -1546300800, -880221600, -765399600, -147902400, -131572800, 325663200, 341384400, 357112800, 372834000, 388562400, 404888400, 420012000, 436338000, 452066400, 467787600, 483516000, 499237200, 514965600, 530686800, 544600800, 562136400, 576050400, 594190800, 607500000, 625640400, 638949600, 657090000, 671004000, 688539600, 702453600, 719989200, 733903200, 752043600, 765352800, 783493200, 796802400, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954662400, 972802800, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { 0, 0, -21600, 0, -21600, 3600, -18000, 0, -18000, 3600, -14400, 0, -14400, 3600, -14400, 7200 }
    typeMap:bin { "05060507050605060506050605060506050605060506050605060506050605060506050403040304030403040102030403040304030403040304030403" }
    finalRule { "Canada" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#182
  /* America/Paramaribo */ :table {
    trans:intvector { -1861906760, -1104524348, -765317964, 465449400 }
    typeOffsets:intvector { -13240, 0, -13252, 0, -13236, 0, -12600, 0, -10800, 0 }
    typeMap:bin { "01020304" }
  } //Z#183
  /* America/Phoenix */ :table {
    transPre32:intvector { -1, 1577323696 }
    trans:intvector { -1633273200, -1615132800, -1601823600, -1583683200, -880210800, -820519140, -812653140, -796845540, -84380400, -68659200 }
    typeOffsets:intvector { -26898, 0, -25200, 0, -25200, 3600 }
    typeMap:bin { "0102010201020102010201" }
    links:intvector { 184, 545, 616 }
  } //Z#184
  /* America/Port-au-Prince */ :table {
    transPre32:intvector { -1, 1770463056 }
    trans:intvector { -1670483460, 421218000, 436334400, 452062800, 467784000, 483512400, 499233600, 514962000, 530683200, 546411600, 562132800, 576050400, 594194400, 607500000, 625644000, 638949600, 657093600, 671004000, 688543200, 702453600, 719992800, 733903200, 752047200, 765352800, 783496800, 796802400, 814946400, 828856800, 846396000, 860306400, 877845600, 1112504400, 1130644800, 1143954000, 1162094400, 1331449200, 1352008800, 1362898800, 1383458400, 1394348400, 1414908000, 1425798000, 1446357600, 1489302000, 1509861600 }
    typeOffsets:intvector { -17360, 0, -18000, 0, -18000, 3600, -17340, 0 }
    typeMap:bin { "03010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Haiti" }
    finalRaw:int { -18000 }
    finalYear:int { 2018 }
  } //Z#185
  /* America/Port_of_Spain */ :table {
    trans:intvector { -1825098836 }
    typeOffsets:intvector { -14764, 0, -14400, 0 }
    typeMap:bin { "01" }
    links:intvector { 61, 62, 111, 123, 124, 157, 171, 186, 206, 208, 209, 210, 211, 218, 220 }
  } //Z#186
  /* America/Porto_Acre */ :int { 196 } //Z#187
  /* America/Porto_Velho */ :table {
    trans:intvector { -1767210264, -1206954000, -1191358800, -1175371200, -1159822800, -633816000, -622065600, -602280000, -591829200, -570744000, -560206800, -539121600, -531349200, -191361600, -184194000, -155160000, -150066000, -128894400, -121122000, -99950400, -89586000, -68414400, -57963600, 499752000, 511239600, 530596800, 540270000, 562132800, 571201200 }
    typeOffsets:intvector { -15336, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201" }
  } //Z#188
  /* America/Puerto_Rico */ :table {
    transPre32:intvector { -1, 2061931961 }
    trans:intvector { -873057600, -765399600 }
    typeOffsets:intvector { -15865, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "010201" }
    links:intvector { 189, 547 }
  } //Z#189
  /* America/Punta_Arenas */ :table {
    transPre32:intvector { -1, 1770462716 }
    trans:intvector { -1892661434, -1688410800, -1619205434, -1593806400, -1335986234, -1317585600, -1304362800, -1286049600, -1272826800, -1254513600, -1241290800, -1222977600, -1209754800, -1191355200, -1178132400, -870552000, -865278000, -718056000, -713649600, -36619200, -23922000, -3355200, 7527600, 24465600, 37767600, 55915200, 69217200, 87969600, 100666800, 118209600, 132116400, 150868800, 163566000, 182318400, 195620400, 213768000, 227070000, 245217600, 258519600, 277272000, 289969200, 308721600, 321418800, 340171200, 353473200, 371620800, 384922800, 403070400, 416372400, 434520000, 447822000, 466574400, 479271600, 498024000, 510721200, 529473600, 545194800, 560923200, 574225200, 592372800, 605674800, 624427200, 637124400, 653457600, 668574000, 687326400, 700628400, 718776000, 732078000, 750225600, 763527600, 781675200, 794977200, 813729600, 826426800, 845179200, 859690800, 876628800, 889930800, 906868800, 923194800, 939528000, 952830000, 971582400, 984279600, 1003032000, 1015729200, 1034481600, 1047178800, 1065931200, 1079233200, 1097380800, 1110682800, 1128830400, 1142132400, 1160884800, 1173582000, 1192334400, 1206846000, 1223784000, 1237086000, 1255233600, 1270350000, 1286683200, 1304823600, 1313899200, 1335668400, 1346558400, 1367118000, 1378612800, 1398567600, 1410062400, 1463281200, 1471147200, 1480820400 }
    typeOffsets:intvector { -17020, 0, -18000, 0, -18000, 3600, -16966, 0, -14400, 0, -14400, 3600, -10800, 0 }
    typeMap:bin { "0301030403020102010201020102010401040104050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040506" }
  } //Z#190
  /* America/Rainy_River */ :table {
    transPre32:intvector { -1, 1928234792 }
    trans:intvector { -1632067200, -1615136400, -923248800, -765392400, 136368000, 152089200, 167817600, 183538800, 199267200, 215593200, 230716800, 247042800, 262771200, 278492400, 294220800, 309942000, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -22696, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#191
  /* America/Rankin_Inlet */ :table {
    trans:intvector { -410227200, -147895200, -131565600, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { 0, 0, -21600, 0, -21600, 3600, -21600, 7200, -18000, 0 }
    typeMap:bin { "0103010201020102010201020102010201020102010201020102010201020102010201020102010201020102040201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#192
  /* America/Recife */ :table {
    trans:intvector { -1767217224, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -191365200, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600, 592974000, 602042400, 624423600, 634701600, 938919600, 951616800, 970974000, 971575200, 1003028400, 1013911200 }
    typeOffsets:intvector { -8376, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201" }
  } //Z#193
  /* America/Regina */ :table {
    trans:intvector { -2030202084, -1632063600, -1615132800, -1251651600, -1238349600, -1220202000, -1206900000, -1188752400, -1175450400, -1156698000, -1144000800, -1125248400, -1111946400, -1032714000, -1016992800, -1001264400, -986148000, -969814800, -954093600, -937760400, -922039200, -906310800, -890589600, -880210800, -765388800, -748450800, -732729600, -715791600, -702489600, -684342000, -671040000, -652892400, -639590400, -620838000, -608140800, -589388400, -576086400, -557938800, -544636800, -526489200, -513187200, -495039600, -481737600, -463590000, -450288000, -431535600, -418233600, -400086000, -386784000, -337186800, -321465600, -305737200 }
    typeOffsets:intvector { -25116, 0, -25200, 0, -25200, 3600, -21600, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020103" }
    links:intvector { 194, 385, 390 }
  } //Z#194
  /* America/Resolute */ :table {
    trans:intvector { -704937600, -147895200, -131565600, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { 0, 0, -21600, 0, -21600, 3600, -21600, 7200, -18000, 0 }
    typeMap:bin { "0103010201020102010201020102010201020102010201020102010201020102010201020102010201020102040201020102010201020102040201" }
    finalRule { "Canada" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#195
  /* America/Rio_Branco */ :table {
    trans:intvector { -1767209328, -1206950400, -1191355200, -1175367600, -1159819200, -633812400, -622062000, -602276400, -591825600, -570740400, -560203200, -539118000, -531345600, -191358000, -184190400, -155156400, -150062400, -128890800, -121118400, -99946800, -89582400, -68410800, -57960000, 499755600, 511243200, 530600400, 540273600, 562136400, 571204800, 1214283600, 1384056000 }
    typeOffsets:intvector { -16272, 0, -18000, 0, -18000, 3600, -14400, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010301" }
    links:intvector { 187, 196, 373 }
  } //Z#196
  /* America/Rosario */ :int { 67 } //Z#197
  /* America/Santa_Isabel */ :int { 216 } //Z#198
  /* America/Santarem */ :table {
    trans:intvector { -1767212472, -1206954000, -1191358800, -1175371200, -1159822800, -633816000, -622065600, -602280000, -591829200, -570744000, -560206800, -539121600, -531349200, -191361600, -184194000, -155160000, -150066000, -128894400, -121122000, -99950400, -89586000, -68414400, -57963600, 499752000, 511239600, 530596800, 540270000, 562132800, 571201200, 1214280000 }
    typeOffsets:intvector { -13128, 0, -14400, 0, -14400, 3600, -10800, 0 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020103" }
  } //Z#199
  /* America/Santiago */ :table {
    trans:intvector { -1892661434, -1688410800, -1619205434, -1593806400, -1335986234, -1317585600, -1304362800, -1286049600, -1272826800, -1254513600, -1241290800, -1222977600, -1209754800, -1191355200, -1178132400, -870552000, -865278000, -740520000, -736376400, -718056000, -713649600, -36619200, -23922000, -3355200, 7527600, 24465600, 37767600, 55915200, 69217200, 87969600, 100666800, 118209600, 132116400, 150868800, 163566000, 182318400, 195620400, 213768000, 227070000, 245217600, 258519600, 277272000, 289969200, 308721600, 321418800, 340171200, 353473200, 371620800, 384922800, 403070400, 416372400, 434520000, 447822000, 466574400, 479271600, 498024000, 510721200, 529473600, 545194800, 560923200, 574225200, 592372800, 605674800, 624427200, 637124400, 653457600, 668574000, 687326400, 700628400, 718776000, 732078000, 750225600, 763527600, 781675200, 794977200, 813729600, 826426800, 845179200, 859690800, 876628800, 889930800, 906868800, 923194800, 939528000, 952830000, 971582400, 984279600, 1003032000, 1015729200, 1034481600, 1047178800, 1065931200, 1079233200, 1097380800, 1110682800, 1128830400, 1142132400, 1160884800, 1173582000, 1192334400, 1206846000, 1223784000, 1237086000, 1255233600, 1270350000, 1286683200, 1304823600, 1313899200, 1335668400, 1346558400, 1367118000, 1378612800, 1398567600, 1410062400, 1463281200, 1471147200 }
    typeOffsets:intvector { -16966, 0, -18000, 0, -18000, 3600, -14400, 0, -14400, 3600 }
    typeMap:bin { "0100030002010201020102010201030103040301030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304" }
    finalRule { "Chile" }
    finalRaw:int { -14400 }
    finalYear:int { 2017 }
    links:intvector { 200, 392 }
  } //Z#200
  /* America/Santo_Domingo */ :table {
    transPre32:intvector { -1, 1770462472 }
    trans:intvector { -1159773600, -100119600, -89668800, -5770800, 4422600, 25678800, 33193800, 57733200, 64816200, 89182800, 96438600, 120632400, 127974600, 152082000, 972799200, 975823200 }
    typeOffsets:intvector { -16776, 0, -18000, 0, -18000, 1800, -18000, 3600, -16800, 0, -14400, 0 }
    typeMap:bin { "0401030102010201020102010201050105" }
  } //Z#201
  /* America/Sao_Paulo */ :table {
    trans:intvector { -1767214412, -1206957600, -1191362400, -1175374800, -1159826400, -633819600, -622069200, -602283600, -591832800, -570747600, -560210400, -539125200, -531352800, -195426000, -184197600, -155163600, -150069600, -128898000, -121125600, -99954000, -89589600, -68418000, -57967200, 499748400, 511236000, 530593200, 540266400, 562129200, 571197600, 592974000, 602042400, 624423600, 634701600, 656478000, 666756000, 687927600, 697600800, 719982000, 728445600, 750826800, 761709600, 782276400, 793159200, 813726000, 824004000, 844570800, 856058400, 876106800, 888717600, 908074800, 919562400, 938919600, 951616800, 970974000, 982461600, 1003028400, 1013911200, 1036292400, 1045360800, 1066532400, 1076810400, 1099364400, 1108864800, 1129431600, 1140314400, 1162695600, 1172368800, 1192330800, 1203213600, 1224385200, 1234663200, 1255834800, 1266717600, 1287284400, 1298167200, 1318734000, 1330221600, 1350788400, 1361066400, 1382238000, 1392516000, 1413687600, 1424570400, 1445137200, 1456020000, 1476586800, 1487469600, 1508036400, 1518919200, 1541300400, 1550368800, 1572750000, 1581818400, 1604199600, 1613872800, 1636254000, 1645322400, 1667703600, 1677376800, 1699153200, 1708221600, 1730602800, 1739671200, 1762052400, 1771725600, 1793502000, 1803175200, 1825556400, 1834624800, 1857006000, 1866074400, 1888455600, 1897524000, 1919905200, 1928973600, 1951354800, 1960423200, 1983409200, 1992477600, 2014858800, 2024532000, 2046308400, 2055376800, 2077758000, 2086826400, 2109207600, 2118880800, 2140657200 }
    transPost32:intvector { 0, -2144636896, 0, -2122255696 }
    typeOffsets:intvector { -11188, 0, -10800, 0, -10800, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "Brazil" }
    finalRaw:int { -10800 }
    finalYear:int { 2039 }
    links:intvector { 202, 371, 375 }
  } //Z#202
  /* America/Scoresbysund */ :table {
    trans:intvector { -1686090728, 323841600, 338961600, 354679200, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -5272, 0, -7200, 0, -7200, 3600, -3600, 0, -3600, 3600 }
    typeMap:bin { "0102010403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { -3600 }
    finalYear:int { 1997 }
  } //Z#203
  /* America/Shiprock */ :int { 109 } //Z#204
  /* America/Sitka */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106012569 }
    trans:intvector { -880207200, -765385200, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 126698400, 152096400, 162381600, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452084400, 467805600, 483534000, 499255200, 514983600, 530704800, 544618800, 562154400, 576068400, 594208800, 607518000, 625658400, 638967600, 657108000, 671022000, 688557600, 702471600, 720007200, 733921200, 752061600, 765370800, 783511200, 796820400, 814960800, 828874800, 846410400, 860324400, 877860000, 891774000, 909309600, 923223600, 941364000, 954673200, 972813600, 986122800, 1004263200, 1018177200, 1035712800, 1049626800, 1067162400, 1081076400, 1099216800, 1112526000, 1130666400, 1143975600, 1162116000, 1173610800, 1194170400 }
    typeOffsets:intvector { 53927, 0, -32473, 0, -32400, 0, -32400, 3600, -28800, 0, -28800, 3600 }
    typeMap:bin { "01040504050405040504050405040504050405040504050405040504050405040502030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "US" }
    finalRaw:int { -32400 }
    finalYear:int { 2008 }
  } //Z#205
  /* America/St_Barthelemy */ :int { 186 } //Z#206
  /* America/St_Johns */ :table {
    trans:intvector { -1664130548, -1650137348, -1632076148, -1615145348, -1598650148, -1590100148, -1567286948, -1551565748, -1535837348, -1520116148, -1503782948, -1488666548, -1472333348, -1457216948, -1440883748, -1425767348, -1409434148, -1394317748, -1377984548, -1362263348, -1346534948, -1330813748, -1314480548, -1299364148, -1283030948, -1267914548, -1251581348, -1236464948, -1220131748, -1205015348, -1188682148, -1172960948, -1156627748, -1141511348, -1125178148, -1110061748, -1096921748, -1093728600, -1078612200, -1061670600, -1048973400, -1030221000, -1017523800, -998771400, -986074200, -966717000, -954624600, -935267400, -922570200, -903817800, -891120600, -872368200, -765401400, -746044200, -733347000, -714594600, -701897400, -683145000, -670447800, -651695400, -638998200, -619641000, -606943800, -589401000, -576099000, -557951400, -544649400, -526501800, -513199800, -495052200, -481750200, -463602600, -450300600, -431548200, -418246200, -400098600, -386796600, -368649000, -355347000, -337199400, -323897400, -305749800, -289423800, -273695400, -257974200, -242245800, -226524600, -210796200, -195075000, -179346600, -163625400, -147897000, -131571000, -116447400, -100121400, -84393000, -68671800, -52943400, -37222200, -21493800, -5772600, 9955800, 25677000, 41405400, 57731400, 73459800, 89181000, 104909400, 120630600, 136359000, 152080200, 167808600, 183529800, 199258200, 215584200, 230707800, 247033800, 262762200, 278483400, 294211800, 309933000, 325661400, 341382600, 357111000, 372832200, 388560600, 404886600, 420010200, 436336200, 452064600, 467785800, 483514200, 499235400, 514963800, 530685000, 544591860, 562127460, 576041460, 594178260, 607491060, 625631460, 638940660, 657081060, 670995060, 688530660, 702444660, 719980260, 733894260, 752034660, 765343860, 783484260, 796793460, 814933860, 828847860, 846383460, 860297460, 877833060, 891747060, 909282660, 923196660, 941337060, 954646260, 972786660, 986095860, 1004236260, 1018150260, 1035685860, 1049599860, 1067135460, 1081049460, 1099189860, 1112499060, 1130639460, 1143948660, 1162089060, 1173583860, 1194143460, 1205033460, 1225593060, 1236483060, 1257042660, 1268537460, 1289097060, 1299987060, 1320553800, 1331443800, 1352003400 }
    typeOffsets:intvector { -12652, 0, -12652, 3600, -12600, 0, -12600, 3600, -12600, 7200 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010002030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020402030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "Canada" }
    finalRaw:int { -12600 }
    finalYear:int { 2013 }
    links:intvector { 207, 379, 388 }
  } //Z#207
  /* America/St_Kitts */ :int { 186 } //Z#208
  /* America/St_Lucia */ :int { 186 } //Z#209
  /* America/St_Thomas */ :int { 186 } //Z#210
  /* America/St_Vincent */ :int { 186 } //Z#211
  /* America/Swift_Current */ :table {
    trans:intvector { -2030201320, -1632063600, -1615132800, -880210800, -765388800, -747241200, -732729600, -715791600, -702489600, -684342000, -671040000, -652892400, -639590400, -400086000, -384364800, -337186800, -321465600, -305737200, -292435200, -273682800, -260985600, 73472400 }
    typeOffsets:intvector { -25880, 0, -25200, 0, -25200, 3600, -21600, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020103" }
  } //Z#212
  /* America/Tegucigalpa */ :table {
    trans:intvector { -1538503868, 547020000, 559717200, 578469600, 591166800, 1146981600, 1154926800 }
    typeOffsets:intvector { -20932, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "01020102010201" }
  } //Z#213
  /* America/Thule */ :table {
    trans:intvector { -1686079492, 670399200, 686120400, 701848800, 717570000, 733903200, 752043600, 765352800, 783493200, 796802400, 814942800, 828856800, 846392400, 860306400, 877842000, 891756000, 909291600, 923205600, 941346000, 954655200, 972795600, 986104800, 1004245200, 1018159200, 1035694800, 1049608800, 1067144400, 1081058400, 1099198800, 1112508000, 1130648400, 1143957600, 1162098000, 1173592800, 1194152400 }
    typeOffsets:intvector { -16508, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Thule" }
    finalRaw:int { -14400 }
    finalYear:int { 2008 }
  } //Z#214
  /* America/Thunder_Bay */ :table {
    transPre32:intvector { -1, 1928233516 }
    trans:intvector { -1893434400, -880218000, -765396000, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 136364400, 152085600, 167814000, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -21420, 0, -21600, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "Canada" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#215
  /* America/Tijuana */ :table {
    trans:intvector { -1514736000, -1451667600, -1343062800, -1234803600, -1222963200, -1207242000, -873820800, -761677200, -686073600, -661539600, -495039600, -481734000, -463590000, -450284400, -431535600, -418230000, -400086000, -386780400, -368636400, -355330800, -337186800, -323881200, -305737200, -292431600, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1175421600, 1193562000, 1207476000, 1225011600, 1238925600, 1256461200, 1268560800, 1289120400 }
    typeOffsets:intvector { -28084, 0, -28800, 0, -28800, 3600, -25200, 0 }
    typeMap:bin { "03010301020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -28800 }
    finalYear:int { 2011 }
    links:intvector { 115, 198, 216, 536 }
  } //Z#216
  /* America/Toronto */ :table {
    transPre32:intvector { -1, 1928231148 }
    trans:intvector { -1632070800, -1615140000, -1601753400, -1583697600, -1567357200, -1554667200, -1534698000, -1524074400, -1503248400, -1492365600, -1471798800, -1460916000, -1440954000, -1428861600, -1409504400, -1397412000, -1378054800, -1365962400, -1346605200, -1333908000, -1315155600, -1301853600, -1283706000, -1270404000, -1252256400, -1238954400, -1220806800, -1207504800, -1188752400, -1176055200, -1157302800, -1144000800, -1125853200, -1112551200, -1094403600, -1081101600, -1062954000, -1049652000, -1031504400, -1018202400, -1000054800, -986752800, -968000400, -955303200, -936550800, -765396000, -747248400, -733946400, -715806000, -702504000, -684356400, -671054400, -652906800, -634161600, -620845200, -602704800, -589395600, -576093600, -557946000, -544644000, -526496400, -513194400, -495046800, -481744800, -463597200, -450295200, -431542800, -418240800, -400093200, -384372000, -368643600, -352922400, -337194000, -321472800, -305744400, -289418400, -273690000, -257968800, -242240400, -226519200, -210790800, -195069600, -179341200, -163620000, -147891600, -131565600, -116442000, -100116000, -84387600, -68666400, -52938000, -37216800, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 136364400, 152085600, 167814000, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -19052, 0, -18000, 0, -18000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
    links:intvector { 170, 217, 386 }
  } //Z#217
  /* America/Tortola */ :int { 186 } //Z#218
  /* America/Vancouver */ :table {
    transPre32:intvector { -1, 1581086444 }
    trans:intvector { -1632060000, -1615129200, -880207200, -765385200, -747237600, -732726000, -715788000, -702486000, -684338400, -671036400, -652888800, -639586800, -620834400, -608137200, -589384800, -576082800, -557935200, -544633200, -526485600, -513183600, -495036000, -481734000, -463586400, -450284400, -431532000, -418230000, -400082400, -386780400, -368632800, -355330800, -337183200, -323881200, -305733600, -292431600, -273679200, -260982000, -242229600, -226508400, -210780000, -195058800, -179330400, -163609200, -147880800, -131554800, -116431200, -100105200, -84376800, -68655600, -52927200, -37206000, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 136375200, 152096400, 167824800, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1173607200, 1194166800 }
    typeOffsets:intvector { -29548, 0, -28800, 0, -28800, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -28800 }
    finalYear:int { 2008 }
    links:intvector { 219, 389 }
  } //Z#219
  /* America/Virgin */ :int { 186 } //Z#220
  /* America/Whitehorse */ :table {
    transPre32:intvector { -1, 2105969308 }
    trans:intvector { -1632056400, -1615125600, -1596978000, -1583164800, -880203600, -765381600, -147884400, -131554800, -81961200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1173607200, 1194166800 }
    typeOffsets:intvector { -32412, 0, -32400, 0, -32400, 3600, -32400, 7200, -28800, 0, -28800, 3600 }
    typeMap:bin { "010201020102010301040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "Canada" }
    finalRaw:int { -28800 }
    finalYear:int { 2008 }
    links:intvector { 221, 391 }
  } //Z#221
  /* America/Winnipeg */ :table {
    transPre32:intvector { -1, 1692709012 }
    trans:intvector { -1694368800, -1681671600, -1632067200, -1615136400, -1029686400, -1018198800, -880214400, -765392400, -746035200, -732733200, -715795200, -702493200, -684345600, -671043600, -652896000, -639594000, -620755200, -607626000, -589392000, -576090000, -557942400, -544640400, -526492800, -513190800, -495043200, -481741200, -463593600, -450291600, -431539200, -418237200, -400089600, -386787600, -368640000, -355338000, -337190400, -321469200, -305740800, -292438800, -210787200, -198090000, -116438400, -100108800, -84384000, -68659200, -52934400, -37209600, -21484800, -5760000, 9964800, 25689600, 41414400, 57744000, 73468800, 89193600, 104918400, 120643200, 136368000, 152092800, 167817600, 183542400, 199267200, 215596800, 230716800, 247046400, 262771200, 278496000, 294220800, 309945600, 325670400, 341395200, 357120000, 372844800, 388569600, 404899200, 420019200, 436348800, 452073600, 467798400, 483523200, 499248000, 514972800, 530697600, 544608000, 562147200, 576057600, 594201600, 607507200, 625651200, 638956800, 657100800, 671011200, 688550400, 702460800, 720000000, 733910400, 752054400, 765360000, 783504000, 796809600, 814953600, 828864000, 846403200, 860313600, 877852800, 891763200, 909302400, 923212800, 941356800, 954662400, 972806400, 986112000, 1004256000, 1018166400, 1035705600, 1049616000, 1067155200, 1081065600, 1099209600, 1112515200, 1130659200, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -23316, 0, -21600, 0, -21600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
    links:intvector { 222, 384 }
  } //Z#222
  /* America/Yakutat */ :table {
    transPre32:intvector { -1, 1069743569, -1, 2106013631 }
    trans:intvector { -880203600, -765381600, -21474000, -5752800, 9975600, 25696800, 41425200, 57751200, 73479600, 89200800, 104929200, 120650400, 126702000, 152100000, 162385200, 183549600, 199278000, 215604000, 230727600, 247053600, 262782000, 278503200, 294231600, 309952800, 325681200, 341402400, 357130800, 372852000, 388580400, 404906400, 420030000, 436356000, 452084400, 467805600, 483534000, 499255200, 514983600, 530704800, 544618800, 562154400, 576068400, 594208800, 607518000, 625658400, 638967600, 657108000, 671022000, 688557600, 702471600, 720007200, 733921200, 752061600, 765370800, 783511200, 796820400, 814960800, 828874800, 846410400, 860324400, 877860000, 891774000, 909309600, 923223600, 941364000, 954673200, 972813600, 986122800, 1004263200, 1018177200, 1035712800, 1049626800, 1067162400, 1081076400, 1099216800, 1112526000, 1130666400, 1143975600, 1162116000, 1173610800, 1194170400 }
    typeOffsets:intvector { 52865, 0, -33535, 0, -32400, 0, -32400, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "US" }
    finalRaw:int { -32400 }
    finalYear:int { 2008 }
  } //Z#223
  /* America/Yellowknife */ :table {
    trans:intvector { -1104537600, -880210800, -765388800, -147891600, -131562000, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { 0, 0, -25200, 0, -25200, 3600, -25200, 7200 }
    typeMap:bin { "01020103010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Canada" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
  } //Z#224
  /* Antarctica/Casey */ :table {
    trans:intvector { -31536000, 1255802400, 1267714800, 1319738400, 1329843600, 1477065600, 1520701200 }
    typeOffsets:intvector { 0, 0, 28800, 0, 39600, 0 }
    typeMap:bin { "01020102010201" }
  } //Z#225
  /* Antarctica/Davis */ :table {
    trans:intvector { -409190400, -163062000, -28857600, 1255806000, 1268251200, 1319742000, 1329854400 }
    typeOffsets:intvector { 0, 0, 18000, 0, 25200, 0 }
    typeMap:bin { "02000201020102" }
  } //Z#226
  /* Antarctica/DumontDUrville */ :table {
    trans:intvector { -725846400, -566992800, -415497600 }
    typeOffsets:intvector { 0, 0, 36000, 0 }
    typeMap:bin { "010001" }
  } //Z#227
  /* Antarctica/Macquarie */ :table {
    transPre32:intvector { -1, 2080708096 }
    trans:intvector { -1680508800, -1665392400, -1601719200, -687052800, -71136000, -55411200, -37267200, -25776000, -5817600, 5673600, 25632000, 37728000, 57686400, 67968000, 89136000, 100022400, 120585600, 131472000, 152035200, 162921600, 183484800, 194976000, 215539200, 226425600, 246988800, 257875200, 278438400, 289324800, 309888000, 320774400, 341337600, 352224000, 372787200, 386092800, 404841600, 417542400, 436291200, 447177600, 467740800, 478627200, 499190400, 510076800, 530035200, 542736000, 562089600, 574790400, 594144000, 606240000, 625593600, 637689600, 657043200, 670348800, 686678400, 701798400, 718128000, 733248000, 749577600, 764697600, 781027200, 796147200, 812476800, 828201600, 844531200, 859651200, 875980800, 891100800, 907430400, 922550400, 938880000, 954000000, 967305600, 985449600, 1002384000, 1017504000, 1033833600, 1048953600, 1065283200, 1080403200, 1096732800, 1111852800, 1128182400, 1143907200, 1159632000, 1174752000, 1191686400, 1207411200, 1223136000, 1238860800, 1254585600, 1270310400 }
    typeOffsets:intvector { 0, 0, 36000, 0, 36000, 3600, 39600, 0 }
    typeMap:bin { "01020100010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203" }
  } //Z#228
  /* Antarctica/Mawson */ :table {
    trans:intvector { -501206400, 1255809600 }
    typeOffsets:intvector { 0, 0, 18000, 0, 21600, 0 }
    typeMap:bin { "0201" }
  } //Z#229
  /* Antarctica/McMurdo */ :int { 551 } //Z#230
  /* Antarctica/Palmer */ :table {
    trans:intvector { -157766400, -152658000, -132955200, -121122000, -101419200, -86821200, -71092800, -54766800, -39038400, -23317200, -7588800, 128142000, 136605600, 389070000, 403070400, 416372400, 434520000, 447822000, 466574400, 479271600, 498024000, 510721200, 529473600, 545194800, 560923200, 574225200, 592372800, 605674800, 624427200, 637124400, 653457600, 668574000, 687326400, 700628400, 718776000, 732078000, 750225600, 763527600, 781675200, 794977200, 813729600, 826426800, 845179200, 859690800, 876628800, 889930800, 906868800, 923194800, 939528000, 952830000, 971582400, 984279600, 1003032000, 1015729200, 1034481600, 1047178800, 1065931200, 1079233200, 1097380800, 1110682800, 1128830400, 1142132400, 1160884800, 1173582000, 1192334400, 1206846000, 1223784000, 1237086000, 1255233600, 1270350000, 1286683200, 1304823600, 1313899200, 1335668400, 1346558400, 1367118000, 1378612800, 1398567600, 1410062400, 1463281200, 1471147200, 1480820400 }
    typeOffsets:intvector { 0, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "02010201020102010201030403010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203" }
  } //Z#231
  /* Antarctica/Rothera */ :table {
    trans:intvector { 218246400 }
    typeOffsets:intvector { 0, 0, -10800, 0 }
    typeMap:bin { "01" }
  } //Z#232
  /* Antarctica/South_Pole */ :int { 551 } //Z#233
  /* Antarctica/Syowa */ :table {
    trans:intvector { -407808000 }
    typeOffsets:intvector { 0, 0, 10800, 0 }
    typeMap:bin { "01" }
  } //Z#234
  /* Antarctica/Troll */ :table {
    trans:intvector { 1111885200, 1130634000 }
    typeOffsets:intvector { 0, 0, 0, 7200 }
    typeMap:bin { "0100" }
    finalRule { "Troll" }
    finalRaw:int { 0 }
    finalYear:int { 2006 }
  } //Z#235
  /* Antarctica/Vostok */ :table {
    trans:intvector { -380073600 }
    typeOffsets:intvector { 0, 0, 21600, 0 }
    typeMap:bin { "01" }
  } //Z#236
  /* Arctic/Longyearbyen */ :int { 473 } //Z#237
  /* Asia/Aden */ :int { 308 } //Z#238
  /* Asia/Almaty */ :table {
    trans:intvector { -1441170468, -1247547600, 354909600, 370717200, 386445600, 402253200, 417981600, 433789200, 449604000, 465336000, 481060800, 496785600, 512510400, 528235200, 543960000, 559684800, 575409600, 591134400, 606859200, 622584000, 638308800, 654638400, 670363200, 686091600, 695768400, 701812800, 717537600, 733262400, 748987200, 764712000, 780436800, 796161600, 811886400, 828216000, 846360000, 859665600, 877809600, 891115200, 909259200, 922564800, 941313600, 954014400, 972763200, 985464000, 1004212800, 1017518400, 1035662400, 1048968000, 1067112000, 1080417600, 1099166400 }
    typeOffsets:intvector { 18468, 0, 18000, 0, 18000, 3600, 21600, 0, 21600, 3600 }
    typeMap:bin { "010304030403040304030403040304030403040304030201030403040304030403040304030403040304030403040304030403" }
  } //Z#239
  /* Asia/Amman */ :table {
    trans:intvector { -1230776624, 108165600, 118270800, 136591200, 149806800, 168127200, 181342800, 199749600, 215643600, 231285600, 244501200, 262735200, 275950800, 481154400, 496962000, 512949600, 528670800, 544399200, 560120400, 575848800, 592174800, 610581600, 623624400, 641167200, 655074000, 671839200, 685918800, 702856800, 717973200, 733701600, 749422800, 765151200, 779662800, 797205600, 811116000, 828655200, 843170400, 860104800, 874620000, 891554400, 906069600, 930780000, 938124000, 954367200, 970178400, 985816800, 1001628000, 1017352800, 1033077600, 1048802400, 1066946400, 1080252000, 1097791200, 1112306400, 1128031200, 1143756000, 1161900000, 1175205600, 1193349600, 1206655200, 1225404000, 1238104800, 1256853600, 1269554400, 1288303200, 1301608800, 1319752800, 1333058400, 1387486800, 1395957600, 1414706400 }
    typeOffsets:intvector { 8624, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Jordan" }
    finalRaw:int { 7200 }
    finalYear:int { 2015 }
  } //Z#240
  /* Asia/Anadyr */ :table {
    trans:intvector { -1441194596, -1247572800, 354884400, 370692000, 386420400, 402231600, 417960000, 433767600, 449582400, 465314400, 481039200, 496764000, 512488800, 528213600, 543938400, 559663200, 575388000, 591112800, 606837600, 622562400, 638287200, 654616800, 670341600, 686070000, 695746800, 701791200, 717516000, 733240800, 748965600, 764690400, 780415200, 796140000, 811864800, 828194400, 846338400, 859644000, 877788000, 891093600, 909237600, 922543200, 941292000, 953992800, 972741600, 985442400, 1004191200, 1017496800, 1035640800, 1048946400, 1067090400, 1080396000, 1099144800, 1111845600, 1130594400, 1143295200, 1162044000, 1174744800, 1193493600, 1206799200, 1224943200, 1238248800, 1256392800, 1269698400, 1288450800, 1301151600 }
    typeOffsets:intvector { 42596, 0, 39600, 0, 39600, 3600, 43200, 0, 43200, 3600, 46800, 0, 46800, 3600 }
    typeMap:bin { "03050605040304030403040304030403040304030403020103040304030403040304030403040304030403040304030403040304030403040304030403020103" }
  } //Z#241
  /* Asia/Aqtau */ :table {
    trans:intvector { -1441164064, -1247544000, 370724400, 386445600, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686095200, 695772000, 701816400, 717541200, 733266000, 748990800, 764715600, 780440400, 796168800, 811893600, 828223200, 846367200, 859672800, 877816800, 891122400, 909266400, 922572000, 941320800, 954021600, 972770400, 985471200, 1004220000, 1017525600, 1035669600, 1048975200, 1067119200, 1080424800, 1099173600 }
    typeOffsets:intvector { 12064, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "0103050403040304030403040304030403040304030201030403040304010201020102010201020102010201020102010203" }
  } //Z#242
  /* Asia/Aqtobe */ :table {
    trans:intvector { -1441165720, -1247544000, 354913200, 370720800, 386445600, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686095200, 695772000, 701816400, 717541200, 733266000, 748990800, 764715600, 780440400, 796165200, 811890000, 828219600, 846363600, 859669200, 877813200, 891118800, 909262800, 922568400, 941317200, 954018000, 972766800, 985467600, 1004216400, 1017522000, 1035666000, 1048971600, 1067115600, 1080421200, 1099170000 }
    typeOffsets:intvector { 13720, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "010304050403040304030403040304030403040304030201030403040304030403040304030403040304030403040304030403" }
  } //Z#243
  /* Asia/Ashgabat */ :table {
    trans:intvector { -1441166012, -1247544000, 354913200, 370720800, 386449200, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686095200, 695772000 }
    typeOffsets:intvector { 14012, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103" }
    links:intvector { 244, 245 }
  } //Z#244
  /* Asia/Ashkhabad */ :int { 244 } //Z#245
  /* Asia/Atyrau */ :table {
    trans:intvector { -1441164464, -1247540400, 370724400, 386445600, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686095200, 695772000, 701816400, 717541200, 733266000, 748990800, 764715600, 780440400, 796165200, 811890000, 828219600, 846363600, 859669200, 877813200, 891118800, 909262800, 922568400, 941320800, 954021600, 972770400, 985471200, 1004220000, 1017525600, 1035669600, 1048975200, 1067119200, 1080424800, 1099173600 }
    typeOffsets:intvector { 12464, 0, 10800, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "0104060504050405040504050405040504050405040302040504050405040504050405040504030203020302030203020304" }
  } //Z#246
  /* Asia/Baghdad */ :table {
    transPre32:intvector { -1, 1770435036 }
    trans:intvector { -1641005856, 389048400, 402264000, 417906000, 433800000, 449614800, 465422400, 481150800, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622591200, 638316000, 654645600, 670464000, 686275200, 702086400, 717897600, 733622400, 749433600, 765158400, 780969600, 796694400, 812505600, 828316800, 844128000, 859852800, 875664000, 891388800, 907200000, 922924800, 938736000, 954547200, 970358400, 986083200, 1001894400, 1017619200, 1033430400, 1049155200, 1064966400, 1080777600, 1096588800, 1112313600, 1128124800, 1143849600, 1159660800, 1175385600, 1191196800 }
    typeOffsets:intvector { 10660, 0, 10656, 0, 10800, 0, 10800, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
  } //Z#247
  /* Asia/Bahrain */ :int { 305 } //Z#248
  /* Asia/Baku */ :table {
    trans:intvector { -1441163964, -405140400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622591200, 638316000, 654645600, 670370400, 686098800, 701823600, 717548400, 828234000, 846378000, 859680000, 877824000, 891129600, 909273600, 922579200, 941328000, 954028800, 972777600, 985478400, 1004227200, 1017532800, 1035676800, 1048982400, 1067126400, 1080432000, 1099180800, 1111881600, 1130630400, 1143331200, 1162080000, 1174780800, 1193529600, 1206835200, 1224979200, 1238284800, 1256428800, 1269734400, 1288483200, 1301184000, 1319932800, 1332633600, 1351382400, 1364688000, 1382832000, 1396137600, 1414281600, 1427587200, 1445731200 }
    typeOffsets:intvector { 11964, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "010304030403040304030403040304030403040304030201020304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
  } //Z#249
  /* Asia/Bangkok */ :table {
    trans:intvector { -1570084924 }
    typeOffsets:intvector { 24124, 0, 25200, 0 }
    typeMap:bin { "01" }
    links:intvector { 250, 302, 330 }
  } //Z#250
  /* Asia/Barnaul */ :table {
    trans:intvector { -1579844100, -1247551200, 354906000, 370713600, 386442000, 402249600, 417978000, 433785600, 449600400, 465332400, 481057200, 496782000, 512506800, 528231600, 543956400, 559681200, 575406000, 591130800, 606855600, 622580400, 638305200, 654634800, 670359600, 686088000, 695764800, 701809200, 717534000, 733258800, 748983600, 764708400, 780433200, 796158000, 801590400, 811886400, 828216000, 846360000, 859665600, 877809600, 891115200, 909259200, 922564800, 941313600, 954014400, 972763200, 985464000, 1004212800, 1017518400, 1035662400, 1048968000, 1067112000, 1080417600, 1099166400, 1111867200, 1130616000, 1143316800, 1162065600, 1174766400, 1193515200, 1206820800, 1224964800, 1238270400, 1256414400, 1269720000, 1288468800, 1301169600, 1414263600, 1459022400 }
    typeOffsets:intvector { 20100, 0, 21600, 0, 21600, 3600, 25200, 0, 25200, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103040304030403040201020102010201020102010201020102010201020102010201020102010201030103" }
  } //Z#251
  /* Asia/Beirut */ :table {
    transPre32:intvector { -1, 1454817976 }
    trans:intvector { -1570413600, -1552186800, -1538359200, -1522551600, -1507514400, -1490583600, -1473645600, -1460948400, -399866400, -386650800, -368330400, -355114800, -336794400, -323578800, -305172000, -291956400, -273636000, -260420400, 78012000, 86734800, 105055200, 118270800, 136591200, 149806800, 168127200, 181342800, 199749600, 212965200, 231285600, 244501200, 262735200, 275950800, 452210400, 466722000, 483746400, 498258000, 515282400, 529794000, 546818400, 561330000, 581119200, 592952400, 610754400, 624488400, 641512800, 656024400, 673048800, 687560400, 704671200, 718146000, 733269600, 748990800, 764719200, 780440400, 796168800, 811890000, 828223200, 843944400, 859672800, 875394000, 891122400, 906843600, 922572000, 941317200 }
    typeOffsets:intvector { 8520, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Lebanon" }
    finalRaw:int { 7200 }
    finalYear:int { 2000 }
  } //Z#252
  /* Asia/Bishkek */ :table {
    trans:intvector { -1441169904, -1247547600, 354909600, 370717200, 386445600, 402253200, 417981600, 433789200, 449604000, 465336000, 481060800, 496785600, 512510400, 528235200, 543960000, 559684800, 575409600, 591134400, 606859200, 622584000, 638308800, 654638400, 670363200, 683582400, 703018800, 717530400, 734468400, 748980000, 765918000, 780429600, 797367600, 811879200, 828817200, 843933600, 859671000, 877811400, 891120600, 909261000, 922570200, 941315400, 954019800, 972765000, 985469400, 1004214600, 1017523800, 1035664200, 1048973400, 1067113800, 1080423000, 1099168200, 1111872600, 1123783200 }
    typeOffsets:intvector { 17904, 0, 18000, 0, 18000, 3600, 21600, 0, 21600, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020102010201020102010201020102010201020102010201020102010203" }
  } //Z#253
  /* Asia/Brunei */ :table {
    trans:intvector { -1383464380, -1167636600 }
    typeOffsets:intvector { 27580, 0, 27000, 0, 28800, 0 }
    typeMap:bin { "0102" }
  } //Z#254
  /* Asia/Calcutta */ :int { 286 } //Z#255
  /* Asia/Chita */ :table {
    trans:intvector { -1579419232, -1247558400, 354898800, 370706400, 386434800, 402242400, 417970800, 433778400, 449593200, 465325200, 481050000, 496774800, 512499600, 528224400, 543949200, 559674000, 575398800, 591123600, 606848400, 622573200, 638298000, 654627600, 670352400, 686080800, 695757600, 701802000, 717526800, 733251600, 748976400, 764701200, 780426000, 796150800, 811875600, 828205200, 846349200, 859654800, 877798800, 891104400, 909248400, 922554000, 941302800, 954003600, 972752400, 985453200, 1004202000, 1017507600, 1035651600, 1048957200, 1067101200, 1080406800, 1099155600, 1111856400, 1130605200, 1143306000, 1162054800, 1174755600, 1193504400, 1206810000, 1224954000, 1238259600, 1256403600, 1269709200, 1288458000, 1301158800, 1414252800, 1459015200 }
    typeOffsets:intvector { 27232, 0, 28800, 0, 28800, 3600, 32400, 0, 32400, 3600, 36000, 0 }
    typeMap:bin { "010304030403040304030403040304030403040304030201030403040304030403040304030403040304030403040304030403040304030403040304030403050103" }
  } //Z#256
  /* Asia/Choibalsan */ :table {
    trans:intvector { -2032933080, 252435600, 417974400, 433778400, 449593200, 465314400, 481042800, 496764000, 512492400, 528213600, 543942000, 559663200, 575391600, 591112800, 606841200, 622562400, 638290800, 654616800, 670345200, 686066400, 701794800, 717516000, 733244400, 748965600, 764694000, 780415200, 796143600, 811864800, 828198000, 843919200, 859647600, 875368800, 891097200, 906818400, 988390800, 1001692800, 1017421200, 1033142400, 1048870800, 1064592000, 1080320400, 1096041600, 1111770000, 1127491200, 1143219600, 1159545600, 1206889200, 1427479200, 1443193200, 1458928800, 1474642800 }
    typeOffsets:intvector { 27480, 0, 25200, 0, 28800, 0, 28800, 3600, 32400, 0, 32400, 3600 }
    typeMap:bin { "010205040504050405040504050405040504050405040504050405040504050405040504050405040504050405040203020302" }
  } //Z#257
  /* Asia/Chongqing */ :int { 313 } //Z#258
  /* Asia/Chungking */ :int { 313 } //Z#259
  /* Asia/Colombo */ :table {
    transPre32:intvector { -1, 1454807332 }
    trans:intvector { -2019705572, -883287000, -862639200, -764051400, 832962600, 846266400, 1145039400 }
    typeOffsets:intvector { 19164, 0, 19172, 0, 19800, 0, 19800, 1800, 19800, 3600, 21600, 0, 23400, 0 }
    typeMap:bin { "0102030402060502" }
  } //Z#260
  /* Asia/Dacca */ :int { 263 } //Z#261
  /* Asia/Damascus */ :table {
    trans:intvector { -1577931912, -1568592000, -1554080400, -1537142400, -1522630800, -1505692800, -1491181200, -1474243200, -1459126800, -242265600, -228877200, -210556800, -197427600, -178934400, -165718800, -147398400, -134269200, -116467200, -102646800, -84326400, -71110800, -52704000, -39488400, -21168000, -7952400, 10368000, 23583600, 41904000, 55119600, 73526400, 86742000, 105062400, 118278000, 136598400, 149814000, 168134400, 181350000, 199756800, 212972400, 231292800, 241916400, 262828800, 273452400, 418694400, 433810800, 450316800, 465433200, 508896000, 529196400, 541555200, 562633200, 574387200, 594255600, 607305600, 623199600, 638928000, 654649200, 670456800, 686264400, 702684000, 717886800, 733096800, 748904400, 765151200, 780958800, 796687200, 812494800, 828309600, 844117200, 859759200, 875653200, 891208800, 907189200, 922917600, 938725200, 954540000, 970347600, 986076000, 1001883600, 1017612000, 1033419600, 1049148000, 1064955600, 1080770400, 1096578000, 1112306400, 1128114000, 1143842400, 1158872400, 1175205600, 1193950800, 1207260000, 1225486800, 1238104800, 1256850000, 1270159200, 1288299600, 1301608800, 1319749200, 1333058400, 1351198800 }
    typeOffsets:intvector { 8712, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Syria" }
    finalRaw:int { 7200 }
    finalYear:int { 2013 }
  } //Z#262
  /* Asia/Dhaka */ :table {
    transPre32:intvector { -1, 1770423996 }
    trans:intvector { -891582800, -872058600, -862637400, -576138600, 1245430800, 1262278800 }
    typeOffsets:intvector { 21700, 0, 19800, 0, 21200, 0, 21600, 0, 21600, 3600, 23400, 0 }
    typeMap:bin { "02050105030403" }
    links:intvector { 261, 263, 372 }
  } //Z#263
  /* Asia/Dili */ :table {
    trans:intvector { -1830414140, -879152400, 199897200, 969120000 }
    typeOffsets:intvector { 30140, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "01020102" }
  } //Z#264
  /* Asia/Dubai */ :table {
    trans:intvector { -1577936472 }
    typeOffsets:intvector { 13272, 0, 14400, 0 }
    typeMap:bin { "01" }
    links:intvector { 265, 296 }
  } //Z#265
  /* Asia/Dushanbe */ :table {
    trans:intvector { -1441168512, -1247547600, 354909600, 370717200, 386445600, 402253200, 417981600, 433789200, 449604000, 465336000, 481060800, 496785600, 512510400, 528235200, 543960000, 559684800, 575409600, 591134400, 606859200, 622584000, 638308800, 654638400, 670363200, 684363600 }
    typeOffsets:intvector { 16512, 0, 18000, 0, 18000, 3600, 21600, 0, 21600, 3600 }
    typeMap:bin { "010304030403040304030403040304030403040304030201" }
  } //Z#266
  /* Asia/Famagusta */ :table {
    trans:intvector { -1518920148, 166572000, 182293200, 200959200, 213829200, 228866400, 243982800, 260316000, 276123600, 291765600, 307486800, 323820000, 338936400, 354664800, 370386000, 386114400, 401835600, 417564000, 433285200, 449013600, 465339600, 481068000, 496789200, 512517600, 528238800, 543967200, 559688400, 575416800, 591138000, 606866400, 622587600, 638316000, 654642000, 670370400, 686091600, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796168800, 811890000, 828223200, 843944400, 859672800, 875394000, 891122400, 909277200, 922582800, 941331600, 954032400, 972781200, 985482000, 1004230800, 1017536400, 1035680400, 1048986000, 1067130000, 1080435600, 1099184400, 1111885200, 1130634000, 1143334800, 1162083600, 1174784400, 1193533200, 1206838800, 1224982800, 1238288400, 1256432400, 1269738000, 1288486800, 1301187600, 1319936400, 1332637200, 1351386000, 1364691600, 1382835600, 1396141200, 1414285200, 1427590800, 1445734800, 1459040400, 1473282000, 1509238800, 1521939600, 1540688400 }
    typeOffsets:intvector { 8148, 0, 7200, 0, 7200, 3600, 10800, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203010201" }
    finalRule { "EUAsia" }
    finalRaw:int { 7200 }
    finalYear:int { 2019 }
  } //Z#267
  /* Asia/Gaza */ :table {
    transPre32:intvector { -1, 2109557424 }
    trans:intvector { -933645600, -857358000, -844300800, -825822000, -812685600, -794199600, -779853600, -762656400, -748310400, -731127600, -399088800, -386650800, -368330400, -355114800, -336790800, -323654400, -305168400, -292032000, -273632400, -260496000, -242096400, -228960000, -210560400, -197424000, -178938000, -165801600, -147402000, -134265600, -115866000, -102643200, -84330000, -81313200, 142380000, 150843600, 167176800, 178664400, 482277600, 495579600, 516751200, 526424400, 545436000, 558478800, 576626400, 589323600, 609890400, 620773200, 638316000, 651618000, 669765600, 683672400, 701820000, 715726800, 733701600, 747176400, 765151200, 778021200, 796600800, 810075600, 828655200, 843170400, 860104800, 874620000, 891554400, 906069600, 924213600, 939934800, 956268000, 971989200, 987717600, 1003438800, 1019167200, 1034888400, 1050616800, 1066338000, 1082066400, 1096581600, 1113516000, 1128380400, 1143842400, 1158872400, 1175378400, 1189638000, 1206655200, 1219957200, 1238104800, 1252015200, 1269640860, 1281474000, 1301608860, 1312146000, 1333058400, 1348178400, 1364508000, 1380229200, 1395957600, 1414098000, 1427493600, 1445547600, 1458946800, 1477692000 }
    typeOffsets:intvector { 8272, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Palestine" }
    finalRaw:int { 7200 }
    finalYear:int { 2017 }
  } //Z#268
  /* Asia/Harbin */ :int { 313 } //Z#269
  /* Asia/Hebron */ :table {
    transPre32:intvector { -1, 2109557273 }
    trans:intvector { -933645600, -857358000, -844300800, -825822000, -812685600, -794199600, -779853600, -762656400, -748310400, -731127600, -399088800, -386650800, -368330400, -355114800, -336790800, -323654400, -305168400, -292032000, -273632400, -260496000, -242096400, -228960000, -210560400, -197424000, -178938000, -165801600, -147402000, -134265600, -115866000, -102643200, -84330000, -81313200, 142380000, 150843600, 167176800, 178664400, 482277600, 495579600, 516751200, 526424400, 545436000, 558478800, 576626400, 589323600, 609890400, 620773200, 638316000, 651618000, 669765600, 683672400, 701820000, 715726800, 733701600, 747176400, 765151200, 778021200, 796600800, 810075600, 828655200, 843170400, 860104800, 874620000, 891554400, 906069600, 924213600, 939934800, 956268000, 971989200, 987717600, 1003438800, 1019167200, 1034888400, 1050616800, 1066338000, 1082066400, 1096581600, 1113516000, 1128380400, 1143842400, 1158872400, 1175378400, 1189638000, 1206655200, 1220216400, 1238104800, 1252015200, 1269554400, 1281474000, 1301608860, 1312146000, 1314655200, 1317330000, 1333058400, 1348178400, 1364508000, 1380229200, 1395957600, 1414098000, 1427493600, 1445547600, 1458946800, 1477692000 }
    typeOffsets:intvector { 8423, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Palestine" }
    finalRaw:int { 7200 }
    finalYear:int { 2017 }
  } //Z#270
  /* Asia/Ho_Chi_Minh */ :table {
    trans:intvector { -2004073600, -1851577590, -852105600, -782643600, -767869200, -718095600, -457776000, -315648000, 171820800 }
    typeOffsets:intvector { 25600, 0, 25200, 0, 25590, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "020103040103010301" }
    links:intvector { 271, 309, 629 }
  } //Z#271
  /* Asia/Hong_Kong */ :table {
    trans:intvector { -2056693002, -907389000, -891667800, -884246400, -766746000, -747981000, -728544600, -717049800, -694503000, -683785800, -668064600, -654755400, -636615000, -623305800, -605165400, -591856200, -573715800, -559801800, -542352600, -528352200, -510211800, -498112200, -478762200, -466662600, -446707800, -435213000, -415258200, -403158600, -383808600, -371709000, -352359000, -340259400, -320909400, -308809800, -288855000, -277360200, -257405400, -245910600, -225955800, -213856200, -194506200, -182406600, -163056600, -148537800, -132816600, -117088200, -101367000, -85638600, -69312600, -53584200, -37863000, -22134600, -6413400, 9315000, 25036200, 40764600, 56485800, 72214200, 88540200, 104268600, 119989800, 126041400, 151439400, 167167800, 182889000, 198617400, 214338600, 295385400, 309292200 }
    typeOffsets:intvector { 27402, 0, 28800, 0, 28800, 3600, 32400, 0 }
    typeMap:bin { "010201030102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    links:intvector { 272, 510 }
  } //Z#272
  /* Asia/Hovd */ :table {
    trans:intvector { -2032927596, 252439200, 417978000, 433785600, 449600400, 465321600, 481050000, 496771200, 512499600, 528220800, 543949200, 559670400, 575398800, 591120000, 606848400, 622569600, 638298000, 654624000, 670352400, 686073600, 701802000, 717523200, 733251600, 748972800, 764701200, 780422400, 796150800, 811872000, 828205200, 843926400, 859654800, 875376000, 891104400, 906825600, 988398000, 1001700000, 1017428400, 1033149600, 1048878000, 1064599200, 1080327600, 1096048800, 1111777200, 1127498400, 1143226800, 1159552800, 1427482800, 1443196800, 1458932400, 1474646400 }
    typeOffsets:intvector { 21996, 0, 21600, 0, 25200, 0, 25200, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
  } //Z#273
  /* Asia/Irkutsk */ :table {
    trans:intvector { -1575874625, -1247554800, 354902400, 370710000, 386438400, 402246000, 417974400, 433782000, 449596800, 465328800, 481053600, 496778400, 512503200, 528228000, 543952800, 559677600, 575402400, 591127200, 606852000, 622576800, 638301600, 654631200, 670356000, 686084400, 695761200, 701805600, 717530400, 733255200, 748980000, 764704800, 780429600, 796154400, 811879200, 828208800, 846352800, 859658400, 877802400, 891108000, 909252000, 922557600, 941306400, 954007200, 972756000, 985456800, 1004205600, 1017511200, 1035655200, 1048960800, 1067104800, 1080410400, 1099159200, 1111860000, 1130608800, 1143309600, 1162058400, 1174759200, 1193508000, 1206813600, 1224957600, 1238263200, 1256407200, 1269712800, 1288461600, 1301162400, 1414256400 }
    typeOffsets:intvector { 25025, 0, 25200, 0, 25200, 3600, 28800, 0, 28800, 3600, 32400, 0 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#274
  /* Asia/Istanbul */ :int { 457 } //Z#275
  /* Asia/Jakarta */ :table {
    trans:intvector { -1451719200, -1172906400, -876641400, -766054800, -683883000, -620812800, -189415800 }
    typeOffsets:intvector { 25632, 0, 25200, 0, 26400, 0, 27000, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "02030503040301" }
  } //Z#276
  /* Asia/Jayapura */ :table {
    trans:intvector { -1172913768, -799491600, -189423000 }
    typeOffsets:intvector { 33768, 0, 32400, 0, 34200, 0 }
    typeMap:bin { "010201" }
  } //Z#277
  /* Asia/Jerusalem */ :table {
    transPre32:intvector { -1, 1454818042 }
    trans:intvector { -1641003640, -933645600, -857358000, -844300800, -825822000, -812685600, -794199600, -779853600, -762656400, -748310400, -731127600, -681962400, -673243200, -667962000, -652327200, -636426000, -622087200, -608947200, -591847200, -572486400, -558576000, -542851200, -527731200, -514425600, -490845600, -482986800, -459475200, -451537200, -428551200, -418262400, -400032000, -387428400, 142380000, 150843600, 167176800, 178664400, 482277600, 495579600, 516751200, 526424400, 545436000, 558478800, 576626400, 589323600, 609890400, 620773200, 638316000, 651618000, 669765600, 683672400, 701820000, 715726800, 733701600, 747176400, 765151200, 778021200, 796600800, 810075600, 826840800, 842821200, 858895200, 874184400, 890344800, 905029200, 923011200, 936313200, 955670400, 970783200, 986770800, 1001282400, 1017356400, 1033941600, 1048806000, 1065132000, 1081292400, 1095804000, 1112313600, 1128812400, 1143763200, 1159657200, 1175212800, 1189897200, 1206662400, 1223161200, 1238112000, 1254006000, 1269561600, 1284246000, 1301616000, 1317510000, 1333065600, 1348354800, 1364515200, 1382828400 }
    typeOffsets:intvector { 8454, 0, 7200, 0, 7200, 3600, 7200, 7200, 8440, 0 }
    typeMap:bin { "0401020102010201020102010302010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Zion" }
    finalRaw:int { 7200 }
    finalYear:int { 2014 }
    links:intvector { 278, 320, 526 }
  } //Z#278
  /* Asia/Kabul */ :table {
    transPre32:intvector { -1, 1770429088 }
    trans:intvector { -788932800 }
    typeOffsets:intvector { 16608, 0, 14400, 0, 16200, 0 }
    typeMap:bin { "0102" }
  } //Z#279
  /* Asia/Kamchatka */ :table {
    trans:intvector { -1487759676, -1247569200, 354888000, 370695600, 386424000, 402231600, 417960000, 433767600, 449582400, 465314400, 481039200, 496764000, 512488800, 528213600, 543938400, 559663200, 575388000, 591112800, 606837600, 622562400, 638287200, 654616800, 670341600, 686070000, 695746800, 701791200, 717516000, 733240800, 748965600, 764690400, 780415200, 796140000, 811864800, 828194400, 846338400, 859644000, 877788000, 891093600, 909237600, 922543200, 941292000, 953992800, 972741600, 985442400, 1004191200, 1017496800, 1035640800, 1048946400, 1067090400, 1080396000, 1099144800, 1111845600, 1130594400, 1143295200, 1162044000, 1174744800, 1193493600, 1206799200, 1224943200, 1238248800, 1256392800, 1269698400, 1288450800, 1301151600 }
    typeOffsets:intvector { 38076, 0, 39600, 0, 39600, 3600, 43200, 0, 43200, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103040304030403040304030403040304030403040304030403040304030403040304030403020103" }
  } //Z#280
  /* Asia/Karachi */ :table {
    trans:intvector { -1988166492, -862637400, -764145000, -576135000, 1018119600, 1033840800, 1212260400, 1225476000, 1239735600, 1257012000 }
    typeOffsets:intvector { 16092, 0, 18000, 0, 18000, 3600, 19800, 0, 19800, 3600 }
    typeMap:bin { "03040301020102010201" }
    links:intvector { 281, 544 }
  } //Z#281
  /* Asia/Kashgar */ :int { 328 } //Z#282
  /* Asia/Kathmandu */ :table {
    trans:intvector { -1577943676, 504901800 }
    typeOffsets:intvector { 20476, 0, 19800, 0, 20700, 0 }
    typeMap:bin { "0102" }
    links:intvector { 283, 284 }
  } //Z#283
  /* Asia/Katmandu */ :int { 283 } //Z#284
  /* Asia/Khandyga */ :table {
    trans:intvector { -1579424533, -1247558400, 354898800, 370706400, 386434800, 402242400, 417970800, 433778400, 449593200, 465325200, 481050000, 496774800, 512499600, 528224400, 543949200, 559674000, 575398800, 591123600, 606848400, 622573200, 638298000, 654627600, 670352400, 686080800, 695757600, 701802000, 717526800, 733251600, 748976400, 764701200, 780426000, 796150800, 811875600, 828205200, 846349200, 859654800, 877798800, 891104400, 909248400, 922554000, 941302800, 954003600, 972752400, 985453200, 1004202000, 1017507600, 1035651600, 1048957200, 1067101200, 1072882800, 1080403200, 1099152000, 1111852800, 1130601600, 1143302400, 1162051200, 1174752000, 1193500800, 1206806400, 1224950400, 1238256000, 1256400000, 1269705600, 1288454400, 1301155200, 1315832400, 1414252800 }
    typeOffsets:intvector { 32533, 0, 28800, 0, 28800, 3600, 32400, 0, 32400, 3600, 36000, 0, 36000, 3600, 39600, 0 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103040304030403040304030403040304030403040304030403050605060506050605060506050605070503" }
  } //Z#285
  /* Asia/Kolkata */ :table {
    transPre32:intvector { -1, 649730088, -1, 1139272496 }
    trans:intvector { -2019705670, -891581400, -872058600, -862637400, -764145000 }
    typeOffsets:intvector { 21208, 0, 19270, 0, 19800, 0, 19800, 3600, 21200, 0 }
    typeMap:bin { "04010203020302" }
    links:intvector { 255, 286, 512 }
  } //Z#286
  /* Asia/Krasnoyarsk */ :table {
    trans:intvector { -1577513486, -1247551200, 354906000, 370713600, 386442000, 402249600, 417978000, 433785600, 449600400, 465332400, 481057200, 496782000, 512506800, 528231600, 543956400, 559681200, 575406000, 591130800, 606855600, 622580400, 638305200, 654634800, 670359600, 686088000, 695764800, 701809200, 717534000, 733258800, 748983600, 764708400, 780433200, 796158000, 811882800, 828212400, 846356400, 859662000, 877806000, 891111600, 909255600, 922561200, 941310000, 954010800, 972759600, 985460400, 1004209200, 1017514800, 1035658800, 1048964400, 1067108400, 1080414000, 1099162800, 1111863600, 1130612400, 1143313200, 1162062000, 1174762800, 1193511600, 1206817200, 1224961200, 1238266800, 1256410800, 1269716400, 1288465200, 1301166000, 1414260000 }
    typeOffsets:intvector { 22286, 0, 21600, 0, 21600, 3600, 25200, 0, 25200, 3600, 28800, 0 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#287
  /* Asia/Kuala_Lumpur */ :table {
    transPre32:intvector { -1, 2117490090 }
    trans:intvector { -2038200925, -1167634800, -1073028000, -894180000, -879665400, -767005200, 378664200 }
    typeOffsets:intvector { 24406, 0, 24925, 0, 25200, 0, 25200, 1200, 26400, 0, 27000, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "0102030405070506" }
  } //Z#288
  /* Asia/Kuching */ :table {
    trans:intvector { -1383463280, -1167636600, -1082448000, -1074586800, -1050825600, -1042964400, -1019289600, -1011428400, -987753600, -979892400, -956217600, -948356400, -924595200, -916734000, -893059200, -885198000, -879667200, -767005200 }
    typeOffsets:intvector { 26480, 0, 27000, 0, 28800, 0, 28800, 1200, 32400, 0 }
    typeMap:bin { "010203020302030203020302030203020402" }
  } //Z#289
  /* Asia/Kuwait */ :int { 308 } //Z#290
  /* Asia/Macao */ :int { 292 } //Z#291
  /* Asia/Macau */ :table {
    trans:intvector { -1830412800, -277360200, -257405400, -245910600, -225955800, -214473600, -194506200, -182406600, -163056600, -150969600, -131619600, -117088200, -101367000, -85638600, -69312600, -53584200, -37863000, -22134600, -6413400, 9315000, 25036200, 40764600, 56485800, 72201600, 87922800, 103651200, 119977200, 135705600, 151439400, 167167800, 182889000, 198617400, 214338600, 230067000, 245788200, 261504000, 277225200, 292953600, 309279600, 325008000, 340729200 }
    typeOffsets:intvector { 27260, 0, 28800, 0, 28800, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    links:intvector { 291, 292 }
  } //Z#292
  /* Asia/Magadan */ :table {
    trans:intvector { -1441188192, -1247565600, 354891600, 370699200, 386427600, 402235200, 417963600, 433771200, 449586000, 465318000, 481042800, 496767600, 512492400, 528217200, 543942000, 559666800, 575391600, 591116400, 606841200, 622566000, 638290800, 654620400, 670345200, 686073600, 695750400, 701794800, 717519600, 733244400, 748969200, 764694000, 780418800, 796143600, 811868400, 828198000, 846342000, 859647600, 877791600, 891097200, 909241200, 922546800, 941295600, 953996400, 972745200, 985446000, 1004194800, 1017500400, 1035644400, 1048950000, 1067094000, 1080399600, 1099148400, 1111849200, 1130598000, 1143298800, 1162047600, 1174748400, 1193497200, 1206802800, 1224946800, 1238252400, 1256396400, 1269702000, 1288450800, 1301151600, 1414245600, 1461427200 }
    typeOffsets:intvector { 36192, 0, 36000, 0, 36000, 3600, 39600, 0, 39600, 3600, 43200, 0 }
    typeMap:bin { "010304030403040304030403040304030403040304030201030403040304030403040304030403040304030403040304030403040304030403040304030403050103" }
  } //Z#293
  /* Asia/Makassar */ :table {
    trans:intvector { -1172908656, -880272000, -766054800 }
    typeOffsets:intvector { 28656, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "010201" }
    links:intvector { 294, 325 }
  } //Z#294
  /* Asia/Manila */ :table {
    transPre32:intvector { -1, 350346256, -1, 2065645456 }
    trans:intvector { -1046678400, -1038733200, -873273600, -794221200, -496224000, -489315600, 259344000, 275151600 }
    typeOffsets:intvector { -57360, 0, 28800, 0, 28800, 3600, 29040, 0, 32400, 0 }
    typeMap:bin { "03010201040102010201" }
  } //Z#295
  /* Asia/Muscat */ :int { 265 } //Z#296
  /* Asia/Nicosia */ :table {
    trans:intvector { -1518920008, 166572000, 182293200, 200959200, 213829200, 228866400, 243982800, 260316000, 276123600, 291765600, 307486800, 323820000, 338936400, 354664800, 370386000, 386114400, 401835600, 417564000, 433285200, 449013600, 465339600, 481068000, 496789200, 512517600, 528238800, 543967200, 559688400, 575416800, 591138000, 606866400, 622587600, 638316000, 654642000, 670370400, 686091600, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796168800, 811890000, 828223200, 843944400, 859672800, 875394000, 891122400, 909277200, 922582800, 941331600 }
    typeOffsets:intvector { 8008, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EUAsia" }
    finalRaw:int { 7200 }
    finalYear:int { 2000 }
    links:intvector { 297, 472 }
  } //Z#297
  /* Asia/Novokuznetsk */ :table {
    trans:intvector { -1441259328, -1247551200, 354906000, 370713600, 386442000, 402249600, 417978000, 433785600, 449600400, 465332400, 481057200, 496782000, 512506800, 528231600, 543956400, 559681200, 575406000, 591130800, 606855600, 622580400, 638305200, 654634800, 670359600, 686088000, 695764800, 701809200, 717534000, 733258800, 748983600, 764708400, 780433200, 796158000, 811882800, 828212400, 846356400, 859662000, 877806000, 891111600, 909255600, 922561200, 941310000, 954010800, 972759600, 985460400, 1004209200, 1017514800, 1035658800, 1048964400, 1067108400, 1080414000, 1099162800, 1111863600, 1130612400, 1143313200, 1162062000, 1174762800, 1193511600, 1206817200, 1224961200, 1238266800, 1256410800, 1269716400, 1288468800, 1301169600 }
    typeOffsets:intvector { 20928, 0, 21600, 0, 21600, 3600, 25200, 0, 25200, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103040304030403040304030403040304030403040304030403040304030403040304030403020103" }
  } //Z#298
  /* Asia/Novosibirsk */ :table {
    trans:intvector { -1579476700, -1247551200, 354906000, 370713600, 386442000, 402249600, 417978000, 433785600, 449600400, 465332400, 481057200, 496782000, 512506800, 528231600, 543956400, 559681200, 575406000, 591130800, 606855600, 622580400, 638305200, 654634800, 670359600, 686088000, 695764800, 701809200, 717534000, 733258800, 738086400, 748987200, 764712000, 780436800, 796161600, 811886400, 828216000, 846360000, 859665600, 877809600, 891115200, 909259200, 922564800, 941313600, 954014400, 972763200, 985464000, 1004212800, 1017518400, 1035662400, 1048968000, 1067112000, 1080417600, 1099166400, 1111867200, 1130616000, 1143316800, 1162065600, 1174766400, 1193515200, 1206820800, 1224964800, 1238270400, 1256414400, 1269720000, 1288468800, 1301169600, 1414263600, 1469304000 }
    typeOffsets:intvector { 19900, 0, 21600, 0, 21600, 3600, 25200, 0, 25200, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103040304020102010201020102010201020102010201020102010201020102010201020102010201030103" }
  } //Z#299
  /* Asia/Omsk */ :table {
    trans:intvector { -1582088010, -1247547600, 354909600, 370717200, 386445600, 402253200, 417981600, 433789200, 449604000, 465336000, 481060800, 496785600, 512510400, 528235200, 543960000, 559684800, 575409600, 591134400, 606859200, 622584000, 638308800, 654638400, 670363200, 686091600, 695768400, 701812800, 717537600, 733262400, 748987200, 764712000, 780436800, 796161600, 811886400, 828216000, 846360000, 859665600, 877809600, 891115200, 909259200, 922564800, 941313600, 954014400, 972763200, 985464000, 1004212800, 1017518400, 1035662400, 1048968000, 1067112000, 1080417600, 1099166400, 1111867200, 1130616000, 1143316800, 1162065600, 1174766400, 1193515200, 1206820800, 1224964800, 1238270400, 1256414400, 1269720000, 1288468800, 1301169600, 1414263600 }
    typeOffsets:intvector { 17610, 0, 18000, 0, 18000, 3600, 21600, 0, 21600, 3600, 25200, 0 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#300
  /* Asia/Oral */ :table {
    trans:intvector { -1441164324, -1247540400, 354913200, 370720800, 386445600, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622591200, 638316000, 654645600, 670370400, 686095200, 695772000, 701816400, 717544800, 733269600, 748994400, 764719200, 780444000, 796168800, 811893600, 828223200, 846367200, 859672800, 877816800, 891122400, 909266400, 922572000, 941320800, 954021600, 972770400, 985471200, 1004220000, 1017525600, 1035669600, 1048975200, 1067119200, 1080424800, 1099173600 }
    typeOffsets:intvector { 12324, 0, 10800, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "010405060504050405040504050405040504030203020302040302030203020302030203020302030203020302030203020304" }
  } //Z#301
  /* Asia/Phnom_Penh */ :int { 250 } //Z#302
  /* Asia/Pontianak */ :table {
    trans:intvector { -1172906240, -881220600, -766054800, -683883000, -620812800, -189415800, 567964800 }
    typeOffsets:intvector { 26240, 0, 25200, 0, 27000, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "02040203020301" }
  } //Z#303
  /* Asia/Pyongyang */ :table {
    trans:intvector { -1948782180, -1830414600, 1439564400, 1525447800 }
    typeOffsets:intvector { 30180, 0, 30600, 0, 32400, 0 }
    typeMap:bin { "01020102" }
  } //Z#304
  /* Asia/Qatar */ :table {
    trans:intvector { -1577935568, 76190400 }
    typeOffsets:intvector { 12368, 0, 10800, 0, 14400, 0 }
    typeMap:bin { "0201" }
    links:intvector { 248, 305 }
  } //Z#305
  /* Asia/Qyzylorda */ :table {
    trans:intvector { -1441167712, -1247544000, 354913200, 370720800, 386445600, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686095200, 695768400, 701812800, 717541200, 733266000, 748990800, 764715600, 780440400, 796165200, 811890000, 828219600, 846363600, 859669200, 877813200, 891118800, 909262800, 922568400, 941317200, 954018000, 972766800, 985467600, 1004216400, 1017522000, 1035666000, 1048971600, 1067115600, 1080421200, 1099170000 }
    typeOffsets:intvector { 15712, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "010304050403040304030403040304030403040304030203050403040304030403040304030403040304030403040304030405" }
  } //Z#306
  /* Asia/Rangoon */ :int { 333 } //Z#307
  /* Asia/Riyadh */ :table {
    trans:intvector { -719636812 }
    typeOffsets:intvector { 11212, 0, 10800, 0 }
    typeMap:bin { "01" }
    links:intvector { 238, 290, 308 }
  } //Z#308
  /* Asia/Saigon */ :int { 271 } //Z#309
  /* Asia/Sakhalin */ :table {
    trans:intvector { -2031039048, -768560400, 354891600, 370699200, 386427600, 402235200, 417963600, 433771200, 449586000, 465318000, 481042800, 496767600, 512492400, 528217200, 543942000, 559666800, 575391600, 591116400, 606841200, 622566000, 638290800, 654620400, 670345200, 686073600, 695750400, 701794800, 717519600, 733244400, 748969200, 764694000, 780418800, 796143600, 811868400, 828198000, 846342000, 859647600, 877795200, 891100800, 909244800, 922550400, 941299200, 954000000, 972748800, 985449600, 1004198400, 1017504000, 1035648000, 1048953600, 1067097600, 1080403200, 1099152000, 1111852800, 1130601600, 1143302400, 1162051200, 1174752000, 1193500800, 1206806400, 1224950400, 1238256000, 1256400000, 1269705600, 1288454400, 1301155200, 1414249200, 1459008000 }
    typeOffsets:intvector { 34248, 0, 32400, 0, 36000, 0, 36000, 3600, 39600, 0, 39600, 3600 }
    typeMap:bin { "010405040504050405040504050405040504050405040302040504050405040504050403020302030203020302030203020302030203020302030203020302040204" }
  } //Z#310
  /* Asia/Samarkand */ :table {
    trans:intvector { -1441168073, -1247544000, 354913200, 370720800, 386445600, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686091600 }
    typeOffsets:intvector { 16073, 0, 14400, 0, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "010203040302030203020302030203020302030203020302" }
  } //Z#311
  /* Asia/Seoul */ :table {
    trans:intvector { -1948782472, -1830414600, -498128400, -462702600, -451733400, -429784200, -418296600, -399544200, -387451800, -368094600, -356002200, -336645000, -324552600, -305195400, -293103000, -264933000, 547578000, 560883600, 579027600, 592333200 }
    typeOffsets:intvector { 30472, 0, 30600, 0, 30600, 3600, 32400, 0, 32400, 3600 }
    typeMap:bin { "0103010201020102010201020102010304030403" }
    links:intvector { 312, 596 }
  } //Z#312
  /* Asia/Shanghai */ :table {
    transPre32:intvector { -1, 2117485353 }
    trans:intvector { -933494400, -923130000, -908784000, -891594000, 515520000, 527007600, 545155200, 558457200, 576604800, 589906800, 608659200, 621961200, 640108800, 653410800, 671558400, 684860400 }
    typeOffsets:intvector { 29143, 0, 28800, 0, 28800, 3600 }
    typeMap:bin { "0102010201020102010201020102010201" }
    links:intvector { 258, 259, 269, 313, 382, 546 }
  } //Z#313
  /* Asia/Singapore */ :table {
    trans:intvector { -2038200925, -1167634800, -1073028000, -894180000, -879665400, -767005200, 378664200 }
    typeOffsets:intvector { 24925, 0, 25200, 0, 25200, 1200, 26400, 0, 27000, 0, 28800, 0, 32400, 0 }
    typeMap:bin { "01020304060405" }
    links:intvector { 314, 598 }
  } //Z#314
  /* Asia/Srednekolymsk */ :table {
    trans:intvector { -1441188892, -1247565600, 354891600, 370699200, 386427600, 402235200, 417963600, 433771200, 449586000, 465318000, 481042800, 496767600, 512492400, 528217200, 543942000, 559666800, 575391600, 591116400, 606841200, 622566000, 638290800, 654620400, 670345200, 686073600, 695750400, 701794800, 717519600, 733244400, 748969200, 764694000, 780418800, 796143600, 811868400, 828198000, 846342000, 859647600, 877791600, 891097200, 909241200, 922546800, 941295600, 953996400, 972745200, 985446000, 1004194800, 1017500400, 1035644400, 1048950000, 1067094000, 1080399600, 1099148400, 1111849200, 1130598000, 1143298800, 1162047600, 1174748400, 1193497200, 1206802800, 1224946800, 1238252400, 1256396400, 1269702000, 1288450800, 1301151600, 1414245600 }
    typeOffsets:intvector { 36892, 0, 36000, 0, 36000, 3600, 39600, 0, 39600, 3600, 43200, 0 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#315
  /* Asia/Taipei */ :table {
    transPre32:intvector { -1, 1959718936 }
    trans:intvector { -1017820800, -766224000, -745833600, -733827600, -716889600, -699613200, -683884800, -670669200, -652348800, -639133200, -620812800, -607597200, -589276800, -576061200, -562924800, -541760400, -528710400, -510224400, -497174400, -478688400, -465638400, -449830800, -434016000, -418208400, -402480000, -386672400, -370944000, -355136400, -339408000, -323600400, -302515200, -291978000, -270979200, -260442000, 133977600, 149785200, 165513600, 181321200, 299606400, 307551600 }
    typeOffsets:intvector { 29160, 0, 28800, 0, 28800, 3600, 32400, 0 }
    typeMap:bin { "0103010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    links:intvector { 316, 595 }
  } //Z#316
  /* Asia/Tashkent */ :table {
    trans:intvector { -1441168631, -1247547600, 354909600, 370717200, 386445600, 402253200, 417981600, 433789200, 449604000, 465336000, 481060800, 496785600, 512510400, 528235200, 543960000, 559684800, 575409600, 591134400, 606859200, 622584000, 638308800, 654638400, 670363200, 686091600 }
    typeOffsets:intvector { 16631, 0, 18000, 0, 18000, 3600, 21600, 0, 21600, 3600 }
    typeMap:bin { "010304030403040304030403040304030403040304030201" }
  } //Z#317
  /* Asia/Tbilisi */ :table {
    trans:intvector { -1441162751, -405140400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622591200, 638316000, 654645600, 670370400, 686098800, 701816400, 717537600, 733266000, 748987200, 764715600, 780436800, 796161600, 811882800, 828216000, 877806000, 891115200, 909255600, 922564800, 941310000, 954014400, 972759600, 985464000, 1004209200, 1017518400, 1035658800, 1048968000, 1067108400, 1080417600, 1088276400, 1099177200, 1111878000 }
    typeOffsets:intvector { 10751, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010201020102030403040304030403040304030403040304020103" }
  } //Z#318
  /* Asia/Tehran */ :table {
    trans:intvector { -757394744, 247177800, 259272000, 277758000, 283982400, 290809800, 306531000, 322432200, 338499000, 673216200, 685481400, 701209800, 717103800, 732745800, 748639800, 764281800, 780175800, 795817800, 811711800, 827353800, 843247800, 858976200, 874870200, 890512200, 906406200, 922048200, 937942200, 953584200, 969478200, 985206600, 1001100600, 1016742600, 1032636600, 1048278600, 1064172600, 1079814600, 1095708600, 1111437000, 1127331000, 1206045000, 1221939000, 1237667400, 1253561400, 1269203400, 1285097400, 1300739400, 1316633400, 1332275400, 1348169400, 1363897800, 1379791800, 1395433800, 1411327800, 1426969800, 1442863800, 1458505800, 1474399800, 1490128200, 1506022200, 1521664200, 1537558200, 1553200200, 1569094200, 1584736200, 1600630200, 1616358600, 1632252600, 1647894600, 1663788600, 1679430600, 1695324600, 1710966600, 1726860600, 1742589000, 1758483000, 1774125000, 1790019000, 1805661000, 1821555000, 1837197000, 1853091000, 1868733000, 1884627000, 1900355400, 1916249400, 1931891400, 1947785400, 1963427400, 1979321400, 1994963400, 2010857400, 2026585800, 2042479800, 2058121800, 2074015800, 2089657800, 2105551800 }
    typeOffsets:intvector { 12344, 0, 12600, 0, 12600, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "01030403010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "Iran" }
    finalRaw:int { 12600 }
    finalYear:int { 2037 }
    links:intvector { 319, 525 }
  } //Z#319
  /* Asia/Tel_Aviv */ :int { 278 } //Z#320
  /* Asia/Thimbu */ :int { 322 } //Z#321
  /* Asia/Thimphu */ :table {
    trans:intvector { -706341516, 560025000 }
    typeOffsets:intvector { 21516, 0, 19800, 0, 21600, 0 }
    typeMap:bin { "0102" }
    links:intvector { 321, 322 }
  } //Z#322
  /* Asia/Tokyo */ :table {
    transPre32:intvector { -1, 1707254896 }
    trans:intvector { -683802000, -672314400, -654771600, -640864800, -620298000, -609415200, -588848400, -577965600 }
    typeOffsets:intvector { 33539, 0, 32400, 0, 32400, 3600 }
    typeMap:bin { "010201020102010201" }
    links:intvector { 323, 527, 529 }
  } //Z#323
  /* Asia/Tomsk */ :table {
    trans:intvector { -1578807591, -1247551200, 354906000, 370713600, 386442000, 402249600, 417978000, 433785600, 449600400, 465332400, 481057200, 496782000, 512506800, 528231600, 543956400, 559681200, 575406000, 591130800, 606855600, 622580400, 638305200, 654634800, 670359600, 686088000, 695764800, 701809200, 717534000, 733258800, 748983600, 764708400, 780433200, 796158000, 811882800, 828212400, 846356400, 859662000, 877806000, 891111600, 909255600, 922561200, 941310000, 954010800, 972759600, 985460400, 1004209200, 1017514800, 1020193200, 1035662400, 1048968000, 1067112000, 1080417600, 1099166400, 1111867200, 1130616000, 1143316800, 1162065600, 1174766400, 1193515200, 1206820800, 1224964800, 1238270400, 1256414400, 1269720000, 1288468800, 1301169600, 1414263600, 1464465600 }
    typeOffsets:intvector { 20391, 0, 21600, 0, 21600, 3600, 25200, 0, 25200, 3600 }
    typeMap:bin { "01030403040304030403040304030403040304030403020103040304030403040304030403040304030403040304020102010201020102010201020102010201030103" }
  } //Z#324
  /* Asia/Ujung_Pandang */ :int { 294 } //Z#325
  /* Asia/Ulaanbaatar */ :table {
    trans:intvector { -2032931252, 252435600, 417974400, 433782000, 449596800, 465318000, 481046400, 496767600, 512496000, 528217200, 543945600, 559666800, 575395200, 591116400, 606844800, 622566000, 638294400, 654620400, 670348800, 686070000, 701798400, 717519600, 733248000, 748969200, 764697600, 780418800, 796147200, 811868400, 828201600, 843922800, 859651200, 875372400, 891100800, 906822000, 988394400, 1001696400, 1017424800, 1033146000, 1048874400, 1064595600, 1080324000, 1096045200, 1111773600, 1127494800, 1143223200, 1159549200, 1427479200, 1443193200, 1458928800, 1474642800 }
    typeOffsets:intvector { 25652, 0, 25200, 0, 28800, 0, 28800, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    links:intvector { 326, 327 }
  } //Z#326
  /* Asia/Ulan_Bator */ :int { 326 } //Z#327
  /* Asia/Urumqi */ :table {
    trans:intvector { -1325483420 }
    typeOffsets:intvector { 21020, 0, 21600, 0 }
    typeMap:bin { "01" }
    links:intvector { 282, 328 }
  } //Z#328
  /* Asia/Ust-Nera */ :table {
    trans:intvector { -1579426374, -1247558400, 354898800, 370699200, 386427600, 402235200, 417963600, 433771200, 449586000, 465318000, 481042800, 496767600, 512492400, 528217200, 543942000, 559666800, 575391600, 591116400, 606841200, 622566000, 638290800, 654620400, 670345200, 686073600, 695750400, 701794800, 717519600, 733244400, 748969200, 764694000, 780418800, 796143600, 811868400, 828198000, 846342000, 859647600, 877791600, 891097200, 909241200, 922546800, 941295600, 953996400, 972745200, 985446000, 1004194800, 1017500400, 1035644400, 1048950000, 1067094000, 1080399600, 1099148400, 1111849200, 1130598000, 1143298800, 1162047600, 1174748400, 1193497200, 1206802800, 1224946800, 1238252400, 1256396400, 1269702000, 1288450800, 1301151600, 1315828800, 1414249200 }
    typeOffsets:intvector { 34374, 0, 28800, 0, 32400, 0, 36000, 0, 36000, 3600, 39600, 0, 39600, 3600, 43200, 0 }
    typeMap:bin { "010206050605060506050605060506050605060506050403050605060506050605060506050605060506050605060506050605060506050605060506050605070503" }
  } //Z#329
  /* Asia/Vientiane */ :int { 250 } //Z#330
  /* Asia/Vladivostok */ :table {
    trans:intvector { -1487321251, -1247562000, 354895200, 370702800, 386431200, 402238800, 417967200, 433774800, 449589600, 465321600, 481046400, 496771200, 512496000, 528220800, 543945600, 559670400, 575395200, 591120000, 606844800, 622569600, 638294400, 654624000, 670348800, 686077200, 695754000, 701798400, 717523200, 733248000, 748972800, 764697600, 780422400, 796147200, 811872000, 828201600, 846345600, 859651200, 877795200, 891100800, 909244800, 922550400, 941299200, 954000000, 972748800, 985449600, 1004198400, 1017504000, 1035648000, 1048953600, 1067097600, 1080403200, 1099152000, 1111852800, 1130601600, 1143302400, 1162051200, 1174752000, 1193500800, 1206806400, 1224950400, 1238256000, 1256400000, 1269705600, 1288454400, 1301155200, 1414249200 }
    typeOffsets:intvector { 31651, 0, 32400, 0, 32400, 3600, 36000, 0, 36000, 3600, 39600, 0 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#331
  /* Asia/Yakutsk */ :table {
    trans:intvector { -1579423138, -1247558400, 354898800, 370706400, 386434800, 402242400, 417970800, 433778400, 449593200, 465325200, 481050000, 496774800, 512499600, 528224400, 543949200, 559674000, 575398800, 591123600, 606848400, 622573200, 638298000, 654627600, 670352400, 686080800, 695757600, 701802000, 717526800, 733251600, 748976400, 764701200, 780426000, 796150800, 811875600, 828205200, 846349200, 859654800, 877798800, 891104400, 909248400, 922554000, 941302800, 954003600, 972752400, 985453200, 1004202000, 1017507600, 1035651600, 1048957200, 1067101200, 1080406800, 1099155600, 1111856400, 1130605200, 1143306000, 1162054800, 1174755600, 1193504400, 1206810000, 1224954000, 1238259600, 1256403600, 1269709200, 1288458000, 1301158800, 1414252800 }
    typeOffsets:intvector { 31138, 0, 28800, 0, 28800, 3600, 32400, 0, 32400, 3600, 36000, 0 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#332
  /* Asia/Yangon */ :table {
    trans:intvector { -1577946287, -873268200, -778410000 }
    typeOffsets:intvector { 23087, 0, 23400, 0, 32400, 0 }
    typeMap:bin { "010201" }
    links:intvector { 307, 333 }
  } //Z#333
  /* Asia/Yekaterinburg */ :table {
    trans:intvector { -1688270553, -1592610305, -1247544000, 354913200, 370720800, 386449200, 402256800, 417985200, 433792800, 449607600, 465339600, 481064400, 496789200, 512514000, 528238800, 543963600, 559688400, 575413200, 591138000, 606862800, 622587600, 638312400, 654642000, 670366800, 686095200, 695772000, 701816400, 717541200, 733266000, 748990800, 764715600, 780440400, 796165200, 811890000, 828219600, 846363600, 859669200, 877813200, 891118800, 909262800, 922568400, 941317200, 954018000, 972766800, 985467600, 1004216400, 1017522000, 1035666000, 1048971600, 1067115600, 1080421200, 1099170000, 1111870800, 1130619600, 1143320400, 1162069200, 1174770000, 1193518800, 1206824400, 1224968400, 1238274000, 1256418000, 1269723600, 1288472400, 1301173200, 1414267200 }
    typeOffsets:intvector { 14553, 0, 13505, 0, 14400, 0, 14400, 3600, 18000, 0, 18000, 3600, 21600, 0 }
    typeMap:bin { "010204050405040504050405040504050405040504050403020405040504050405040504050405040504050405040504050405040504050405040504050405040604" }
  } //Z#334
  /* Asia/Yerevan */ :table {
    trans:intvector { -1441162680, -405140400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622591200, 638316000, 654645600, 670370400, 686098800, 701823600, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 859672800, 877816800, 891122400, 909266400, 922572000, 941320800, 954021600, 972770400, 985471200, 1004220000, 1017525600, 1035669600, 1048975200, 1067119200, 1080424800, 1099173600, 1111874400, 1130623200, 1143324000, 1162072800, 1174773600, 1193522400, 1206828000, 1224972000, 1238277600, 1256421600, 1269727200, 1288476000, 1301176800, 1319925600 }
    typeOffsets:intvector { 10680, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "0103040304030403040304030403040304030403040302010201020102010203040304030403040304030403040304030403040304030403040304030403" }
    links:intvector { 335, 539 }
  } //Z#335
  /* Atlantic/Azores */ :table {
    transPre32:intvector { -1, 1581063056 }
    trans:intvector { -1830376800, -1689548400, -1677794400, -1667430000, -1647730800, -1635807600, -1616194800, -1604358000, -1584658800, -1572735600, -1553036400, -1541199600, -1521500400, -1442444400, -1426806000, -1379286000, -1364770800, -1348441200, -1333321200, -1316386800, -1301266800, -1284332400, -1269817200, -1221433200, -1206918000, -1191193200, -1175468400, -1127689200, -1111964400, -1096844400, -1080514800, -1063580400, -1049065200, -1033340400, -1017615600, -1002495600, -986166000, -969231600, -950482800, -942015600, -922662000, -906937200, -891126000, -877302000, -873676800, -864000000, -857948400, -845852400, -842832000, -831340800, -825894000, -814402800, -810777600, -799891200, -794444400, -782953200, -779328000, -768441600, -762994800, -749084400, -733359600, -717624000, -701899200, -686174400, -670449600, -654724800, -639000000, -591825600, -575496000, -559771200, -544046400, -528321600, -512596800, -496872000, -481147200, -465422400, -449697600, -433972800, -417643200, -401918400, -386193600, -370468800, -354744000, -339019200, -323294400, -307569600, -291844800, -276120000, -260395200, -244670400, -228340800, -212616000, -196891200, -181166400, -165441600, -149716800, -133992000, -118267200, 228272400, 243997200, 260326800, 276051600, 291776400, 307504800, 323226000, 338954400, 354679200, 370404000, 386128800, 401853600, 417582000, 433303200, 449028000, 465357600, 481082400, 496807200, 512532000, 528256800, 543981600, 559706400, 575431200, 591156000, 606880800, 622605600, 638330400, 654660000, 670384800, 686109600, 701834400, 717559200, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -6160, 0, -7200, 0, -7200, 3600, -7200, 7200, -6872, 0, -3600, 0, -3600, 3600, 0, 0 }
    typeMap:bin { "04010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203020102030201020302010203020102010201020102010201020102010201020102010201020102010201020102010201020102010506050605060506050605060506050605060506050605060506050605060506070605060506050605" }
    finalRule { "EU" }
    finalRaw:int { -3600 }
    finalYear:int { 1997 }
  } //Z#336
  /* Atlantic/Bermuda */ :table {
    trans:intvector { -1262281242, 136360800, 152082000, 167810400, 183531600, 199260000, 215586000, 230709600, 247035600, 262764000, 278485200, 294213600, 309934800, 325663200, 341384400, 357112800, 372834000, 388562400, 404888400, 420012000, 436338000, 452066400, 467787600, 483516000, 499237200, 514965600, 530686800, 544600800, 562136400, 576050400, 594190800, 607500000, 625640400, 638949600, 657090000, 671004000, 688539600, 702453600, 719989200, 733903200, 752043600, 765352800, 783493200, 796802400, 814942800, 828856800, 846392400, 860306400, 877842000, 891756000, 909291600, 923205600, 941346000, 954655200, 972795600, 986104800, 1004245200, 1018159200, 1035694800, 1049608800, 1067144400, 1081058400, 1099198800, 1112508000, 1130648400, 1143957600, 1162098000, 1173592800, 1194152400 }
    typeOffsets:intvector { -15558, 0, -14400, 0, -14400, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "US" }
    finalRaw:int { -14400 }
    finalYear:int { 2008 }
  } //Z#337
  /* Atlantic/Canary */ :table {
    trans:intvector { -1509663504, -733874400, 323827200, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -3696, 0, -3600, 0, 0, 0, 0, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
  } //Z#338
  /* Atlantic/Cape_Verde */ :table {
    trans:intvector { -1830376800, -862610400, -764118000, 186120000 }
    typeOffsets:intvector { -5644, 0, -7200, 0, -7200, 3600, -3600, 0 }
    typeMap:bin { "01020103" }
  } //Z#339
  /* Atlantic/Faeroe */ :int { 341 } //Z#340
  /* Atlantic/Faroe */ :table {
    trans:intvector { -1955748776, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -1624, 0, 0, 0, 0, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
    links:intvector { 340, 341 }
  } //Z#341
  /* Atlantic/Jan_Mayen */ :int { 473 } //Z#342
  /* Atlantic/Madeira */ :table {
    trans:intvector { -1830380400, -1689552000, -1677798000, -1667433600, -1647734400, -1635811200, -1616198400, -1604361600, -1584662400, -1572739200, -1553040000, -1541203200, -1521504000, -1442448000, -1426809600, -1379289600, -1364774400, -1348444800, -1333324800, -1316390400, -1301270400, -1284336000, -1269820800, -1221436800, -1206921600, -1191196800, -1175472000, -1127692800, -1111968000, -1096848000, -1080518400, -1063584000, -1049068800, -1033344000, -1017619200, -1002499200, -986169600, -969235200, -950486400, -942019200, -922665600, -906940800, -891129600, -877305600, -873680400, -864003600, -857952000, -845856000, -842835600, -831344400, -825897600, -814406400, -810781200, -799894800, -794448000, -782956800, -779331600, -768445200, -762998400, -749088000, -733363200, -717627600, -701902800, -686178000, -670453200, -654728400, -639003600, -591829200, -575499600, -559774800, -544050000, -528325200, -512600400, -496875600, -481150800, -465426000, -449701200, -433976400, -417646800, -401922000, -386197200, -370472400, -354747600, -339022800, -323298000, -307573200, -291848400, -276123600, -260398800, -244674000, -228344400, -212619600, -196894800, -181170000, -165445200, -149720400, -133995600, -118270800, 228268800, 243993600, 260323200, 276048000, 291772800, 307501200, 323222400, 338950800, 354675600, 370400400, 386125200, 401850000, 417578400, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -4056, 0, -3600, 0, -3600, 3600, -3600, 7200, 0, 0, 0, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203020102030201020302010203020102010201020102010201020102010201020102010201020102010201020102010201020102010405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
  } //Z#343
  /* Atlantic/Reykjavik */ :table {
    trans:intvector { -1956609120, -1668211200, -1647212400, -1636675200, -1613430000, -1605139200, -1581894000, -1539561600, -1531350000, -968025600, -952293600, -942008400, -920239200, -909957600, -888789600, -877903200, -857944800, -846453600, -826495200, -815004000, -795045600, -783554400, -762991200, -752104800, -731541600, -717631200, -700092000, -686181600, -668642400, -654732000, -636588000, -623282400, -605743200, -591832800, -573688800, -559778400, -542239200, -528328800, -510789600, -496879200, -479340000, -465429600, -447890400, -433980000, -415836000, -401925600, -384386400, -370476000, -352936800, -339026400, -321487200, -307576800, -290037600, -276127200, -258588000, -244677600, -226533600, -212623200, -195084000, -181173600, -163634400, -149724000, -132184800, -118274400, -100735200, -86824800, -68680800, -54770400 }
    typeOffsets:intvector { -5280, 0, -3600, 0, -3600, 3600, 0, 0 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020103" }
    links:intvector { 344, 513 }
  } //Z#344
  /* Atlantic/South_Georgia */ :table {
    transPre32:intvector { -1, 1770454464 }
    typeOffsets:intvector { -8768, 0, -7200, 0 }
    typeMap:bin { "01" }
  } //Z#345
  /* Atlantic/St_Helena */ :int { 5 } //Z#346
  /* Atlantic/Stanley */ :table {
    trans:intvector { -1824235716, -1018209600, -1003093200, -986760000, -971643600, -954705600, -939589200, -923256000, -908139600, -891806400, -876690000, -860356800, -852066000, 420609600, 433306800, 452052000, 464151600, 483501600, 495601200, 514350000, 527054400, 545799600, 558504000, 577249200, 589953600, 608698800, 621403200, 640753200, 652852800, 672202800, 684907200, 703652400, 716356800, 735102000, 747806400, 766551600, 779256000, 798001200, 810705600, 830055600, 842760000, 861505200, 874209600, 892954800, 905659200, 924404400, 937108800, 955854000, 968558400, 987310800, 999410400, 1019365200, 1030860000, 1050814800, 1062914400, 1082264400, 1094364000, 1113714000, 1125813600, 1145163600, 1157263200, 1176613200, 1188712800, 1208667600, 1220767200, 1240117200, 1252216800, 1271566800, 1283666400 }
    typeOffsets:intvector { -13884, 0, -14400, 0, -14400, 3600, -10800, 0, -10800, 3600 }
    typeMap:bin { "010201020102010201020102010304030403020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020103" }
  } //Z#347
  /* Australia/ACT */ :int { 366 } //Z#348
  /* Australia/Adelaide */ :table {
    transPre32:intvector { -1, 1930857236, -1, 2064778096 }
    trans:intvector { -1672565340, -1665390600, -883639800, -876126600, -860398200, -844677000, -828343800, -813227400, 57688200, 67969800, 89137800, 100024200, 120587400, 131473800, 152037000, 162923400, 183486600, 194977800, 215541000, 226427400, 246990600, 257877000, 278440200, 289326600, 309889800, 320776200, 341339400, 352225800, 372789000, 384280200, 404843400, 415729800, 436293000, 447179400, 467742600, 478629000, 499192200, 511288200, 530037000, 542737800, 562091400, 574792200, 594145800, 606241800, 625595400, 637691400, 657045000, 667931400, 688494600, 701195400, 719944200, 731435400, 751998600, 764094600, 783448200, 796149000, 814897800, 828203400, 846347400, 859653000, 877797000, 891102600, 909246600, 922552200, 941301000, 954001800, 972750600, 985451400, 1004200200, 1017505800, 1035649800, 1048955400, 1067099400, 1080405000, 1099153800, 1111854600, 1130603400, 1143909000, 1162053000, 1174753800, 1193502600, 1207413000, 1223137800 }
    typeOffsets:intvector { 33260, 0, 32400, 0, 34200, 0, 34200, 3600 }
    typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203" }
    finalRule { "AS" }
    finalRaw:int { 34200 }
    finalYear:int { 2009 }
    links:intvector { 349, 365 }
  } //Z#349
  /* Australia/Brisbane */ :table {
    transPre32:intvector { -1, 1928175368 }
    trans:intvector { -1672567140, -1665392400, -883641600, -876128400, -860400000, -844678800, -828345600, -813229200, 57686400, 67968000, 625593600, 636480000, 657043200, 667929600, 688492800, 699379200 }
    typeOffsets:intvector { 36728, 0, 36000, 0, 36000, 3600 }
    typeMap:bin { "0102010201020102010201020102010201" }
    links:intvector { 350, 364 }
  } //Z#350
  /* Australia/Broken_Hill */ :table {
    transPre32:intvector { -1, 1930856548, -1, 1980016096, -1, 2064778096 }
    trans:intvector { -1672565340, -1665390600, -883639800, -876126600, -860398200, -844677000, -828343800, -813227400, 57688200, 67969800, 89137800, 100024200, 120587400, 131473800, 152037000, 162923400, 183486600, 194977800, 215541000, 226427400, 246990600, 257877000, 278440200, 289326600, 309889800, 320776200, 341339400, 352225800, 372789000, 386699400, 404843400, 415729800, 436293000, 447179400, 467742600, 478629000, 499192200, 511288200, 530037000, 542737800, 562091400, 574792200, 594145800, 606241800, 625595400, 636481800, 657045000, 667931400, 688494600, 699381000, 719944200, 731435400, 751998600, 762885000, 783448200, 794334600, 814897800, 828203400, 846347400, 859653000, 877797000, 891102600, 909246600, 922552200, 941301000, 954001800, 972750600, 985451400, 1004200200, 1017505800, 1035649800, 1048955400, 1067099400, 1080405000, 1099153800, 1111854600, 1130603400, 1143909000, 1162053000, 1174753800, 1193502600, 1207413000, 1223137800 }
    typeOffsets:intvector { 33948, 0, 32400, 0, 34200, 0, 34200, 3600, 36000, 0 }
    typeMap:bin { "0401020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203" }
    finalRule { "AS" }
    finalRaw:int { 34200 }
    finalYear:int { 2009 }
    links:intvector { 351, 370 }
  } //Z#351
  /* Australia/Canberra */ :int { 366 } //Z#352
  /* Australia/Currie */ :table {
    transPre32:intvector { -1, 1949172768 }
    trans:intvector { -1680508800, -1665392400, -883641600, -876128400, -860400000, -844678800, -828345600, -813229200, 57686400, 67968000, 89136000, 100022400, 120585600, 131472000, 152035200, 162921600, 183484800, 194976000, 215539200, 226425600, 246988800, 257875200, 278438400, 289324800, 309888000, 320774400, 341337600, 352224000, 372787200, 386092800, 404841600, 417542400, 436291200, 447177600, 467740800, 478627200, 499190400, 510076800, 530035200, 542736000, 562089600, 574790400, 594144000, 606240000, 625593600, 637689600, 657043200, 670348800, 686678400, 701798400, 718128000, 733248000, 749577600, 764697600, 781027200, 796147200, 812476800, 828201600, 844531200, 859651200, 875980800, 891100800, 907430400, 922550400, 938880000, 954000000, 967305600, 985449600, 1002384000, 1017504000, 1033833600, 1048953600, 1065283200, 1080403200, 1096732800, 1111852800, 1128182400, 1143907200, 1159632000, 1174752000, 1191686400, 1207411200, 1223136000 }
    typeOffsets:intvector { 34528, 0, 36000, 0, 36000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "AT" }
    finalRaw:int { 36000 }
    finalYear:int { 2009 }
  } //Z#353
  /* Australia/Darwin */ :table {
    transPre32:intvector { -1, 1930859096, -1, 2064778096 }
    trans:intvector { -1672565340, -1665390600, -883639800, -876126600, -860398200, -844677000, -828343800, -813227400 }
    typeOffsets:intvector { 31400, 0, 32400, 0, 34200, 0, 34200, 3600 }
    typeMap:bin { "01020302030203020302" }
    links:intvector { 0, 354, 362 }
  } //Z#354
  /* Australia/Eucla */ :table {
    transPre32:intvector { -1, 1957038768 }
    trans:intvector { -1672562640, -1665387900, -883637100, -876123900, -860395500, -844674300, 152039700, 162926100, 436295700, 447182100, 690311700, 699383700, 1165079700, 1174756500, 1193505300, 1206810900, 1224954900, 1238260500 }
    typeOffsets:intvector { 30928, 0, 31500, 0, 31500, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201" }
  } //Z#355
  /* Australia/Hobart */ :table {
    transPre32:intvector { -1, 1949171940 }
    trans:intvector { -1680508800, -1665392400, -883641600, -876128400, -860400000, -844678800, -828345600, -813229200, -71136000, -55411200, -37267200, -25776000, -5817600, 5673600, 25632000, 37728000, 57686400, 67968000, 89136000, 100022400, 120585600, 131472000, 152035200, 162921600, 183484800, 194976000, 215539200, 226425600, 246988800, 257875200, 278438400, 289324800, 309888000, 320774400, 341337600, 352224000, 372787200, 386092800, 404841600, 417542400, 436291200, 447177600, 467740800, 478627200, 499190400, 510076800, 530035200, 542736000, 562089600, 574790400, 594144000, 606240000, 625593600, 637689600, 657043200, 670348800, 686678400, 701798400, 718128000, 733248000, 749577600, 764697600, 781027200, 796147200, 812476800, 828201600, 844531200, 859651200, 875980800, 891100800, 907430400, 922550400, 938880000, 954000000, 967305600, 985449600, 1002384000, 1017504000, 1033833600, 1048953600, 1065283200, 1080403200, 1096732800, 1111852800, 1128182400, 1143907200, 1159632000, 1174752000, 1191686400, 1207411200, 1223136000 }
    typeOffsets:intvector { 35356, 0, 36000, 0, 36000, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "AT" }
    finalRaw:int { 36000 }
    finalYear:int { 2009 }
    links:intvector { 356, 367 }
  } //Z#356
  /* Australia/LHI */ :int { 359 } //Z#357
  /* Australia/Lindeman */ :table {
    transPre32:intvector { -1, 1928176340 }
    trans:intvector { -1672567140, -1665392400, -883641600, -876128400, -860400000, -844678800, -828345600, -813229200, 57686400, 67968000, 625593600, 636480000, 657043200, 667929600, 688492800, 699379200, 719942400, 731433600, 751996800, 762883200 }
    typeOffsets:intvector { 35756, 0, 36000, 0, 36000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201" }
  } //Z#358
  /* Australia/Lord_Howe */ :table {
    transPre32:intvector { -1, 1930852316 }
    trans:intvector { 352216800, 372785400, 384273000, 404839800, 415722600, 436289400, 447172200, 467739000, 478621800, 499188600, 511282800, 530033400, 542732400, 562087800, 574786800, 594142200, 606236400, 625591800, 636476400, 657041400, 667926000, 688491000, 699375600, 719940600, 731430000, 751995000, 762879600, 783444600, 794329200, 814894200, 828198000, 846343800, 859647600, 877793400, 891097200, 909243000, 922546800, 941297400, 953996400, 967303800, 985446000, 1004196600, 1017500400, 1035646200, 1048950000, 1067095800, 1080399600, 1099150200, 1111849200, 1130599800, 1143903600, 1162049400, 1174748400, 1193499000, 1207407600, 1223134200 }
    typeOffsets:intvector { 38180, 0, 36000, 0, 37800, 0, 37800, 1800, 37800, 3600 }
    typeMap:bin { "010204020402040204020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203" }
    finalRule { "LH" }
    finalRaw:int { 37800 }
    finalYear:int { 2009 }
    links:intvector { 357, 359 }
  } //Z#359
  /* Australia/Melbourne */ :table {
    transPre32:intvector { -1, 1930855704 }
    trans:intvector { -1672567140, -1665392400, -883641600, -876128400, -860400000, -844678800, -828345600, -813229200, 57686400, 67968000, 89136000, 100022400, 120585600, 131472000, 152035200, 162921600, 183484800, 194976000, 215539200, 226425600, 246988800, 257875200, 278438400, 289324800, 309888000, 320774400, 341337600, 352224000, 372787200, 384278400, 404841600, 415728000, 436291200, 447177600, 467740800, 478627200, 499190400, 511286400, 530035200, 542736000, 561484800, 574790400, 594144000, 606240000, 625593600, 637689600, 657043200, 667929600, 688492800, 699379200, 719942400, 731433600, 751996800, 762883200, 783446400, 796147200, 814896000, 828201600, 846345600, 859651200, 877795200, 891100800, 909244800, 922550400, 941299200, 954000000, 967305600, 985449600, 1004198400, 1017504000, 1035648000, 1048953600, 1067097600, 1080403200, 1099152000, 1111852800, 1130601600, 1143907200, 1162051200, 1174752000, 1193500800, 1207411200, 1223136000 }
    typeOffsets:intvector { 34792, 0, 36000, 0, 36000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "AV" }
    finalRaw:int { 36000 }
    finalYear:int { 2009 }
    links:intvector { 360, 368 }
  } //Z#360
  /* Australia/NSW */ :int { 366 } //Z#361
  /* Australia/North */ :int { 354 } //Z#362
  /* Australia/Perth */ :table {
    transPre32:intvector { -1, 1957041892 }
    trans:intvector { -1672559940, -1665385200, -883634400, -876121200, -860392800, -844671600, 152042400, 162928800, 436298400, 447184800, 690314400, 699386400, 1165082400, 1174759200, 1193508000, 1206813600, 1224957600, 1238263200 }
    typeOffsets:intvector { 27804, 0, 28800, 0, 28800, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201" }
    links:intvector { 363, 369 }
  } //Z#363
  /* Australia/Queensland */ :int { 350 } //Z#364
  /* Australia/South */ :int { 349 } //Z#365
  /* Australia/Sydney */ :table {
    transPre32:intvector { -1, 1930854204 }
    trans:intvector { -1672567140, -1665392400, -883641600, -876128400, -860400000, -844678800, -828345600, -813229200, 57686400, 67968000, 89136000, 100022400, 120585600, 131472000, 152035200, 162921600, 183484800, 194976000, 215539200, 226425600, 246988800, 257875200, 278438400, 289324800, 309888000, 320774400, 341337600, 352224000, 372787200, 386697600, 404841600, 415728000, 436291200, 447177600, 467740800, 478627200, 499190400, 511286400, 530035200, 542736000, 562089600, 574790400, 594144000, 606240000, 625593600, 636480000, 657043200, 667929600, 688492800, 699379200, 719942400, 731433600, 751996800, 762883200, 783446400, 794332800, 814896000, 828201600, 846345600, 859651200, 877795200, 891100800, 909244800, 922550400, 941299200, 954000000, 967305600, 985449600, 1004198400, 1017504000, 1035648000, 1048953600, 1067097600, 1080403200, 1099152000, 1111852800, 1130601600, 1143907200, 1162051200, 1174752000, 1193500800, 1207411200, 1223136000 }
    typeOffsets:intvector { 36292, 0, 36000, 0, 36000, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102" }
    finalRule { "AN" }
    finalRaw:int { 36000 }
    finalYear:int { 2009 }
    links:intvector { 1, 348, 352, 361, 366 }
  } //Z#366
  /* Australia/Tasmania */ :int { 356 } //Z#367
  /* Australia/Victoria */ :int { 360 } //Z#368
  /* Australia/West */ :int { 363 } //Z#369
  /* Australia/Yancowinna */ :int { 351 } //Z#370
  /* BET */ :int { 202 } //Z#371
  /* BST */ :int { 263 } //Z#372
  /* Brazil/Acre */ :int { 196 } //Z#373
  /* Brazil/DeNoronha */ :int { 176 } //Z#374
  /* Brazil/East */ :int { 202 } //Z#375
  /* Brazil/West */ :int { 156 } //Z#376
  /* CAT */ :int { 43 } //Z#377
  /* CET */ :table {
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -938905200, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -766623600, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3600, 0, 3600, 3600 }
    typeMap:bin { "010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "C-Eur" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#378
  /* CNT */ :int { 207 } //Z#379
  /* CST */ :int { 98 } //Z#380
  /* CST6CDT */ :table {
    trans:intvector { -1633276800, -1615136400, -1601827200, -1583686800, -880214400, -765392400, -84384000, -68662800, -52934400, -37213200, -21484800, -5763600, 9964800, 25686000, 41414400, 57740400, 73468800, 89190000, 104918400, 120639600, 126691200, 152089200, 162374400, 183538800, 199267200, 215593200, 230716800, 247042800, 262771200, 278492400, 294220800, 309942000, 325670400, 341391600, 357120000, 372841200, 388569600, 404895600, 420019200, 436345200, 452073600, 467794800, 483523200, 499244400, 514972800, 530694000, 544608000, 562143600, 576057600, 594198000, 607507200, 625647600, 638956800, 657097200, 671011200, 688546800, 702460800, 719996400, 733910400, 752050800, 765360000, 783500400, 796809600, 814950000, 828864000, 846399600, 860313600, 877849200, 891763200, 909298800, 923212800, 941353200, 954662400, 972802800, 986112000, 1004252400, 1018166400, 1035702000, 1049616000, 1067151600, 1081065600, 1099206000, 1112515200, 1130655600, 1143964800, 1162105200, 1173600000, 1194159600 }
    typeOffsets:intvector { -21600, 0, -21600, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "US" }
    finalRaw:int { -21600 }
    finalYear:int { 2008 }
  } //Z#381
  /* CTT */ :int { 313 } //Z#382
  /* Canada/Atlantic */ :int { 128 } //Z#383
  /* Canada/Central */ :int { 222 } //Z#384
  /* Canada/East-Saskatchewan */ :int { 194 } //Z#385
  /* Canada/Eastern */ :int { 217 } //Z#386
  /* Canada/Mountain */ :int { 112 } //Z#387
  /* Canada/Newfoundland */ :int { 207 } //Z#388
  /* Canada/Pacific */ :int { 219 } //Z#389
  /* Canada/Saskatchewan */ :int { 194 } //Z#390
  /* Canada/Yukon */ :int { 221 } //Z#391
  /* Chile/Continental */ :int { 200 } //Z#392
  /* Chile/EasterIsland */ :int { 555 } //Z#393
  /* Cuba */ :int { 129 } //Z#394
  /* EAT */ :int { 48 } //Z#395
  /* ECT */ :int { 474 } //Z#396
  /* EET */ :table {
    trans:intvector { 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 7200, 0, 7200, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1997 }
  } //Z#397
  /* EST */ :table {
    typeOffsets:intvector { -18000, 0 }
  } //Z#398
  /* EST5EDT */ :table {
    trans:intvector { -1633280400, -1615140000, -1601830800, -1583690400, -880218000, -765396000, -84387600, -68666400, -52938000, -37216800, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 126687600, 152085600, 162370800, 183535200, 199263600, 215589600, 230713200, 247039200, 262767600, 278488800, 294217200, 309938400, 325666800, 341388000, 357116400, 372837600, 388566000, 404892000, 420015600, 436341600, 452070000, 467791200, 483519600, 499240800, 514969200, 530690400, 544604400, 562140000, 576054000, 594194400, 607503600, 625644000, 638953200, 657093600, 671007600, 688543200, 702457200, 719992800, 733906800, 752047200, 765356400, 783496800, 796806000, 814946400, 828860400, 846396000, 860310000, 877845600, 891759600, 909295200, 923209200, 941349600, 954658800, 972799200, 986108400, 1004248800, 1018162800, 1035698400, 1049612400, 1067148000, 1081062000, 1099202400, 1112511600, 1130652000, 1143961200, 1162101600, 1173596400, 1194156000 }
    typeOffsets:intvector { -18000, 0, -18000, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "US" }
    finalRaw:int { -18000 }
    finalYear:int { 2008 }
  } //Z#399
  /* Egypt */ :int { 18 } //Z#400
  /* Eire */ :int { 452 } //Z#401
  /* Etc/GMT */ :table {
    typeOffsets:intvector { 0, 0 }
    links:intvector { 402, 403, 416, 431, 432, 504, 505, 506, 507, 508 }
  } //Z#402
  /* Etc/GMT+0 */ :int { 402 } //Z#403
  /* Etc/GMT+1 */ :table {
    typeOffsets:intvector { -3600, 0 }
  } //Z#404
  /* Etc/GMT+10 */ :table {
    typeOffsets:intvector { -36000, 0 }
  } //Z#405
  /* Etc/GMT+11 */ :table {
    typeOffsets:intvector { -39600, 0 }
  } //Z#406
  /* Etc/GMT+12 */ :table {
    typeOffsets:intvector { -43200, 0 }
  } //Z#407
  /* Etc/GMT+2 */ :table {
    typeOffsets:intvector { -7200, 0 }
  } //Z#408
  /* Etc/GMT+3 */ :table {
    typeOffsets:intvector { -10800, 0 }
  } //Z#409
  /* Etc/GMT+4 */ :table {
    typeOffsets:intvector { -14400, 0 }
  } //Z#410
  /* Etc/GMT+5 */ :table {
    typeOffsets:intvector { -18000, 0 }
  } //Z#411
  /* Etc/GMT+6 */ :table {
    typeOffsets:intvector { -21600, 0 }
  } //Z#412
  /* Etc/GMT+7 */ :table {
    typeOffsets:intvector { -25200, 0 }
  } //Z#413
  /* Etc/GMT+8 */ :table {
    typeOffsets:intvector { -28800, 0 }
  } //Z#414
  /* Etc/GMT+9 */ :table {
    typeOffsets:intvector { -32400, 0 }
  } //Z#415
  /* Etc/GMT-0 */ :int { 402 } //Z#416
  /* Etc/GMT-1 */ :table {
    typeOffsets:intvector { 3600, 0 }
  } //Z#417
  /* Etc/GMT-10 */ :table {
    typeOffsets:intvector { 36000, 0 }
  } //Z#418
  /* Etc/GMT-11 */ :table {
    typeOffsets:intvector { 39600, 0 }
  } //Z#419
  /* Etc/GMT-12 */ :table {
    typeOffsets:intvector { 43200, 0 }
  } //Z#420
  /* Etc/GMT-13 */ :table {
    typeOffsets:intvector { 46800, 0 }
  } //Z#421
  /* Etc/GMT-14 */ :table {
    typeOffsets:intvector { 50400, 0 }
  } //Z#422
  /* Etc/GMT-2 */ :table {
    typeOffsets:intvector { 7200, 0 }
  } //Z#423
  /* Etc/GMT-3 */ :table {
    typeOffsets:intvector { 10800, 0 }
  } //Z#424
  /* Etc/GMT-4 */ :table {
    typeOffsets:intvector { 14400, 0 }
  } //Z#425
  /* Etc/GMT-5 */ :table {
    typeOffsets:intvector { 18000, 0 }
  } //Z#426
  /* Etc/GMT-6 */ :table {
    typeOffsets:intvector { 21600, 0 }
  } //Z#427
  /* Etc/GMT-7 */ :table {
    typeOffsets:intvector { 25200, 0 }
  } //Z#428
  /* Etc/GMT-8 */ :table {
    typeOffsets:intvector { 28800, 0 }
  } //Z#429
  /* Etc/GMT-9 */ :table {
    typeOffsets:intvector { 32400, 0 }
  } //Z#430
  /* Etc/GMT0 */ :int { 402 } //Z#431
  /* Etc/Greenwich */ :int { 402 } //Z#432
  /* Etc/UCT */ :table {
    typeOffsets:intvector { 0, 0 }
    links:intvector { 433, 613 }
  } //Z#433
  /* Etc/UTC */ :table {
    typeOffsets:intvector { 0, 0 }
    links:intvector { 434, 435, 437, 627, 628, 632 }
  } //Z#434
  /* Etc/Universal */ :int { 434 } //Z#435
  /* Etc/Unknown */ :table {
    typeOffsets:intvector { 0, 0 }
  } //Z#436
  /* Etc/Zulu */ :int { 434 } //Z#437
  /* Europe/Amsterdam */ :table {
    trans:intvector { -1693700372, -1680484772, -1663453172, -1650147572, -1633213172, -1617488372, -1601158772, -1586038772, -1569709172, -1554589172, -1538259572, -1523139572, -1507501172, -1490566772, -1470176372, -1459117172, -1443997172, -1427667572, -1406672372, -1396217972, -1376950772, -1364768372, -1345414772, -1333318772, -1313792372, -1301264372, -1282256372, -1269814772, -1250720372, -1238365172, -1219184372, -1206915572, -1186957172, -1175465972, -1156025972, -1143411572, -1124489972, -1111961972, -1092953972, -1080512372, -1061331572, -1049062772, -1029190772, -1025745572, -1017613200, -998259600, -986163600, -966723600, -954109200, -935022000, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -766623600, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 1172, 0, 1172, 3600, 1200, 0, 1200, 3600, 3600, 0, 3600, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001030203020302050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#438
  /* Europe/Andorra */ :table {
    transPre32:intvector { -1, 2117514132 }
    trans:intvector { -733881600, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 364, 0, 0, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#439
  /* Europe/Astrakhan */ :table {
    trans:intvector { -1441249932, -1247540400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622594800, 638319600, 654649200, 670374000, 701820000, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174777200, 1193526000, 1206831600, 1224975600, 1238281200, 1256425200, 1269730800, 1288479600, 1301180400, 1414274400, 1459033200 }
    typeOffsets:intvector { 11532, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "01030403040304030403040304030403040302010201030201020102010201020102010201020102010201020102010201020102010201020102010201030103" }
  } //Z#440
  /* Europe/Athens */ :table {
    trans:intvector { -1686101632, -1182996000, -1178161200, -906861600, -904878000, -857257200, -844477200, -828237600, -812422800, -552362400, -541652400, 166485600, 186184800, 198028800, 213753600, 228873600, 244080000, 260323200, 275446800, 291798000, 307407600, 323388000, 338936400, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 5692, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600 }
    typeMap:bin { "03040304020102010304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1997 }
  } //Z#441
  /* Europe/Belfast */ :int { 464 } //Z#442
  /* Europe/Belgrade */ :table {
    transPre32:intvector { -1, 1581051976 }
    trans:intvector { -905824800, -857257200, -844556400, -828226800, -812502000, -796777200, -777942000, -766623600, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 4920, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 443, 463, 475, 481, 484, 498 }
  } //Z#443
  /* Europe/Berlin */ :table {
    transPre32:intvector { -1, 1872912888 }
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -938905200, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -776563200, -765936000, -761180400, -748479600, -733273200, -717631200, -714610800, -710380800, -701910000, -684975600, -670460400, -654130800, -639010800, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3208, 0, 3600, 0, 3600, 3600, 3600, 7200 }
    typeMap:bin { "01020102010201020102010201020302010201020302010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#444
  /* Europe/Bratislava */ :int { 476 } //Z#445
  /* Europe/Brussels */ :table {
    transPre32:intvector { -1, 1844014246 }
    trans:intvector { -1740355200, -1693702800, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -1613826000, -1604278800, -1585530000, -1574038800, -1552266000, -1539997200, -1520557200, -1507510800, -1490576400, -1473642000, -1459126800, -1444006800, -1427677200, -1411952400, -1396227600, -1379293200, -1364778000, -1348448400, -1333328400, -1316394000, -1301263200, -1284328800, -1269813600, -1253484000, -1238364000, -1221429600, -1206914400, -1191189600, -1175464800, -1160344800, -1143410400, -1127685600, -1111960800, -1096840800, -1080511200, -1063576800, -1049061600, -1033336800, -1017612000, -1002492000, -986162400, -969228000, -950479200, -942012000, -934668000, -857257200, -844556400, -828226800, -812502000, -798073200, -781052400, -766623600, -745455600, -733273200, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 1050, 0, 0, 0, 0, 3600, 3600, 0, 3600, 3600 }
    typeMap:bin { "010304030403040301020102010201020102010201020102010201020102010201020102010201020102010201020102010201020403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#446
  /* Europe/Bucharest */ :table {
    trans:intvector { -1213148664, -1187056800, -1175479200, -1159754400, -1144029600, -1127700000, -1111975200, -1096250400, -1080525600, -1064800800, -1049076000, -1033351200, -1017626400, -1001901600, -986176800, -970452000, -954727200, 296604000, 307486800, 323816400, 338940000, 354672000, 370396800, 386121600, 401846400, 417571200, 433296000, 449020800, 465350400, 481075200, 496800000, 512524800, 528249600, 543974400, 559699200, 575424000, 591148800, 606873600, 622598400, 638323200, 654652800, 670370400, 686095200, 701820000, 717544800, 733269600, 748994400, 764719200, 780440400, 796168800, 811890000, 828223200, 846363600, 859683600, 877827600 }
    typeOffsets:intvector { 6264, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1998 }
  } //Z#447
  /* Europe/Budapest */ :table {
    transPre32:intvector { -1, 1794028316 }
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1633212000, -1618700400, -1600466400, -1581202800, -906771600, -857257200, -844556400, -828226800, -812502000, -796777200, -778471200, -762660000, -749689200, -733359600, -717634800, -701910000, -686185200, -670460400, -654130800, -639010800, -621990000, -605660400, -492656400, -481168800, -461120400, -449632800, -428547600, -418269600, -397094400, -386809200, 323827200, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 4580, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#448
  /* Europe/Busingen */ :int { 500 } //Z#449
  /* Europe/Chisinau */ :table {
    transPre32:intvector { -1, 1454819576 }
    trans:intvector { -1637114100, -1213148664, -1187056800, -1175479200, -1159754400, -1144029600, -1127700000, -1111975200, -1096250400, -1080525600, -1064800800, -1049076000, -1033351200, -1017626400, -1001901600, -986176800, -970452000, -954727200, -927165600, -898138800, -857257200, -844556400, -828226800, -812502000, -800157600, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 638319600, 641944800, 654652800, 670377600, 686102400, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796168800, 811890000, 828223200, 846363600, 859680000, 877824000 }
    typeOffsets:intvector { 6920, 0, 3600, 0, 3600, 3600, 6264, 0, 6900, 0, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "04030506050605060506050605060506050605060201020102070807080708070807080708070807080708070806050605060506050605060506050605" }
    finalRule { "Moldova" }
    finalRaw:int { 7200 }
    finalYear:int { 1998 }
    links:intvector { 450, 489 }
  } //Z#450
  /* Europe/Copenhagen */ :table {
    transPre32:intvector { -1, 1896673076 }
    trans:intvector { -1692496800, -1680490800, -935110800, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -769388400, -747010800, -736383600, -715215600, -706748400, -683161200, -675298800, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3020, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#451
  /* Europe/Dublin */ :table {
    transPre32:intvector { -1, 1473317596 }
    trans:intvector { -1691962479, -1680471279, -1664143200, -1650146400, -1633903200, -1617487200, -1601848800, -1586037600, -1570399200, -1552168800, -1538344800, -1522533600, -1507500000, -1490565600, -1473631200, -1460930400, -1442786400, -1428876000, -1410732000, -1396216800, -1379282400, -1364767200, -1348437600, -1333317600, -1315778400, -1301263200, -1284328800, -1269813600, -1253484000, -1238364000, -1221429600, -1206914400, -1189980000, -1175464800, -1159135200, -1143410400, -1126476000, -1111960800, -1095631200, -1080511200, -1063576800, -1049061600, -1032127200, -1017612000, -1001282400, -986162400, -969228000, -950479200, -942012000, -733356000, -719445600, -699487200, -684972000, -668037600, -654732000, -636588000, -622072800, -605743200, -590623200, -574293600, -558568800, -542239200, -527119200, -512604000, -496274400, -481154400, -464220000, -449704800, -432165600, -417650400, -401320800, -386200800, -369266400, -354751200, -337816800, -323301600, -306972000, -291852000, -276732000, -257983200, -245282400, -226533600, -213228000, -195084000, -182383200, -163634400, -150933600, -132184800, -119484000, -100735200, -88034400, -68680800, -59004000, -37242000, 57722400, 69818400, 89172000, 101268000, 120621600, 132717600, 152071200, 164167200, 183520800, 196221600, 214970400, 227671200, 246420000, 259120800, 278474400, 290570400, 309924000, 322020000, 341373600, 354675600, 372819600, 386125200, 404269200, 417574800, 435718800, 449024400, 467773200, 481078800, 499222800, 512528400, 530672400, 543978000, 562122000, 575427600, 593571600, 606877200, 625626000, 638326800, 657075600, 670381200, 688525200, 701830800, 719974800, 733280400, 751424400, 764730000, 782874000, 796179600, 814323600, 828234000, 846378000 }
    typeOffsets:intvector { -1500, 0, -1521, 0, -1521, 3600, 0, 0, 0, 3600, 3600, 0 }
    typeMap:bin { "0102030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030405030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
    links:intvector { 401, 452 }
  } //Z#452
  /* Europe/Gibraltar */ :table {
    transPre32:intvector { -1, 1473317380 }
    trans:intvector { -1691964000, -1680472800, -1664143200, -1650146400, -1633903200, -1617487200, -1601848800, -1586037600, -1570399200, -1552168800, -1538344800, -1522533600, -1507500000, -1490565600, -1473631200, -1460930400, -1442786400, -1428876000, -1410732000, -1396216800, -1379282400, -1364767200, -1348437600, -1333317600, -1315778400, -1301263200, -1284328800, -1269813600, -1253484000, -1238364000, -1221429600, -1206914400, -1189980000, -1175464800, -1159135200, -1143410400, -1126476000, -1111960800, -1095631200, -1080511200, -1063576800, -1049061600, -1032127200, -1017612000, -1001282400, -986162400, -969228000, -950479200, -942012000, -904518000, -896050800, -875487600, -864601200, -844038000, -832546800, -812588400, -798073200, -781052400, -772066800, -764805600, -748476000, -733356000, -719445600, -717030000, -706748400, -699487200, -687996000, -668037600, -654732000, -636588000, -622072800, -605743200, -590623200, -574293600, -558568800, -542239200, -527119200, -512604000, -496274400, -481154400, -464220000, -449704800, -432165600, -417650400, -401320800, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -1284, 0, 0, 0, 0, 3600, 0, 7200, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102030203020302030203020102010203020102010201020102010201020102010201020104050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#453
  /* Europe/Guernsey */ :int { 464 } //Z#454
  /* Europe/Helsinki */ :table {
    trans:intvector { -1535938789, -875671200, -859773600, 354672000, 370396800, 386121600, 401846400, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 5989, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1997 }
    links:intvector { 455, 468 }
  } //Z#455
  /* Europe/Isle_of_Man */ :int { 464 } //Z#456
  /* Europe/Istanbul */ :table {
    transPre32:intvector { -1, 1454819544 }
    trans:intvector { -1869875816, -1693706400, -1680490800, -1570413600, -1552186800, -1538359200, -1522551600, -1507514400, -1490583600, -1440208800, -1428030000, -1409709600, -1396494000, -931140000, -922762800, -917834400, -892436400, -875844000, -857358000, -781063200, -764737200, -744343200, -733806000, -716436000, -701924400, -684986400, -670474800, -654141600, -639025200, -621828000, -606970800, -590032800, -575434800, -235620000, -228279600, -177732000, -165726000, 10533600, 23835600, 41983200, 55285200, 74037600, 87339600, 107910000, 121219200, 133920000, 152676000, 165362400, 183502800, 202428000, 215557200, 228866400, 245797200, 260316000, 277246800, 308779200, 323827200, 340228800, 354672000, 371678400, 386121600, 403128000, 428446800, 433886400, 482792400, 496702800, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 638319600, 654649200, 670374000, 686098800, 701823600, 717548400, 733273200, 748998000, 764118000, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174784400, 1193533200, 1206838800, 1224982800, 1238288400, 1256432400, 1269738000, 1288486800, 1301274000, 1319936400, 1332637200, 1351386000, 1364691600, 1382835600, 1396227600, 1414285200, 1427590800, 1446944400, 1459040400, 1473195600 }
    typeOffsets:intvector { 6952, 0, 7016, 0, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "010203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030504050405040504050403020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020304" }
    links:intvector { 275, 457, 612 }
  } //Z#457
  /* Europe/Jersey */ :int { 464 } //Z#458
  /* Europe/Kaliningrad */ :table {
    transPre32:intvector { -1, 1872911176 }
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -938905200, -857257200, -844556400, -828226800, -812502000, -796777200, -788922000, -778730400, -762663600, -757389600, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622598400, 638323200, 654652800, 670377600, 686102400, 701827200, 717552000, 733276800, 749001600, 764726400, 780451200, 796176000, 811900800, 828230400, 846374400, 859680000, 877824000, 891129600, 909273600, 922579200, 941328000, 954028800, 972777600, 985478400, 1004227200, 1017532800, 1035676800, 1048982400, 1067126400, 1080432000, 1099180800, 1111881600, 1130630400, 1143331200, 1162080000, 1174780800, 1193529600, 1206835200, 1224979200, 1238284800, 1256428800, 1269734400, 1288483200, 1301184000, 1414278000 }
    typeOffsets:intvector { 4920, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "01020102010201020102010201030403050605060506050605060506050605060504030403040304030403040304030403040304030403040304030403040304030403040304030403040304030503" }
  } //Z#459
  /* Europe/Kiev */ :table {
    trans:intvector { -1441159324, -1247536800, -892522800, -857257200, -844556400, -828226800, -825382800, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 638319600, 646783200, 686102400, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 7324, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "0305020102010506050605060506050605060506050605060506040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1997 }
  } //Z#460
  /* Europe/Kirov */ :table {
    trans:intvector { -1593820800, -1247540400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622594800, 638319600, 654649200, 670374000, 701820000, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174777200, 1193526000, 1206831600, 1224975600, 1238281200, 1256425200, 1269730800, 1288479600, 1301180400, 1414274400 }
    typeOffsets:intvector { 11928, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "010304030403040304030403040304030403020102010302010201020102010201020102010201020102010201020102010201020102010201020102010301" }
  } //Z#461
  /* Europe/Lisbon */ :table {
    trans:intvector { -1830384000, -1689555600, -1677801600, -1667437200, -1647738000, -1635814800, -1616202000, -1604365200, -1584666000, -1572742800, -1553043600, -1541206800, -1521507600, -1442451600, -1426813200, -1379293200, -1364778000, -1348448400, -1333328400, -1316394000, -1301274000, -1284339600, -1269824400, -1221440400, -1206925200, -1191200400, -1175475600, -1127696400, -1111971600, -1096851600, -1080522000, -1063587600, -1049072400, -1033347600, -1017622800, -1002502800, -986173200, -969238800, -950490000, -942022800, -922669200, -906944400, -891133200, -877309200, -873684000, -864007200, -857955600, -845859600, -842839200, -831348000, -825901200, -814410000, -810784800, -799898400, -794451600, -782960400, -779335200, -768448800, -763002000, -749091600, -733366800, -717631200, -701906400, -686181600, -670456800, -654732000, -639007200, -591832800, -575503200, -559778400, -544053600, -528328800, -512604000, -496879200, -481154400, -465429600, -449704800, -433980000, -417650400, -401925600, -386200800, -370476000, -354751200, -339026400, -323301600, -307576800, -291852000, -276127200, -260402400, -244677600, -228348000, -212623200, -196898400, -181173600, -165448800, -149724000, -133999200, -118274400, 212544000, 228268800, 243993600, 260323200, 276048000, 291772800, 307501200, 323222400, 338950800, 354675600, 370400400, 386125200, 401850000, 417578400, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -2205, 0, 0, 0, 0, 3600, 0, 7200, 3600, 0, 3600, 3600 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020302010203020102030201020302010201020102010201020102010201020102010201020102010201020102010201020102010201040102010201020102010201020102010201020102010201020102010201020102040504050405040201" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
    links:intvector { 462, 594 }
  } //Z#462
  /* Europe/Ljubljana */ :int { 443 } //Z#463
  /* Europe/London */ :table {
    transPre32:intvector { -1, 442304971 }
    trans:intvector { -1691964000, -1680472800, -1664143200, -1650146400, -1633903200, -1617487200, -1601848800, -1586037600, -1570399200, -1552168800, -1538344800, -1522533600, -1507500000, -1490565600, -1473631200, -1460930400, -1442786400, -1428876000, -1410732000, -1396216800, -1379282400, -1364767200, -1348437600, -1333317600, -1315778400, -1301263200, -1284328800, -1269813600, -1253484000, -1238364000, -1221429600, -1206914400, -1189980000, -1175464800, -1159135200, -1143410400, -1126476000, -1111960800, -1095631200, -1080511200, -1063576800, -1049061600, -1032127200, -1017612000, -1001282400, -986162400, -969228000, -950479200, -942012000, -904518000, -896050800, -875487600, -864601200, -844038000, -832546800, -812588400, -798073200, -781052400, -772066800, -764805600, -748476000, -733356000, -719445600, -717030000, -706748400, -699487200, -687996000, -668037600, -654732000, -636588000, -622072800, -605743200, -590623200, -574293600, -558568800, -542239200, -527119200, -512604000, -496274400, -481154400, -464220000, -449704800, -432165600, -417650400, -401320800, -386200800, -369266400, -354751200, -337816800, -323301600, -306972000, -291852000, -276732000, -257983200, -245282400, -226533600, -213228000, -195084000, -182383200, -163634400, -150933600, -132184800, -119484000, -100735200, -88034400, -68680800, -59004000, -37242000, 57722400, 69818400, 89172000, 101268000, 120621600, 132717600, 152071200, 164167200, 183520800, 196221600, 214970400, 227671200, 246420000, 259120800, 278474400, 290570400, 309924000, 322020000, 341373600, 354675600, 372819600, 386125200, 404269200, 417574800, 435718800, 449024400, 467773200, 481078800, 499222800, 512528400, 530672400, 543978000, 562122000, 575427600, 593571600, 606877200, 625626000, 638326800, 657075600, 670381200, 688525200, 701830800, 719974800, 733280400, 751424400, 764730000, 782874000, 796179600, 814323600, 828234000, 846378000 }
    typeOffsets:intvector { -75, 0, 0, 0, 0, 3600, 0, 7200, 3600, 0 }
    typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020302030203020302030201020102030201020102010201020102010201020102010201020102010201020102010201020102010201020102010204010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
    links:intvector { 442, 454, 456, 458, 464, 502, 503 }
  } //Z#464
  /* Europe/Luxembourg */ :table {
    trans:intvector { -2069713476, -1692496800, -1680483600, -1662343200, -1650157200, -1632006000, -1618700400, -1612659600, -1604278800, -1585519200, -1574038800, -1552258800, -1539997200, -1520550000, -1507510800, -1490572800, -1473642000, -1459119600, -1444006800, -1427673600, -1411866000, -1396224000, -1379293200, -1364774400, -1348448400, -1333324800, -1316394000, -1301270400, -1284339600, -1269813600, -1253484000, -1238364000, -1221429600, -1206914400, -1191189600, -1175464800, -1160344800, -1143410400, -1127685600, -1111960800, -1096840800, -1080511200, -1063576800, -1049061600, -1033336800, -1017612000, -1002492000, -986162400, -969228000, -950479200, -942012000, -935186400, -857257200, -844556400, -828226800, -812502000, -797986800, -781052400, -766623600, -745455600, -733273200, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 1476, 0, 0, 0, 0, 3600, 3600, 0, 3600, 3600 }
    typeMap:bin { "0304030403040301020102010201020102010201020102010201020102010201020102010201020102010201020102010201020403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#465
  /* Europe/Madrid */ :table {
    transPre32:intvector { -1, 2117514496 }
    trans:intvector { -1631926800, -1616889600, -1601168400, -1585353600, -1442451600, -1427673600, -1379293200, -1364774400, -1348448400, -1333324800, -1316390400, -1301270400, -1284339600, -1269820800, -1026954000, -1017619200, -1001898000, -999482400, -986090400, -954115200, -940208400, -873079200, -862621200, -842839200, -828320400, -811389600, -796870800, -779940000, -765421200, -748490400, -733971600, -652327200, -639018000, 135122400, 150246000, 166572000, 181695600, 196812000, 212540400, 228866400, 243990000, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { -884, 0, 0, 0, 0, 3600, 0, 7200, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020302010405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#466
  /* Europe/Malta */ :table {
    transPre32:intvector { -1, 1891488612 }
    trans:intvector { -1690765200, -1680487200, -1664758800, -1648951200, -1635123600, -1616896800, -1604278800, -1585533600, -1571014800, -1555293600, -932432400, -857257200, -844556400, -828226800, -812588400, -798073200, -781052400, -766717200, -750898800, -733359600, -719456400, -701917200, -689209200, -670460400, -114051600, -103168800, -81997200, -71715600, -50547600, -40266000, -18493200, -8211600, 12956400, 23238000, 43801200, 54687600, 75855600, 86742000, 102380400, 118105200, 135730800, 148518000, 167187600, 180489600, 198637200, 211939200, 230086800, 243388800, 261536400, 274838400, 292986000, 306288000, 323312400, 338342400, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3484, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#467
  /* Europe/Mariehamn */ :int { 455 } //Z#468
  /* Europe/Minsk */ :table {
    transPre32:intvector { -1, 1454819880 }
    trans:intvector { -1441158600, -1247536800, -899780400, -857257200, -844556400, -828226800, -812502000, -804650400, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 670374000, 686102400, 701827200, 717552000, 733276800, 749001600, 764726400, 780451200, 796176000, 811900800, 828230400, 846374400, 859680000, 877824000, 891129600, 909273600, 922579200, 941328000, 954028800, 972777600, 985478400, 1004227200, 1017532800, 1035676800, 1048982400, 1067126400, 1080432000, 1099180800, 1111881600, 1130630400, 1143331200, 1162080000, 1174780800, 1193529600, 1206835200, 1224979200, 1238284800, 1256428800, 1269734400, 1288483200, 1301184000 }
    typeOffsets:intvector { 6616, 0, 3600, 0, 3600, 3600, 6600, 0, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "0304060201020102060706070607060706070607060706070607060504050405040504050405040504050405040504050405040504050405040504050405040504050406" }
  } //Z#469
  /* Europe/Monaco */ :table {
    transPre32:intvector { -1, 1808287124 }
    trans:intvector { -1855958961, -1689814800, -1680397200, -1665363600, -1648342800, -1635123600, -1616893200, -1604278800, -1585443600, -1574038800, -1552266000, -1539997200, -1520557200, -1507510800, -1490576400, -1470618000, -1459126800, -1444006800, -1427677200, -1411952400, -1396227600, -1379293200, -1364778000, -1348448400, -1333328400, -1316394000, -1301274000, -1284339600, -1269824400, -1253494800, -1238374800, -1221440400, -1206925200, -1191200400, -1175475600, -1160355600, -1143421200, -1127696400, -1111971600, -1096851600, -1080522000, -1063587600, -1049072400, -1033347600, -1017622800, -1002502800, -986173200, -969238800, -950490000, -942012000, -904438800, -891136800, -877827600, -857257200, -844556400, -828226800, -812502000, -796266000, -781052400, -766623600, 196819200, 212540400, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 1772, 0, 0, 0, 0, 3600, 0, 7200, 561, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "04010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010203020302030203020305060506050605060506050605060506050605060506050605060506050605060506050605060506050605" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#470
  /* Europe/Moscow */ :table {
    trans:intvector { -1688265017, -1656819079, -1641353479, -1627965079, -1618716679, -1596429079, -1593820800, -1589860800, -1542427200, -1539493200, -1525323600, -1522728000, -1491188400, -1247536800, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 638319600, 654649200, 670374000, 686102400, 695779200, 701823600, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174777200, 1193526000, 1206831600, 1224975600, 1238281200, 1256425200, 1269730800, 1288479600, 1301180400, 1414274400 }
    typeOffsets:intvector { 9017, 0, 7200, 0, 7200, 3600, 9079, 0, 9079, 3600, 9079, 7200, 10800, 0, 10800, 3600, 10800, 7200, 14400, 0 }
    typeMap:bin { "0304030504050706070807060106070607060706070607060706070607060706070602010607060706070607060706070607060706070607060706070607060706070607060706070607060906" }
    links:intvector { 471, 630 }
  } //Z#471
  /* Europe/Nicosia */ :int { 297 } //Z#472
  /* Europe/Oslo */ :table {
    transPre32:intvector { -1, 1928209516 }
    trans:intvector { -1691884800, -1680573600, -927511200, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -765327600, -340844400, -324514800, -308790000, -293065200, -277340400, -261615600, -245890800, -230166000, -214441200, -198716400, -182991600, -166662000, -147913200, -135212400, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 2580, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 237, 342, 473 }
  } //Z#473
  /* Europe/Paris */ :table {
    trans:intvector { -1855958901, -1689814800, -1680397200, -1665363600, -1648342800, -1635123600, -1616893200, -1604278800, -1585443600, -1574038800, -1552266000, -1539997200, -1520557200, -1507510800, -1490576400, -1470618000, -1459126800, -1444006800, -1427677200, -1411952400, -1396227600, -1379293200, -1364778000, -1348448400, -1333328400, -1316394000, -1301274000, -1284339600, -1269824400, -1253494800, -1238374800, -1221440400, -1206925200, -1191200400, -1175475600, -1160355600, -1143421200, -1127696400, -1111971600, -1096851600, -1080522000, -1063587600, -1049072400, -1033347600, -1017622800, -1002502800, -986173200, -969238800, -950490000, -942012000, -932436000, -857257200, -844556400, -828226800, -812502000, -800071200, -796266000, -781052400, -766623600, 196819200, 212540400, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 561, 0, 0, 0, 0, 3600, 0, 7200, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102050405040503020304050405040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 396, 474 }
  } //Z#474
  /* Europe/Podgorica */ :int { 443 } //Z#475
  /* Europe/Prague */ :table {
    transPre32:intvector { -1, 1825565432 }
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -938905200, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -765327600, -746578800, -733359600, -728517600, -721260000, -716425200, -701910000, -684975600, -670460400, -654217200, -639010800, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3464, 0, 0, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "02030203020302030203020302030203020102030203020302030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 445, 476 }
  } //Z#476
  /* Europe/Riga */ :table {
    trans:intvector { -1632008194, -1618702594, -1601681794, -1597275394, -1377308194, -928029600, -899521200, -857257200, -844556400, -828226800, -812502000, -796777200, -795834000, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622598400, 638323200, 654652800, 670377600, 686102400, 701827200, 717552000, 733276800, 749001600, 764726400, 780451200, 796176000, 811900800, 828230400, 843955200, 859683600, 877827600, 891133200, 909277200, 922582800, 941331600, 985482000, 1004230800 }
    typeOffsets:intvector { 5794, 0, 3600, 0, 3600, 3600, 5794, 3600, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "0300030004060201020102010607060706070607060706070607060706050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 2002 }
  } //Z#477
  /* Europe/Rome */ :table {
    transPre32:intvector { -1, 1891402096 }
    trans:intvector { -1690765200, -1680487200, -1664758800, -1648951200, -1635123600, -1616896800, -1604278800, -1585533600, -1571014800, -1555293600, -932432400, -857257200, -844556400, -828226800, -812502000, -798073200, -781052400, -766717200, -750898800, -733359600, -719456400, -701917200, -689209200, -670460400, -114051600, -103168800, -81997200, -71715600, -50547600, -40266000, -18493200, -8211600, 12956400, 23238000, 43801200, 54687600, 75855600, 86742000, 107910000, 118191600, 138754800, 149641200, 170809200, 181090800, 202258800, 212540400, 233103600, 243990000, 265158000, 276044400, 296607600, 307494000, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 2996, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 478, 480, 493 }
  } //Z#478
  /* Europe/Samara */ :table {
    trans:intvector { -1593820800, -1247540400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622594800, 638319600, 654649200, 670374000, 686102400, 687916800, 701820000, 717544800, 733269600, 748994400, 764719200, 780444000, 796168800, 811893600, 828223200, 846367200, 859672800, 877816800, 891122400, 909266400, 922572000, 941320800, 954021600, 972770400, 985471200, 1004220000, 1017525600, 1035669600, 1048975200, 1067119200, 1080424800, 1099173600, 1111874400, 1130623200, 1143324000, 1162072800, 1174773600, 1193522400, 1206828000, 1224972000, 1238277600, 1256421600, 1269727200, 1288479600, 1301180400 }
    typeOffsets:intvector { 12020, 0, 7200, 3600, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "02040504050405040504050405040504050403020302010204050405040504050405040504050405040504050405040504050405040504050405040504030204" }
  } //Z#479
  /* Europe/San_Marino */ :int { 478 } //Z#480
  /* Europe/Sarajevo */ :int { 443 } //Z#481
  /* Europe/Saratov */ :table {
    trans:intvector { -1593820800, -1247540400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591145200, 606870000, 622594800, 638319600, 654649200, 670374000, 701820000, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174777200, 1193526000, 1206831600, 1224975600, 1238281200, 1256425200, 1269730800, 1288479600, 1301180400, 1414274400, 1480806000 }
    typeOffsets:intvector { 11058, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "01030403040304030403040304030403020102010201030201020102010201020102010201020102010201020102010201020102010201020102010201030103" }
  } //Z#482
  /* Europe/Simferopol */ :table {
    transPre32:intvector { -1, 1454818312 }
    trans:intvector { -1441160160, -1247536800, -888894000, -857257200, -844556400, -828226800, -812502000, -811648800, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 646786800, 701820000, 717541200, 733269600, 748990800, 764719200, 767739600, 780436800, 796165200, 811886400, 828219600, 846374400, 859683600, 877827600, 891133200, 909277200, 922582800, 941331600, 954032400, 972781200, 985482000, 1004230800, 1017536400, 1035680400, 1048986000, 1067130000, 1080435600, 1099184400, 1111885200, 1130634000, 1143334800, 1162083600, 1174784400, 1193533200, 1206838800, 1224982800, 1238288400, 1256432400, 1269738000, 1288486800, 1301187600, 1319936400, 1332637200, 1351386000, 1364691600, 1382835600, 1396137600, 1414274400 }
    typeOffsets:intvector { 8184, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600, 8160, 0, 10800, 0, 10800, 3600, 14400, 0 }
    typeMap:bin { "050306020102010206070607060706070607060706070607060706030403040304070607060706040304030403040304030403040304030403040304030403040304030403040304030806" }
  } //Z#483
  /* Europe/Skopje */ :int { 443 } //Z#484
  /* Europe/Sofia */ :table {
    transPre32:intvector { -1, 1454820900, -1, 1925440280 }
    trans:intvector { -857257200, -844556400, -828226800, -812502000, -796777200, -781048800, 291762000, 307576800, 323816400, 339026400, 355266000, 370393200, 386715600, 401846400, 417571200, 433296000, 449020800, 465350400, 481075200, 496800000, 512524800, 528249600, 543974400, 559699200, 575424000, 591148800, 606873600, 622598400, 638323200, 654652800, 670370400, 686091600, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796168800, 811890000, 828223200, 846363600, 859683600, 877827600 }
    typeOffsets:intvector { 5596, 0, 3600, 0, 3600, 3600, 7016, 0, 7200, 0, 7200, 3600 }
    typeMap:bin { "03040102010201040504050405040504050405040504050405040504050405040504050405040504050405040504" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1998 }
  } //Z#485
  /* Europe/Stockholm */ :table {
    transPre32:intvector { -1, 1423286164, -1, 2085974882 }
    trans:intvector { -1692496800, -1680483600, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 4332, 0, 3600, 0, 3600, 3600, 3614, 0 }
    typeMap:bin { "0301020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#486
  /* Europe/Tallinn */ :table {
    trans:intvector { -1638322740, -1632006000, -1618700400, -1593824400, -1535938740, -927943200, -892954800, -857257200, -844556400, -828226800, -812502000, -797652000, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622598400, 638323200, 654652800, 670377600, 686102400, 701827200, 717552000, 733276800, 749001600, 764726400, 780451200, 796176000, 811900800, 828230400, 846374400, 859680000, 877824000, 891129600, 909277200, 922582800, 941331600, 1017536400, 1035680400 }
    typeOffsets:intvector { 5940, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "01020100030502010201020506050605060506050605060506050605040304030403040304030403040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 2003 }
  } //Z#487
  /* Europe/Tirane */ :table {
    trans:intvector { -1767230360, -932346000, -857257200, -844556400, -843519600, 136854000, 149896800, 168130800, 181432800, 199839600, 213141600, 231894000, 244591200, 263257200, 276040800, 294706800, 307490400, 326156400, 339458400, 357087600, 370389600, 389142000, 402444000, 419468400, 433807200, 449622000, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 4760, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#488
  /* Europe/Tiraspol */ :int { 450 } //Z#489
  /* Europe/Ulyanovsk */ :table {
    trans:intvector { -1593820800, -1247540400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591141600, 606866400, 622594800, 638319600, 654649200, 670374000, 686102400, 695779200, 701823600, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174777200, 1193526000, 1206831600, 1224975600, 1238281200, 1256425200, 1269730800, 1288479600, 1301180400, 1414274400, 1459033200 }
    typeOffsets:intvector { 11616, 0, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "030506050605060506050605060506050605040304030201030403040304030403040304030403040304030403040304030403040304030403040304030403050305" }
  } //Z#490
  /* Europe/Uzhgorod */ :table {
    transPre32:intvector { -1, 1794027544 }
    trans:intvector { -938905200, -857257200, -844556400, -828226800, -812502000, -794714400, -773456400, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 646786800, 670384800, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 5352, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "0102010201020105060506050605060506050605060506050605010304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1997 }
  } //Z#491
  /* Europe/Vaduz */ :int { 500 } //Z#492
  /* Europe/Vatican */ :int { 478 } //Z#493
  /* Europe/Vienna */ :table {
    transPre32:intvector { -1, 1872912175 }
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -1569711600, -1555801200, -938905200, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -780188400, -748479600, -733359600, -717634800, -701910000, -684975600, -670460400, 323823600, 338940000, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3921, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#494
  /* Europe/Vilnius */ :table {
    transPre32:intvector { -1, 1454820420 }
    trans:intvector { -1672536240, -1585100136, -1561251600, -1553565600, -928198800, -900126000, -857257200, -844556400, -828226800, -812502000, -802144800, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622598400, 638323200, 654652800, 670377600, 686102400, 701827200, 717552000, 733276800, 749001600, 764726400, 780451200, 796176000, 811900800, 828230400, 846374400, 859680000, 877824000, 891133200, 909277200, 922582800, 941331600, 1048986000, 1067130000 }
    typeOffsets:intvector { 6076, 0, 3600, 0, 3600, 3600, 5040, 0, 5736, 0, 7200, 0, 7200, 3600, 10800, 0, 10800, 3600 }
    typeMap:bin { "03040105010702010201020708070807080708070807080708070807060506050605060506050605060506050605020102050605" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 2004 }
  } //Z#495
  /* Europe/Volgograd */ :table {
    trans:intvector { -1577761060, -1247540400, 354916800, 370724400, 386452800, 402260400, 417988800, 433796400, 449611200, 465343200, 481068000, 496792800, 512517600, 528242400, 543967200, 559692000, 575416800, 591145200, 606870000, 622594800, 638319600, 654649200, 670374000, 701820000, 717548400, 733273200, 748998000, 764722800, 780447600, 796172400, 811897200, 828226800, 846370800, 859676400, 877820400, 891126000, 909270000, 922575600, 941324400, 954025200, 972774000, 985474800, 1004223600, 1017529200, 1035673200, 1048978800, 1067122800, 1080428400, 1099177200, 1111878000, 1130626800, 1143327600, 1162076400, 1174777200, 1193526000, 1206831600, 1224975600, 1238281200, 1256425200, 1269730800, 1288479600, 1301180400, 1414274400 }
    typeOffsets:intvector { 10660, 0, 10800, 0, 10800, 3600, 14400, 0, 14400, 3600 }
    typeMap:bin { "010304030403040304030403040304030201020102010302010201020102010201020102010201020102010201020102010201020102010201020102010301" }
  } //Z#496
  /* Europe/Warsaw */ :table {
    trans:intvector { -1717032240, -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -1600473600, -1587168000, -1501725600, -931734000, -857257200, -844556400, -828226800, -812502000, -796608000, -778726800, -762660000, -748486800, -733273200, -715215600, -701910000, -684975600, -670460400, -654130800, -639010800, -397094400, -386812800, -371088000, -355363200, -334195200, -323308800, -307584000, -291859200, -271296000, -260409600, -239846400, -228960000, -208396800, -197510400, -176342400, -166060800, 228873600, 243993600, 260323200, 276048000, 291772800, 307497600, 323827200, 338947200, 354672000, 370396800, 386121600, 401846400, 417571200, 433296000, 449020800, 465350400, 481075200, 496800000, 512524800, 528249600, 543974400, 559699200, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 5040, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600 }
    typeMap:bin { "01020102010203040301020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201020102010201" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 497, 593 }
  } //Z#497
  /* Europe/Zagreb */ :int { 443 } //Z#498
  /* Europe/Zaporozhye */ :table {
    transPre32:intvector { -1, 1454818056 }
    trans:intvector { -1441160400, -1247536800, -894769200, -857257200, -844556400, -828226800, -826419600, 354920400, 370728000, 386456400, 402264000, 417992400, 433800000, 449614800, 465346800, 481071600, 496796400, 512521200, 528246000, 543970800, 559695600, 575420400, 591145200, 606870000, 622594800, 638319600, 654649200, 670374000, 686091600, 701820000, 717541200, 733269600, 748990800, 764719200, 780440400, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 8440, 0, 3600, 0, 3600, 3600, 7200, 0, 7200, 3600, 8400, 0, 10800, 0, 10800, 3600 }
    typeMap:bin { "05030602010201060706070607060706070607060706070607060706040304030403040304030403" }
    finalRule { "EU" }
    finalRaw:int { 7200 }
    finalYear:int { 1997 }
  } //Z#499
  /* Europe/Zurich */ :table {
    transPre32:intvector { -1, 619768448, -1, 1909720710 }
    trans:intvector { -904435200, -891129600, -872985600, -859680000, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 2048, 0, 1786, 0, 3600, 0, 3600, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302" }
    finalRule { "EU" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
    links:intvector { 449, 492, 500 }
  } //Z#500
  /* Factory */ :table {
    typeOffsets:intvector { 0, 0 }
  } //Z#501
  /* GB */ :int { 464 } //Z#502
  /* GB-Eire */ :int { 464 } //Z#503
  /* GMT */ :int { 402 } //Z#504
  /* GMT+0 */ :int { 402 } //Z#505
  /* GMT-0 */ :int { 402 } //Z#506
  /* GMT0 */ :int { 402 } //Z#507
  /* Greenwich */ :int { 402 } //Z#508
  /* HST */ :table {
    typeOffsets:intvector { -36000, 0 }
  } //Z#509
  /* Hongkong */ :int { 272 } //Z#510
  /* IET */ :int { 131 } //Z#511
  /* IST */ :int { 286 } //Z#512
  /* Iceland */ :int { 344 } //Z#513
  /* Indian/Antananarivo */ :int { 48 } //Z#514
  /* Indian/Chagos */ :table {
    trans:intvector { -1988167780, 820436400 }
    typeOffsets:intvector { 17380, 0, 18000, 0, 21600, 0 }
    typeMap:bin { "0102" }
  } //Z#515
  /* Indian/Christmas */ :table {
    transPre32:intvector { -1, 1930865124 }
    typeOffsets:intvector { 25372, 0, 25200, 0 }
    typeMap:bin { "01" }
  } //Z#516
  /* Indian/Cocos */ :table {
    transPre32:intvector { -1, 2085955236 }
    typeOffsets:intvector { 23260, 0, 23400, 0 }
    typeMap:bin { "01" }
  } //Z#517
  /* Indian/Comoro */ :int { 48 } //Z#518
  /* Indian/Kerguelen */ :table {
    trans:intvector { -631152000 }
    typeOffsets:intvector { 0, 0, 18000, 0 }
    typeMap:bin { "01" }
  } //Z#519
  /* Indian/Mahe */ :table {
    trans:intvector { -2006653308 }
    typeOffsets:intvector { 13308, 0, 14400, 0 }
    typeMap:bin { "01" }
  } //Z#520
  /* Indian/Maldives */ :table {
    trans:intvector { -315636840 }
    typeOffsets:intvector { 17640, 0, 18000, 0 }
    typeMap:bin { "01" }
  } //Z#521
  /* Indian/Mauritius */ :table {
    trans:intvector { -1988164200, 403041600, 417034800, 1224972000, 1238274000 }
    typeOffsets:intvector { 13800, 0, 14400, 0, 14400, 3600 }
    typeMap:bin { "0102010201" }
  } //Z#522
  /* Indian/Mayotte */ :int { 48 } //Z#523
  /* Indian/Reunion */ :table {
    trans:intvector { -1848886912 }
    typeOffsets:intvector { 13312, 0, 14400, 0 }
    typeMap:bin { "01" }
  } //Z#524
  /* Iran */ :int { 319 } //Z#525
  /* Israel */ :int { 278 } //Z#526
  /* JST */ :int { 323 } //Z#527
  /* Jamaica */ :int { 142 } //Z#528
  /* Japan */ :int { 323 } //Z#529
  /* Kwajalein */ :int { 569 } //Z#530
  /* Libya */ :int { 56 } //Z#531
  /* MET */ :table {
    trans:intvector { -1693706400, -1680483600, -1663455600, -1650150000, -1632006000, -1618700400, -938905200, -857257200, -844556400, -828226800, -812502000, -796777200, -781052400, -766623600, 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 3600, 0, 3600, 3600 }
    typeMap:bin { "010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "C-Eur" }
    finalRaw:int { 3600 }
    finalYear:int { 1997 }
  } //Z#532
  /* MIT */ :int { 550 } //Z#533
  /* MST */ :table {
    typeOffsets:intvector { -25200, 0 }
  } //Z#534
  /* MST7MDT */ :table {
    trans:intvector { -1633273200, -1615132800, -1601823600, -1583683200, -880210800, -765388800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 126694800, 152092800, 162378000, 183542400, 199270800, 215596800, 230720400, 247046400, 262774800, 278496000, 294224400, 309945600, 325674000, 341395200, 357123600, 372844800, 388573200, 404899200, 420022800, 436348800, 452077200, 467798400, 483526800, 499248000, 514976400, 530697600, 544611600, 562147200, 576061200, 594201600, 607510800, 625651200, 638960400, 657100800, 671014800, 688550400, 702464400, 720000000, 733914000, 752054400, 765363600, 783504000, 796813200, 814953600, 828867600, 846403200, 860317200, 877852800, 891766800, 909302400, 923216400, 941356800, 954666000, 972806400, 986115600, 1004256000, 1018170000, 1035705600, 1049619600, 1067155200, 1081069200, 1099209600, 1112518800, 1130659200, 1143968400, 1162108800, 1173603600, 1194163200 }
    typeOffsets:intvector { -25200, 0, -25200, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "US" }
    finalRaw:int { -25200 }
    finalYear:int { 2008 }
  } //Z#535
  /* Mexico/BajaNorte */ :int { 216 } //Z#536
  /* Mexico/BajaSur */ :int { 160 } //Z#537
  /* Mexico/General */ :int { 165 } //Z#538
  /* NET */ :int { 335 } //Z#539
  /* NST */ :int { 551 } //Z#540
  /* NZ */ :int { 551 } //Z#541
  /* NZ-CHAT */ :int { 553 } //Z#542
  /* Navajo */ :int { 109 } //Z#543
  /* PLT */ :int { 281 } //Z#544
  /* PNT */ :int { 184 } //Z#545
  /* PRC */ :int { 313 } //Z#546
  /* PRT */ :int { 189 } //Z#547
  /* PST */ :int { 151 } //Z#548
  /* PST8PDT */ :table {
    trans:intvector { -1633269600, -1615129200, -1601820000, -1583679600, -880207200, -765385200, -84376800, -68655600, -52927200, -37206000, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 126698400, 152096400, 162381600, 183546000, 199274400, 215600400, 230724000, 247050000, 262778400, 278499600, 294228000, 309949200, 325677600, 341398800, 357127200, 372848400, 388576800, 404902800, 420026400, 436352400, 452080800, 467802000, 483530400, 499251600, 514980000, 530701200, 544615200, 562150800, 576064800, 594205200, 607514400, 625654800, 638964000, 657104400, 671018400, 688554000, 702468000, 720003600, 733917600, 752058000, 765367200, 783507600, 796816800, 814957200, 828871200, 846406800, 860320800, 877856400, 891770400, 909306000, 923220000, 941360400, 954669600, 972810000, 986119200, 1004259600, 1018173600, 1035709200, 1049623200, 1067158800, 1081072800, 1099213200, 1112522400, 1130662800, 1143972000, 1162112400, 1173607200, 1194166800 }
    typeOffsets:intvector { -28800, 0, -28800, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "US" }
    finalRaw:int { -28800 }
    finalYear:int { 2008 }
  } //Z#549
  /* Pacific/Apia */ :table {
    transPre32:intvector { -1, 1849542912 }
    trans:intvector { -1861878784, -631110600, 1285498800, 1301752800, 1316872800, 1325239200, 1333202400, 1348927200 }
    typeOffsets:intvector { 45184, 0, -41400, 0, -41216, 0, -39600, 0, -39600, 3600, 46800, 0, 46800, 3600 }
    typeMap:bin { "020103040304060506" }
    finalRule { "WS" }
    finalRaw:int { 46800 }
    finalYear:int { 2013 }
    links:intvector { 533, 550 }
  } //Z#550
  /* Pacific/Auckland */ :table {
    transPre32:intvector { -1, 1102531752 }
    trans:intvector { -1330335000, -1320057000, -1300699800, -1287396000, -1269250200, -1255946400, -1237800600, -1224496800, -1206351000, -1192442400, -1174901400, -1160992800, -1143451800, -1125914400, -1112607000, -1094464800, -1081157400, -1063015200, -1049707800, -1031565600, -1018258200, -1000116000, -986808600, -968061600, -955359000, -936612000, -923304600, -757425600, 152632800, 162309600, 183477600, 194968800, 215532000, 226418400, 246981600, 257868000, 278431200, 289317600, 309880800, 320767200, 341330400, 352216800, 372780000, 384271200, 404834400, 415720800, 436284000, 447170400, 467733600, 478620000, 499183200, 510069600, 530632800, 541519200, 562082400, 573573600, 594136800, 605023200, 623772000, 637682400, 655221600, 669132000, 686671200, 700581600, 718120800, 732636000, 749570400, 764085600, 781020000, 795535200, 812469600, 826984800, 844524000, 858434400, 875973600, 889884000, 907423200, 921938400, 938872800, 953388000, 970322400, 984837600, 1002376800, 1016287200, 1033826400, 1047736800, 1065276000, 1079791200, 1096725600, 1111240800, 1128175200, 1142690400, 1159624800, 1174140000, 1191074400, 1207404000, 1222524000 }
    typeOffsets:intvector { 41944, 0, 41400, 0, 41400, 1800, 41400, 3600, 43200, 0, 43200, 3600 }
    typeMap:bin { "0103010201020102010201020102010201020102010201020102010204050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405040504050405" }
    finalRule { "NZ" }
    finalRaw:int { 43200 }
    finalYear:int { 2009 }
    links:intvector { 230, 233, 540, 541, 551 }
  } //Z#551
  /* Pacific/Bougainville */ :table {
    transPre32:intvector { -1, 1454789160, -1, 1928176784 }
    trans:intvector { -868010400, -768906000, 1419696000 }
    typeOffsets:intvector { 37336, 0, 32400, 0, 35312, 0, 36000, 0, 39600, 0 }
    typeMap:bin { "0203010304" }
  } //Z#552
  /* Pacific/Chatham */ :table {
    transPre32:intvector { -1, 1102529668 }
    trans:intvector { -757426500, 152632800, 162309600, 183477600, 194968800, 215532000, 226418400, 246981600, 257868000, 278431200, 289317600, 309880800, 320767200, 341330400, 352216800, 372780000, 384271200, 404834400, 415720800, 436284000, 447170400, 467733600, 478620000, 499183200, 510069600, 530632800, 541519200, 562082400, 573573600, 594136800, 605023200, 623772000, 637682400, 655221600, 669132000, 686671200, 700581600, 718120800, 732636000, 749570400, 764085600, 781020000, 795535200, 812469600, 826984800, 844524000, 858434400, 875973600, 889884000, 907423200, 921938400, 938872800, 953388000, 970322400, 984837600, 1002376800, 1016287200, 1033826400, 1047736800, 1065276000, 1079791200, 1096725600, 1111240800, 1128175200, 1142690400, 1159624800, 1174140000, 1191074400, 1207404000, 1222524000 }
    typeOffsets:intvector { 44028, 0, 44100, 0, 45900, 0, 45900, 3600 }
    typeMap:bin { "0102030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203020302030203" }
    finalRule { "Chatham" }
    finalRaw:int { 45900 }
    finalYear:int { 2009 }
    links:intvector { 542, 553 }
  } //Z#553
  /* Pacific/Chuuk */ :table {
    transPre32:intvector { -1, 2117478068 }
    typeOffsets:intvector { 36428, 0, 36000, 0 }
    typeMap:bin { "01" }
    links:intvector { 554, 589, 592 }
  } //Z#554
  /* Pacific/Easter */ :table {
    trans:intvector { -1178124152, -36619200, -23922000, -3355200, 7527600, 24465600, 37767600, 55915200, 69217200, 87969600, 100666800, 118209600, 132116400, 150868800, 163566000, 182318400, 195620400, 213768000, 227070000, 245217600, 258519600, 277272000, 289969200, 308721600, 321418800, 340171200, 353473200, 371620800, 384922800, 403070400, 416372400, 434520000, 447822000, 466574400, 479271600, 498024000, 510721200, 529473600, 545194800, 560923200, 574225200, 592372800, 605674800, 624427200, 637124400, 653457600, 668574000, 687326400, 700628400, 718776000, 732078000, 750225600, 763527600, 781675200, 794977200, 813729600, 826426800, 845179200, 859690800, 876628800, 889930800, 906868800, 923194800, 939528000, 952830000, 971582400, 984279600, 1003032000, 1015729200, 1034481600, 1047178800, 1065931200, 1079233200, 1097380800, 1110682800, 1128830400, 1142132400, 1160884800, 1173582000, 1192334400, 1206846000, 1223784000, 1237086000, 1255233600, 1270350000, 1286683200, 1304823600, 1313899200, 1335668400, 1346558400, 1367118000, 1378612800, 1398567600, 1410062400, 1463281200, 1471147200 }
    typeOffsets:intvector { -26248, 0, -25200, 0, -25200, 3600, -21600, 0, -21600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201020102010201020304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304030403040304" }
    finalRule { "Chile" }
    finalRaw:int { -21600 }
    finalYear:int { 2017 }
    links:intvector { 393, 555 }
  } //Z#555
  /* Pacific/Efate */ :table {
    trans:intvector { -1829387596, 433256400, 448977600, 467298000, 480427200, 496760400, 511876800, 528210000, 543931200, 559659600, 575380800, 591109200, 606830400, 622558800, 638280000, 654008400, 669729600, 686062800, 696340800, 719931600, 727790400 }
    typeOffsets:intvector { 40396, 0, 39600, 0, 39600, 3600 }
    typeMap:bin { "010201020102010201020102010201020102010201" }
  } //Z#556
  /* Pacific/Enderbury */ :table {
    transPre32:intvector { -1, 2117555556 }
    trans:intvector { 307627200, 788871600 }
    typeOffsets:intvector { -41060, 0, -43200, 0, -39600, 0, 46800, 0 }
    typeMap:bin { "010203" }
  } //Z#557
  /* Pacific/Fakaofo */ :table {
    transPre32:intvector { -1, 2117555592 }
    trans:intvector { 1325242800 }
    typeOffsets:intvector { -41096, 0, -39600, 0, 46800, 0 }
    typeMap:bin { "0102" }
  } //Z#558
  /* Pacific/Fiji */ :table {
    trans:intvector { -1709985344, 909842400, 920124000, 941896800, 951573600, 1259416800, 1269698400, 1287842400, 1299333600, 1319292000, 1327154400, 1350741600, 1358604000, 1382796000, 1390050000, 1414850400, 1421503200, 1446300000 }
    typeOffsets:intvector { 42944, 0, 43200, 0, 43200, 3600 }
    typeMap:bin { "010201020102010201020102010201020102" }
    finalRule { "Fiji" }
    finalRaw:int { 43200 }
    finalYear:int { 2016 }
  } //Z#559
  /* Pacific/Funafuti */ :table {
    transPre32:intvector { -1, 2117471484 }
    typeOffsets:intvector { 43012, 0, 43200, 0 }
    typeMap:bin { "01" }
  } //Z#560
  /* Pacific/Galapagos */ :table {
    trans:intvector { -1230746496, 504939600, 722930400, 728888400 }
    typeOffsets:intvector { -21504, 0, -21600, 0, -21600, 3600, -18000, 0 }
    typeMap:bin { "03010201" }
  } //Z#561
  /* Pacific/Gambier */ :table {
    trans:intvector { -1806678012 }
    typeOffsets:intvector { -32388, 0, -32400, 0 }
    typeMap:bin { "01" }
  } //Z#562
  /* Pacific/Guadalcanal */ :table {
    trans:intvector { -1806748788 }
    typeOffsets:intvector { 38388, 0, 39600, 0 }
    typeMap:bin { "01" }
    links:intvector { 563, 597 }
  } //Z#563
  /* Pacific/Guam */ :table {
    transPre32:intvector { -1, 350340556, -1, 2117479756 }
    typeOffsets:intvector { -51660, 0, 34740, 0, 36000, 0 }
    typeMap:bin { "0102" }
    links:intvector { 564, 584 }
  } //Z#564
  /* Pacific/Honolulu */ :table {
    transPre32:intvector { -1, 1960865982 }
    trans:intvector { -1157283000, -1155436200, -880198200, -765376200, -712150200 }
    typeOffsets:intvector { -37886, 0, -37800, 0, -37800, 3600, -36000, 0 }
    typeMap:bin { "010201020103" }
    links:intvector { 565, 566, 620 }
  } //Z#565
  /* Pacific/Johnston */ :int { 565 } //Z#566
  /* Pacific/Kiritimati */ :table {
    transPre32:intvector { -1, 2117552256 }
    trans:intvector { 307622400, 788868000 }
    typeOffsets:intvector { -37760, 0, -38400, 0, -36000, 0, 50400, 0 }
    typeMap:bin { "010203" }
  } //Z#567
  /* Pacific/Kosrae */ :table {
    transPre32:intvector { -1, 2117475380 }
    trans:intvector { -7988400, 915105600 }
    typeOffsets:intvector { 39116, 0, 39600, 0, 43200, 0 }
    typeMap:bin { "010201" }
  } //Z#568
  /* Pacific/Kwajalein */ :table {
    transPre32:intvector { -1, 2117474336 }
    trans:intvector { -7988400, 745848000 }
    typeOffsets:intvector { 40160, 0, -43200, 0, 39600, 0, 43200, 0 }
    typeMap:bin { "020103" }
    links:intvector { 530, 569 }
  } //Z#569
  /* Pacific/Majuro */ :table {
    transPre32:intvector { -1, 2117473408 }
    trans:intvector { -7988400 }
    typeOffsets:intvector { 41088, 0, 39600, 0, 43200, 0 }
    typeMap:bin { "0102" }
  } //Z#570
  /* Pacific/Marquesas */ :table {
    trans:intvector { -1806676920 }
    typeOffsets:intvector { -33480, 0, -34200, 0 }
    typeMap:bin { "01" }
  } //Z#571
  /* Pacific/Midway */ :int { 577 } //Z#572
  /* Pacific/Nauru */ :table {
    trans:intvector { -1545131260, -877347000, -800960400, 294323400 }
    typeOffsets:intvector { 40060, 0, 32400, 0, 41400, 0, 43200, 0 }
    typeMap:bin { "02010203" }
  } //Z#573
  /* Pacific/Niue */ :table {
    transPre32:intvector { -1, 2117555276 }
    trans:intvector { -599575200, 276089400 }
    typeOffsets:intvector { -40780, 0, -41400, 0, -40800, 0, -39600, 0 }
    typeMap:bin { "020103" }
  } //Z#574
  /* Pacific/Norfolk */ :table {
    transPre32:intvector { -1, 2117474184 }
    trans:intvector { -599656320, 152029800, 162912600, 1443882600 }
    typeOffsets:intvector { 40312, 0, 39600, 0, 40320, 0, 41400, 0, 41400, 3600 }
    typeMap:bin { "0203040301" }
  } //Z#575
  /* Pacific/Noumea */ :table {
    trans:intvector { -1829387148, 250002000, 257342400, 281451600, 288878400, 849366000, 857228400 }
    typeOffsets:intvector { 39948, 0, 39600, 0, 39600, 3600 }
    typeMap:bin { "01020102010201" }
  } //Z#576
  /* Pacific/Pago_Pago */ :table {
    transPre32:intvector { -1, 1849542664 }
    trans:intvector { -1861879032 }
    typeOffsets:intvector { 45432, 0, -40968, 0, -39600, 0 }
    typeMap:bin { "0102" }
    links:intvector { 572, 577, 585, 626 }
  } //Z#577
  /* Pacific/Palau */ :table {
    transPre32:intvector { -1, 2117482220 }
    typeOffsets:intvector { 32276, 0, 32400, 0 }
    typeMap:bin { "01" }
  } //Z#578
  /* Pacific/Pitcairn */ :table {
    transPre32:intvector { -1, 2117545716 }
    trans:intvector { 893665800 }
    typeOffsets:intvector { -31220, 0, -30600, 0, -28800, 0 }
    typeMap:bin { "0102" }
  } //Z#579
  /* Pacific/Pohnpei */ :table {
    transPre32:intvector { -1, 2117476524 }
    typeOffsets:intvector { 37972, 0, 39600, 0 }
    typeMap:bin { "01" }
    links:intvector { 580, 581 }
  } //Z#580
  /* Pacific/Ponape */ :int { 580 } //Z#581
  /* Pacific/Port_Moresby */ :table {
    transPre32:intvector { -1, 1454791176, -1, 1928176784 }
    typeOffsets:intvector { 35320, 0, 35312, 0, 36000, 0 }
    typeMap:bin { "0102" }
  } //Z#582
  /* Pacific/Rarotonga */ :table {
    transPre32:intvector { -1, 2117552840 }
    trans:intvector { 279714600, 289387800, 309952800, 320837400, 341402400, 352287000, 372852000, 384341400, 404906400, 415791000, 436356000, 447240600, 467805600, 478690200, 499255200, 510139800, 530704800, 541589400, 562154400, 573643800, 594208800, 605093400, 625658400, 636543000, 657108000, 667992600 }
    typeOffsets:intvector { -38344, 0, -37800, 0, -36000, 0, -36000, 1800 }
    typeMap:bin { "010302030203020302030203020302030203020302030203020302" }
  } //Z#583
  /* Pacific/Saipan */ :int { 564 } //Z#584
  /* Pacific/Samoa */ :int { 577 } //Z#585
  /* Pacific/Tahiti */ :table {
    trans:intvector { -1806674504 }
    typeOffsets:intvector { -35896, 0, -36000, 0 }
    typeMap:bin { "01" }
  } //Z#586
  /* Pacific/Tarawa */ :table {
    transPre32:intvector { -1, 2117472972 }
    typeOffsets:intvector { 41524, 0, 43200, 0 }
    typeMap:bin { "01" }
  } //Z#587
  /* Pacific/Tongatapu */ :table {
    transPre32:intvector { -1, 2117470136 }
    trans:intvector { -915193200, 939214800, 953384400, 973342800, 980596800, 1004792400, 1012046400, 1478350800, 1484398800 }
    typeOffsets:intvector { 44360, 0, 44400, 0, 46800, 0, 46800, 3600 }
    typeMap:bin { "01020302030203020302" }
  } //Z#588
  /* Pacific/Truk */ :int { 554 } //Z#589
  /* Pacific/Wake */ :table {
    transPre32:intvector { -1, 2117474508 }
    typeOffsets:intvector { 39988, 0, 43200, 0 }
    typeMap:bin { "01" }
  } //Z#590
  /* Pacific/Wallis */ :table {
    transPre32:intvector { -1, 2117470376 }
    typeOffsets:intvector { 44120, 0, 43200, 0 }
    typeMap:bin { "01" }
  } //Z#591
  /* Pacific/Yap */ :int { 554 } //Z#592
  /* Poland */ :int { 497 } //Z#593
  /* Portugal */ :int { 462 } //Z#594
  /* ROC */ :int { 316 } //Z#595
  /* ROK */ :int { 312 } //Z#596
  /* SST */ :int { 563 } //Z#597
  /* Singapore */ :int { 314 } //Z#598
  /* SystemV/AST4 */ :table {
    typeOffsets:intvector { -14400, 0 }
  } //Z#599
  /* SystemV/AST4ADT */ :table {
    transPre32:intvector { -1, 2096195296, -1, 2111916496, -1, 2127644896, -1, 2143366096 }
    trans:intvector { -2135872800, -2120151600, -2104423200, -2088702000, -2072973600, -2056647600, -2040919200, -2025198000, -2009469600, -1993748400, -1978020000, -1962298800, -1946570400, -1930849200, -1915120800, -1898794800, -1883671200, -1867345200, -1851616800, -1835895600, -1820167200, -1804446000, -1788717600, -1772996400, -1757268000, -1741546800, -1725818400, -1709492400, -1693764000, -1678042800, -1662314400, -1646593200, -1630864800, -1615143600, -1599415200, -1583694000, -1567965600, -1551639600, -1536516000, -1520190000, -1504461600, -1488740400, -1473012000, -1457290800, -1441562400, -1425841200, -1410112800, -1394391600, -1378663200, -1362337200, -1347213600, -1330887600, -1315159200, -1299438000, -1283709600, -1267988400, -1252260000, -1236538800, -1220810400, -1205089200, -1189360800, -1173034800, -1157306400, -1141585200, -1125856800, -1110135600, -1094407200, -1078686000, -1062957600, -1047236400, -1031508000, -1015182000, -1000058400, -983732400, -968004000, -952282800, -936554400, -920833200, -905104800, -889383600, -873655200, -857934000, -842205600, -825879600, -810151200, -794430000, -778701600, -762980400, -747252000, -731530800, -715802400, -700081200, -684352800, -668026800, -652903200, -636577200, -620848800, -605127600, -589399200, -573678000, -557949600, -542228400, -526500000, -510778800, -495050400, -478724400, -463600800, -447274800, -431546400, -415825200, -400096800, -384375600, -368647200, -352926000, -337197600, -321476400, -305748000, -289422000, -273693600, -257972400, -242244000, -226522800, -210794400, -195073200, -179344800, -163623600, -147895200, -131569200, -116445600, -100119600, -84391200, -68670000, -52941600, -37220400, -21492000, -5770800, 9957600, 25678800, 41407200, 57733200, 73461600, 89182800, 104911200, 120632400, 126684000, 154501200, 162367200, 183531600, 199260000, 215586000 }
    typeOffsets:intvector { -14400, 0, -14400, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "SystemV" }
    finalRaw:int { -14400 }
    finalYear:int { 1977 }
  } //Z#600
  /* SystemV/CST6 */ :table {
    typeOffsets:intvector { -21600, 0 }
  } //Z#601
  /* SystemV/CST6CDT */ :table {
    transPre32:intvector { -1, 2096202496, -1, 2111923696, -1, 2127652096, -1, 2143373296 }
    trans:intvector { -2135865600, -2120144400, -2104416000, -2088694800, -2072966400, -2056640400, -2040912000, -2025190800, -2009462400, -1993741200, -1978012800, -1962291600, -1946563200, -1930842000, -1915113600, -1898787600, -1883664000, -1867338000, -1851609600, -1835888400, -1820160000, -1804438800, -1788710400, -1772989200, -1757260800, -1741539600, -1725811200, -1709485200, -1693756800, -1678035600, -1662307200, -1646586000, -1630857600, -1615136400, -1599408000, -1583686800, -1567958400, -1551632400, -1536508800, -1520182800, -1504454400, -1488733200, -1473004800, -1457283600, -1441555200, -1425834000, -1410105600, -1394384400, -1378656000, -1362330000, -1347206400, -1330880400, -1315152000, -1299430800, -1283702400, -1267981200, -1252252800, -1236531600, -1220803200, -1205082000, -1189353600, -1173027600, -1157299200, -1141578000, -1125849600, -1110128400, -1094400000, -1078678800, -1062950400, -1047229200, -1031500800, -1015174800, -1000051200, -983725200, -967996800, -952275600, -936547200, -920826000, -905097600, -889376400, -873648000, -857926800, -842198400, -825872400, -810144000, -794422800, -778694400, -762973200, -747244800, -731523600, -715795200, -700074000, -684345600, -668019600, -652896000, -636570000, -620841600, -605120400, -589392000, -573670800, -557942400, -542221200, -526492800, -510771600, -495043200, -478717200, -463593600, -447267600, -431539200, -415818000, -400089600, -384368400, -368640000, -352918800, -337190400, -321469200, -305740800, -289414800, -273686400, -257965200, -242236800, -226515600, -210787200, -195066000, -179337600, -163616400, -147888000, -131562000, -116438400, -100112400, -84384000, -68662800, -52934400, -37213200, -21484800, -5763600, 9964800, 25686000, 41414400, 57740400, 73468800, 89190000, 104918400, 120639600, 126691200, 154508400, 162374400, 183538800, 199267200, 215593200 }
    typeOffsets:intvector { -21600, 0, -21600, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "SystemV" }
    finalRaw:int { -21600 }
    finalYear:int { 1977 }
  } //Z#602
  /* SystemV/EST5 */ :table {
    typeOffsets:intvector { -18000, 0 }
  } //Z#603
  /* SystemV/EST5EDT */ :table {
    transPre32:intvector { -1, 2096198896, -1, 2111920096, -1, 2127648496, -1, 2143369696 }
    trans:intvector { -2135869200, -2120148000, -2104419600, -2088698400, -2072970000, -2056644000, -2040915600, -2025194400, -2009466000, -1993744800, -1978016400, -1962295200, -1946566800, -1930845600, -1915117200, -1898791200, -1883667600, -1867341600, -1851613200, -1835892000, -1820163600, -1804442400, -1788714000, -1772992800, -1757264400, -1741543200, -1725814800, -1709488800, -1693760400, -1678039200, -1662310800, -1646589600, -1630861200, -1615140000, -1599411600, -1583690400, -1567962000, -1551636000, -1536512400, -1520186400, -1504458000, -1488736800, -1473008400, -1457287200, -1441558800, -1425837600, -1410109200, -1394388000, -1378659600, -1362333600, -1347210000, -1330884000, -1315155600, -1299434400, -1283706000, -1267984800, -1252256400, -1236535200, -1220806800, -1205085600, -1189357200, -1173031200, -1157302800, -1141581600, -1125853200, -1110132000, -1094403600, -1078682400, -1062954000, -1047232800, -1031504400, -1015178400, -1000054800, -983728800, -968000400, -952279200, -936550800, -920829600, -905101200, -889380000, -873651600, -857930400, -842202000, -825876000, -810147600, -794426400, -778698000, -762976800, -747248400, -731527200, -715798800, -700077600, -684349200, -668023200, -652899600, -636573600, -620845200, -605124000, -589395600, -573674400, -557946000, -542224800, -526496400, -510775200, -495046800, -478720800, -463597200, -447271200, -431542800, -415821600, -400093200, -384372000, -368643600, -352922400, -337194000, -321472800, -305744400, -289418400, -273690000, -257968800, -242240400, -226519200, -210790800, -195069600, -179341200, -163620000, -147891600, -131565600, -116442000, -100116000, -84387600, -68666400, -52938000, -37216800, -21488400, -5767200, 9961200, 25682400, 41410800, 57736800, 73465200, 89186400, 104914800, 120636000, 126687600, 154504800, 162370800, 183535200, 199263600, 215589600 }
    typeOffsets:intvector { -18000, 0, -18000, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "SystemV" }
    finalRaw:int { -18000 }
    finalYear:int { 1977 }
  } //Z#604
  /* SystemV/HST10 */ :table {
    typeOffsets:intvector { -36000, 0 }
  } //Z#605
  /* SystemV/MST7 */ :table {
    typeOffsets:intvector { -25200, 0 }
  } //Z#606
  /* SystemV/MST7MDT */ :table {
    transPre32:intvector { -1, 2096206096, -1, 2111927296, -1, 2127655696, -1, 2143376896 }
    trans:intvector { -2135862000, -2120140800, -2104412400, -2088691200, -2072962800, -2056636800, -2040908400, -2025187200, -2009458800, -1993737600, -1978009200, -1962288000, -1946559600, -1930838400, -1915110000, -1898784000, -1883660400, -1867334400, -1851606000, -1835884800, -1820156400, -1804435200, -1788706800, -1772985600, -1757257200, -1741536000, -1725807600, -1709481600, -1693753200, -1678032000, -1662303600, -1646582400, -1630854000, -1615132800, -1599404400, -1583683200, -1567954800, -1551628800, -1536505200, -1520179200, -1504450800, -1488729600, -1473001200, -1457280000, -1441551600, -1425830400, -1410102000, -1394380800, -1378652400, -1362326400, -1347202800, -1330876800, -1315148400, -1299427200, -1283698800, -1267977600, -1252249200, -1236528000, -1220799600, -1205078400, -1189350000, -1173024000, -1157295600, -1141574400, -1125846000, -1110124800, -1094396400, -1078675200, -1062946800, -1047225600, -1031497200, -1015171200, -1000047600, -983721600, -967993200, -952272000, -936543600, -920822400, -905094000, -889372800, -873644400, -857923200, -842194800, -825868800, -810140400, -794419200, -778690800, -762969600, -747241200, -731520000, -715791600, -700070400, -684342000, -668016000, -652892400, -636566400, -620838000, -605116800, -589388400, -573667200, -557938800, -542217600, -526489200, -510768000, -495039600, -478713600, -463590000, -447264000, -431535600, -415814400, -400086000, -384364800, -368636400, -352915200, -337186800, -321465600, -305737200, -289411200, -273682800, -257961600, -242233200, -226512000, -210783600, -195062400, -179334000, -163612800, -147884400, -131558400, -116434800, -100108800, -84380400, -68659200, -52930800, -37209600, -21481200, -5760000, 9968400, 25689600, 41418000, 57744000, 73472400, 89193600, 104922000, 120643200, 126694800, 154512000, 162378000, 183542400, 199270800, 215596800 }
    typeOffsets:intvector { -25200, 0, -25200, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "SystemV" }
    finalRaw:int { -25200 }
    finalYear:int { 1977 }
  } //Z#607
  /* SystemV/PST8 */ :table {
    typeOffsets:intvector { -28800, 0 }
  } //Z#608
  /* SystemV/PST8PDT */ :table {
    transPre32:intvector { -1, 2096209696, -1, 2111930896, -1, 2127659296, -1, 2143380496 }
    trans:intvector { -2135858400, -2120137200, -2104408800, -2088687600, -2072959200, -2056633200, -2040904800, -2025183600, -2009455200, -1993734000, -1978005600, -1962284400, -1946556000, -1930834800, -1915106400, -1898780400, -1883656800, -1867330800, -1851602400, -1835881200, -1820152800, -1804431600, -1788703200, -1772982000, -1757253600, -1741532400, -1725804000, -1709478000, -1693749600, -1678028400, -1662300000, -1646578800, -1630850400, -1615129200, -1599400800, -1583679600, -1567951200, -1551625200, -1536501600, -1520175600, -1504447200, -1488726000, -1472997600, -1457276400, -1441548000, -1425826800, -1410098400, -1394377200, -1378648800, -1362322800, -1347199200, -1330873200, -1315144800, -1299423600, -1283695200, -1267974000, -1252245600, -1236524400, -1220796000, -1205074800, -1189346400, -1173020400, -1157292000, -1141570800, -1125842400, -1110121200, -1094392800, -1078671600, -1062943200, -1047222000, -1031493600, -1015167600, -1000044000, -983718000, -967989600, -952268400, -936540000, -920818800, -905090400, -889369200, -873640800, -857919600, -842191200, -825865200, -810136800, -794415600, -778687200, -762966000, -747237600, -731516400, -715788000, -700066800, -684338400, -668012400, -652888800, -636562800, -620834400, -605113200, -589384800, -573663600, -557935200, -542214000, -526485600, -510764400, -495036000, -478710000, -463586400, -447260400, -431532000, -415810800, -400082400, -384361200, -368632800, -352911600, -337183200, -321462000, -305733600, -289407600, -273679200, -257958000, -242229600, -226508400, -210780000, -195058800, -179330400, -163609200, -147880800, -131554800, -116431200, -100105200, -84376800, -68655600, -52927200, -37206000, -21477600, -5756400, 9972000, 25693200, 41421600, 57747600, 73476000, 89197200, 104925600, 120646800, 126698400, 154515600, 162381600, 183546000, 199274400, 215600400 }
    typeOffsets:intvector { -28800, 0, -28800, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "SystemV" }
    finalRaw:int { -28800 }
    finalYear:int { 1977 }
  } //Z#609
  /* SystemV/YST9 */ :table {
    typeOffsets:intvector { -32400, 0 }
  } //Z#610
  /* SystemV/YST9YDT */ :table {
    transPre32:intvector { -1, 2096213296, -1, 2111934496, -1, 2127662896, -1, 2143384096 }
    trans:intvector { -2135854800, -2120133600, -2104405200, -2088684000, -2072955600, -2056629600, -2040901200, -2025180000, -2009451600, -1993730400, -1978002000, -1962280800, -1946552400, -1930831200, -1915102800, -1898776800, -1883653200, -1867327200, -1851598800, -1835877600, -1820149200, -1804428000, -1788699600, -1772978400, -1757250000, -1741528800, -1725800400, -1709474400, -1693746000, -1678024800, -1662296400, -1646575200, -1630846800, -1615125600, -1599397200, -1583676000, -1567947600, -1551621600, -1536498000, -1520172000, -1504443600, -1488722400, -1472994000, -1457272800, -1441544400, -1425823200, -1410094800, -1394373600, -1378645200, -1362319200, -1347195600, -1330869600, -1315141200, -1299420000, -1283691600, -1267970400, -1252242000, -1236520800, -1220792400, -1205071200, -1189342800, -1173016800, -1157288400, -1141567200, -1125838800, -1110117600, -1094389200, -1078668000, -1062939600, -1047218400, -1031490000, -1015164000, -1000040400, -983714400, -967986000, -952264800, -936536400, -920815200, -905086800, -889365600, -873637200, -857916000, -842187600, -825861600, -810133200, -794412000, -778683600, -762962400, -747234000, -731512800, -715784400, -700063200, -684334800, -668008800, -652885200, -636559200, -620830800, -605109600, -589381200, -573660000, -557931600, -542210400, -526482000, -510760800, -495032400, -478706400, -463582800, -447256800, -431528400, -415807200, -400078800, -384357600, -368629200, -352908000, -337179600, -321458400, -305730000, -289404000, -273675600, -257954400, -242226000, -226504800, -210776400, -195055200, -179326800, -163605600, -147877200, -131551200, -116427600, -100101600, -84373200, -68652000, -52923600, -37202400, -21474000, -5752800, 9975600, 25696800, 41425200, 57751200, 73479600, 89200800, 104929200, 120650400, 126702000, 154519200, 162385200, 183549600, 199278000, 215604000 }
    typeOffsets:intvector { -32400, 0, -32400, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "SystemV" }
    finalRaw:int { -32400 }
    finalYear:int { 1977 }
  } //Z#611
  /* Turkey */ :int { 457 } //Z#612
  /* UCT */ :int { 433 } //Z#613
  /* US/Alaska */ :int { 60 } //Z#614
  /* US/Aleutian */ :int { 59 } //Z#615
  /* US/Arizona */ :int { 184 } //Z#616
  /* US/Central */ :int { 98 } //Z#617
  /* US/East-Indiana */ :int { 131 } //Z#618
  /* US/Eastern */ :int { 173 } //Z#619
  /* US/Hawaii */ :int { 565 } //Z#620
  /* US/Indiana-Starke */ :int { 132 } //Z#621
  /* US/Michigan */ :int { 110 } //Z#622
  /* US/Mountain */ :int { 109 } //Z#623
  /* US/Pacific */ :int { 151 } //Z#624
  /* US/Pacific-New */ :int { 151 } //Z#625
  /* US/Samoa */ :int { 577 } //Z#626
  /* UTC */ :int { 434 } //Z#627
  /* Universal */ :int { 434 } //Z#628
  /* VST */ :int { 271 } //Z#629
  /* W-SU */ :int { 471 } //Z#630
  /* WET */ :table {
    trans:intvector { 228877200, 243997200, 260326800, 276051600, 291776400, 307501200, 323830800, 338950800, 354675600, 370400400, 386125200, 401850000, 417574800, 433299600, 449024400, 465354000, 481078800, 496803600, 512528400, 528253200, 543978000, 559702800, 575427600, 591152400, 606877200, 622602000, 638326800, 654656400, 670381200, 686106000, 701830800, 717555600, 733280400, 749005200, 764730000, 780454800, 796179600, 811904400, 828234000, 846378000 }
    typeOffsets:intvector { 0, 0, 0, 3600 }
    typeMap:bin { "01000100010001000100010001000100010001000100010001000100010001000100010001000100" }
    finalRule { "EU" }
    finalRaw:int { 0 }
    finalYear:int { 1997 }
  } //Z#631
  /* Zulu */ :int { 434 } //Z#632
 }
 Names {
    "ACT","AET","AGT","ART","AST","Africa/Abidjan","Africa/Accra" // 6
    ,"Africa/Addis_Ababa","Africa/Algiers","Africa/Asmara" // 9
    ,"Africa/Asmera","Africa/Bamako","Africa/Bangui","Africa/Banjul" // 13
    ,"Africa/Bissau","Africa/Blantyre","Africa/Brazzaville" // 16
    ,"Africa/Bujumbura","Africa/Cairo","Africa/Casablanca" // 19
    ,"Africa/Ceuta","Africa/Conakry","Africa/Dakar","Africa/Dar_es_Salaam" // 23
    ,"Africa/Djibouti","Africa/Douala","Africa/El_Aaiun" // 26
    ,"Africa/Freetown","Africa/Gaborone","Africa/Harare" // 29
    ,"Africa/Johannesburg","Africa/Juba","Africa/Kampala" // 32
    ,"Africa/Khartoum","Africa/Kigali","Africa/Kinshasa" // 35
    ,"Africa/Lagos","Africa/Libreville","Africa/Lome","Africa/Luanda" // 39
    ,"Africa/Lubumbashi","Africa/Lusaka","Africa/Malabo" // 42
    ,"Africa/Maputo","Africa/Maseru","Africa/Mbabane","Africa/Mogadishu" // 46
    ,"Africa/Monrovia","Africa/Nairobi","Africa/Ndjamena" // 49
    ,"Africa/Niamey","Africa/Nouakchott","Africa/Ouagadougou" // 52
    ,"Africa/Porto-Novo","Africa/Sao_Tome","Africa/Timbuktu" // 55
    ,"Africa/Tripoli","Africa/Tunis","Africa/Windhoek" // 58
    ,"America/Adak","America/Anchorage","America/Anguilla" // 61
    ,"America/Antigua","America/Araguaina","America/Argentina/Buenos_Aires" // 64
    ,"America/Argentina/Catamarca","America/Argentina/ComodRivadavia" // 66
    ,"America/Argentina/Cordoba","America/Argentina/Jujuy" // 68
    ,"America/Argentina/La_Rioja","America/Argentina/Mendoza" // 70
    ,"America/Argentina/Rio_Gallegos","America/Argentina/Salta" // 72
    ,"America/Argentina/San_Juan","America/Argentina/San_Luis" // 74
    ,"America/Argentina/Tucuman","America/Argentina/Ushuaia" // 76
    ,"America/Aruba","America/Asuncion","America/Atikokan" // 79
    ,"America/Atka","America/Bahia","America/Bahia_Banderas" // 82
    ,"America/Barbados","America/Belem","America/Belize" // 85
    ,"America/Blanc-Sablon","America/Boa_Vista","America/Bogota" // 88
    ,"America/Boise","America/Buenos_Aires","America/Cambridge_Bay" // 91
    ,"America/Campo_Grande","America/Cancun","America/Caracas" // 94
    ,"America/Catamarca","America/Cayenne","America/Cayman" // 97
    ,"America/Chicago","America/Chihuahua","America/Coral_Harbour" // 100
    ,"America/Cordoba","America/Costa_Rica","America/Creston" // 103
    ,"America/Cuiaba","America/Curacao","America/Danmarkshavn" // 106
    ,"America/Dawson","America/Dawson_Creek","America/Denver" // 109
    ,"America/Detroit","America/Dominica","America/Edmonton" // 112
    ,"America/Eirunepe","America/El_Salvador","America/Ensenada" // 115
    ,"America/Fort_Nelson","America/Fort_Wayne","America/Fortaleza" // 118
    ,"America/Glace_Bay","America/Godthab","America/Goose_Bay" // 121
    ,"America/Grand_Turk","America/Grenada","America/Guadeloupe" // 124
    ,"America/Guatemala","America/Guayaquil","America/Guyana" // 127
    ,"America/Halifax","America/Havana","America/Hermosillo" // 130
    ,"America/Indiana/Indianapolis","America/Indiana/Knox" // 132
    ,"America/Indiana/Marengo","America/Indiana/Petersburg" // 134
    ,"America/Indiana/Tell_City","America/Indiana/Vevay" // 136
    ,"America/Indiana/Vincennes","America/Indiana/Winamac" // 138
    ,"America/Indianapolis","America/Inuvik","America/Iqaluit" // 141
    ,"America/Jamaica","America/Jujuy","America/Juneau" // 144
    ,"America/Kentucky/Louisville","America/Kentucky/Monticello" // 146
    ,"America/Knox_IN","America/Kralendijk","America/La_Paz" // 149
    ,"America/Lima","America/Los_Angeles","America/Louisville" // 152
    ,"America/Lower_Princes","America/Maceio","America/Managua" // 155
    ,"America/Manaus","America/Marigot","America/Martinique" // 158
    ,"America/Matamoros","America/Mazatlan","America/Mendoza" // 161
    ,"America/Menominee","America/Merida","America/Metlakatla" // 164
    ,"America/Mexico_City","America/Miquelon","America/Moncton" // 167
    ,"America/Monterrey","America/Montevideo","America/Montreal" // 170
    ,"America/Montserrat","America/Nassau","America/New_York" // 173
    ,"America/Nipigon","America/Nome","America/Noronha" // 176
    ,"America/North_Dakota/Beulah","America/North_Dakota/Center" // 178
    ,"America/North_Dakota/New_Salem","America/Ojinaga" // 180
    ,"America/Panama","America/Pangnirtung","America/Paramaribo" // 183
    ,"America/Phoenix","America/Port-au-Prince","America/Port_of_Spain" // 186
    ,"America/Porto_Acre","America/Porto_Velho","America/Puerto_Rico" // 189
    ,"America/Punta_Arenas","America/Rainy_River","America/Rankin_Inlet" // 192
    ,"America/Recife","America/Regina","America/Resolute" // 195
    ,"America/Rio_Branco","America/Rosario","America/Santa_Isabel" // 198
    ,"America/Santarem","America/Santiago","America/Santo_Domingo" // 201
    ,"America/Sao_Paulo","America/Scoresbysund","America/Shiprock" // 204
    ,"America/Sitka","America/St_Barthelemy","America/St_Johns" // 207
    ,"America/St_Kitts","America/St_Lucia","America/St_Thomas" // 210
    ,"America/St_Vincent","America/Swift_Current","America/Tegucigalpa" // 213
    ,"America/Thule","America/Thunder_Bay","America/Tijuana" // 216
    ,"America/Toronto","America/Tortola","America/Vancouver" // 219
    ,"America/Virgin","America/Whitehorse","America/Winnipeg" // 222
    ,"America/Yakutat","America/Yellowknife","Antarctica/Casey" // 225
    ,"Antarctica/Davis","Antarctica/DumontDUrville","Antarctica/Macquarie" // 228
    ,"Antarctica/Mawson","Antarctica/McMurdo","Antarctica/Palmer" // 231
    ,"Antarctica/Rothera","Antarctica/South_Pole","Antarctica/Syowa" // 234
    ,"Antarctica/Troll","Antarctica/Vostok","Arctic/Longyearbyen" // 237
    ,"Asia/Aden","Asia/Almaty","Asia/Amman","Asia/Anadyr" // 241
    ,"Asia/Aqtau","Asia/Aqtobe","Asia/Ashgabat","Asia/Ashkhabad" // 245
    ,"Asia/Atyrau","Asia/Baghdad","Asia/Bahrain","Asia/Baku" // 249
    ,"Asia/Bangkok","Asia/Barnaul","Asia/Beirut","Asia/Bishkek" // 253
    ,"Asia/Brunei","Asia/Calcutta","Asia/Chita","Asia/Choibalsan" // 257
    ,"Asia/Chongqing","Asia/Chungking","Asia/Colombo","Asia/Dacca" // 261
    ,"Asia/Damascus","Asia/Dhaka","Asia/Dili","Asia/Dubai" // 265
    ,"Asia/Dushanbe","Asia/Famagusta","Asia/Gaza","Asia/Harbin" // 269
    ,"Asia/Hebron","Asia/Ho_Chi_Minh","Asia/Hong_Kong" // 272
    ,"Asia/Hovd","Asia/Irkutsk","Asia/Istanbul","Asia/Jakarta" // 276
    ,"Asia/Jayapura","Asia/Jerusalem","Asia/Kabul","Asia/Kamchatka" // 280
    ,"Asia/Karachi","Asia/Kashgar","Asia/Kathmandu","Asia/Katmandu" // 284
    ,"Asia/Khandyga","Asia/Kolkata","Asia/Krasnoyarsk" // 287
    ,"Asia/Kuala_Lumpur","Asia/Kuching","Asia/Kuwait","Asia/Macao" // 291
    ,"Asia/Macau","Asia/Magadan","Asia/Makassar","Asia/Manila" // 295
    ,"Asia/Muscat","Asia/Nicosia","Asia/Novokuznetsk","Asia/Novosibirsk" // 299
    ,"Asia/Omsk","Asia/Oral","Asia/Phnom_Penh","Asia/Pontianak" // 303
    ,"Asia/Pyongyang","Asia/Qatar","Asia/Qyzylorda","Asia/Rangoon" // 307
    ,"Asia/Riyadh","Asia/Saigon","Asia/Sakhalin","Asia/Samarkand" // 311
    ,"Asia/Seoul","Asia/Shanghai","Asia/Singapore","Asia/Srednekolymsk" // 315
    ,"Asia/Taipei","Asia/Tashkent","Asia/Tbilisi","Asia/Tehran" // 319
    ,"Asia/Tel_Aviv","Asia/Thimbu","Asia/Thimphu","Asia/Tokyo" // 323
    ,"Asia/Tomsk","Asia/Ujung_Pandang","Asia/Ulaanbaatar" // 326
    ,"Asia/Ulan_Bator","Asia/Urumqi","Asia/Ust-Nera","Asia/Vientiane" // 330
    ,"Asia/Vladivostok","Asia/Yakutsk","Asia/Yangon","Asia/Yekaterinburg" // 334
    ,"Asia/Yerevan","Atlantic/Azores","Atlantic/Bermuda" // 337
    ,"Atlantic/Canary","Atlantic/Cape_Verde","Atlantic/Faeroe" // 340
    ,"Atlantic/Faroe","Atlantic/Jan_Mayen","Atlantic/Madeira" // 343
    ,"Atlantic/Reykjavik","Atlantic/South_Georgia","Atlantic/St_Helena" // 346
    ,"Atlantic/Stanley","Australia/ACT","Australia/Adelaide" // 349
    ,"Australia/Brisbane","Australia/Broken_Hill","Australia/Canberra" // 352
    ,"Australia/Currie","Australia/Darwin","Australia/Eucla" // 355
    ,"Australia/Hobart","Australia/LHI","Australia/Lindeman" // 358
    ,"Australia/Lord_Howe","Australia/Melbourne","Australia/NSW" // 361
    ,"Australia/North","Australia/Perth","Australia/Queensland" // 364
    ,"Australia/South","Australia/Sydney","Australia/Tasmania" // 367
    ,"Australia/Victoria","Australia/West","Australia/Yancowinna" // 370
    ,"BET","BST","Brazil/Acre","Brazil/DeNoronha","Brazil/East" // 375
    ,"Brazil/West","CAT","CET","CNT","CST","CST6CDT","CTT" // 382
    ,"Canada/Atlantic","Canada/Central","Canada/East-Saskatchewan" // 385
    ,"Canada/Eastern","Canada/Mountain","Canada/Newfoundland" // 388
    ,"Canada/Pacific","Canada/Saskatchewan","Canada/Yukon" // 391
    ,"Chile/Continental","Chile/EasterIsland","Cuba","EAT" // 395
    ,"ECT","EET","EST","EST5EDT","Egypt","Eire","Etc/GMT" // 402
    ,"Etc/GMT+0","Etc/GMT+1","Etc/GMT+10","Etc/GMT+11" // 406
    ,"Etc/GMT+12","Etc/GMT+2","Etc/GMT+3","Etc/GMT+4","Etc/GMT+5" // 411
    ,"Etc/GMT+6","Etc/GMT+7","Etc/GMT+8","Etc/GMT+9","Etc/GMT-0" // 416
    ,"Etc/GMT-1","Etc/GMT-10","Etc/GMT-11","Etc/GMT-12" // 420
    ,"Etc/GMT-13","Etc/GMT-14","Etc/GMT-2","Etc/GMT-3" // 424
    ,"Etc/GMT-4","Etc/GMT-5","Etc/GMT-6","Etc/GMT-7","Etc/GMT-8" // 429
    ,"Etc/GMT-9","Etc/GMT0","Etc/Greenwich","Etc/UCT","Etc/UTC" // 434
    ,"Etc/Universal","Etc/Unknown","Etc/Zulu","Europe/Amsterdam" // 438
    ,"Europe/Andorra","Europe/Astrakhan","Europe/Athens" // 441
    ,"Europe/Belfast","Europe/Belgrade","Europe/Berlin" // 444
    ,"Europe/Bratislava","Europe/Brussels","Europe/Bucharest" // 447
    ,"Europe/Budapest","Europe/Busingen","Europe/Chisinau" // 450
    ,"Europe/Copenhagen","Europe/Dublin","Europe/Gibraltar" // 453
    ,"Europe/Guernsey","Europe/Helsinki","Europe/Isle_of_Man" // 456
    ,"Europe/Istanbul","Europe/Jersey","Europe/Kaliningrad" // 459
    ,"Europe/Kiev","Europe/Kirov","Europe/Lisbon","Europe/Ljubljana" // 463
    ,"Europe/London","Europe/Luxembourg","Europe/Madrid" // 466
    ,"Europe/Malta","Europe/Mariehamn","Europe/Minsk","Europe/Monaco" // 470
    ,"Europe/Moscow","Europe/Nicosia","Europe/Oslo","Europe/Paris" // 474
    ,"Europe/Podgorica","Europe/Prague","Europe/Riga","Europe/Rome" // 478
    ,"Europe/Samara","Europe/San_Marino","Europe/Sarajevo" // 481
    ,"Europe/Saratov","Europe/Simferopol","Europe/Skopje" // 484
    ,"Europe/Sofia","Europe/Stockholm","Europe/Tallinn" // 487
    ,"Europe/Tirane","Europe/Tiraspol","Europe/Ulyanovsk" // 490
    ,"Europe/Uzhgorod","Europe/Vaduz","Europe/Vatican" // 493
    ,"Europe/Vienna","Europe/Vilnius","Europe/Volgograd" // 496
    ,"Europe/Warsaw","Europe/Zagreb","Europe/Zaporozhye" // 499
    ,"Europe/Zurich","Factory","GB","GB-Eire","GMT","GMT+0" // 505
    ,"GMT-0","GMT0","Greenwich","HST","Hongkong","IET" // 511
    ,"IST","Iceland","Indian/Antananarivo","Indian/Chagos" // 515
    ,"Indian/Christmas","Indian/Cocos","Indian/Comoro" // 518
    ,"Indian/Kerguelen","Indian/Mahe","Indian/Maldives" // 521
    ,"Indian/Mauritius","Indian/Mayotte","Indian/Reunion" // 524
    ,"Iran","Israel","JST","Jamaica","Japan","Kwajalein" // 530
    ,"Libya","MET","MIT","MST","MST7MDT","Mexico/BajaNorte" // 536
    ,"Mexico/BajaSur","Mexico/General","NET","NST","NZ" // 541
    ,"NZ-CHAT","Navajo","PLT","PNT","PRC","PRT","PST","PST8PDT" // 549
    ,"Pacific/Apia","Pacific/Auckland","Pacific/Bougainville" // 552
    ,"Pacific/Chatham","Pacific/Chuuk","Pacific/Easter" // 555
    ,"Pacific/Efate","Pacific/Enderbury","Pacific/Fakaofo" // 558
    ,"Pacific/Fiji","Pacific/Funafuti","Pacific/Galapagos" // 561
    ,"Pacific/Gambier","Pacific/Guadalcanal","Pacific/Guam" // 564
    ,"Pacific/Honolulu","Pacific/Johnston","Pacific/Kiritimati" // 567
    ,"Pacific/Kosrae","Pacific/Kwajalein","Pacific/Majuro" // 570
    ,"Pacific/Marquesas","Pacific/Midway","Pacific/Nauru" // 573
    ,"Pacific/Niue","Pacific/Norfolk","Pacific/Noumea" // 576
    ,"Pacific/Pago_Pago","Pacific/Palau","Pacific/Pitcairn" // 579
    ,"Pacific/Pohnpei","Pacific/Ponape","Pacific/Port_Moresby" // 582
    ,"Pacific/Rarotonga","Pacific/Saipan","Pacific/Samoa" // 585
    ,"Pacific/Tahiti","Pacific/Tarawa","Pacific/Tongatapu" // 588
    ,"Pacific/Truk","Pacific/Wake","Pacific/Wallis","Pacific/Yap" // 592
    ,"Poland","Portugal","ROC","ROK","SST","Singapore" // 598
    ,"SystemV/AST4","SystemV/AST4ADT","SystemV/CST6","SystemV/CST6CDT" // 602
    ,"SystemV/EST5","SystemV/EST5EDT","SystemV/HST10","SystemV/MST7" // 606
    ,"SystemV/MST7MDT","SystemV/PST8","SystemV/PST8PDT" // 609
    ,"SystemV/YST9","SystemV/YST9YDT","Turkey","UCT","US/Alaska" // 614
    ,"US/Aleutian","US/Arizona","US/Central","US/East-Indiana" // 618
    ,"US/Eastern","US/Hawaii","US/Indiana-Starke","US/Michigan" // 622
    ,"US/Mountain","US/Pacific","US/Pacific-New","US/Samoa" // 626
    ,"UTC","Universal","VST","W-SU","WET","Zulu" // 632
 }
 Rules { 
  AN:intvector {
    9, 1, -1, 7200, 1, 3, 1, -1, 7200, 1, 3600
  } //_#0
  AS:intvector {
    9, 1, -1, 7200, 1, 3, 1, -1, 7200, 1, 3600
  } //_#1
  AT:intvector {
    9, 1, -1, 7200, 1, 3, 1, -1, 7200, 1, 3600
  } //_#2
  AV:intvector {
    9, 1, -1, 7200, 1, 3, 1, -1, 7200, 1, 3600
  } //_#3
  Brazil:intvector {
    10, 1, -1, 0, 0, 1, 15, -1, 0, 0, 3600
  } //_#4
  C-Eur:intvector {
    2, -31, -1, 7200, 1, 9, -31, -1, 7200, 1, 3600
  } //_#5
  Canada:intvector {
    2, 8, -1, 7200, 0, 10, 1, -1, 7200, 0, 3600
  } //_#6
  Chatham:intvector {
    8, -30, -1, 9900, 1, 3, 1, -1, 9900, 1, 3600
  } //_#7
  Chile:intvector {
    7, 9, -1, 14400, 2, 4, 9, -1, 10800, 2, 3600
  } //_#8
  Cuba:intvector {
    2, 8, -1, 0, 1, 10, 1, -1, 0, 1, 3600
  } //_#9
  EU:intvector {
    2, -31, -1, 3600, 2, 9, -31, -1, 3600, 2, 3600
  } //_#10
  EUAsia:intvector {
    2, -31, -1, 3600, 2, 9, -31, -1, 3600, 2, 3600
  } //_#11
  Eire:intvector {
    9, -31, -1, 3600, 2, 2, -31, -1, 3600, 2, -3600
  } //_#12
  Fiji:intvector {
    10, 1, -1, 7200, 0, 0, 14, -1, 10800, 0, 3600
  } //_#13
  Haiti:intvector {
    2, 8, -1, 7200, 0, 10, 1, -1, 7200, 0, 3600
  } //_#14
  Iran:intvector {
    2, 21, 0, 0, 0, 8, 21, 0, 0, 0, 3600
  } //_#15
  Jordan:intvector {
    2, -31, -5, 86400, 0, 9, -31, -6, 0, 1, 3600
  } //_#16
  LH:intvector {
    9, 1, -1, 7200, 0, 3, 1, -1, 7200, 0, 1800
  } //_#17
  Lebanon:intvector {
    2, -31, -1, 0, 0, 9, -31, -1, 0, 0, 3600
  } //_#18
  Mexico:intvector {
    3, 1, -1, 7200, 0, 9, -31, -1, 7200, 0, 3600
  } //_#19
  Moldova:intvector {
    2, -31, -1, 7200, 0, 9, -31, -1, 10800, 0, 3600
  } //_#20
  Morocco:intvector {
    2, -31, -1, 7200, 0, 9, -31, -1, 10800, 0, 3600
  } //_#21
  NZ:intvector {
    8, -30, -1, 7200, 1, 3, 1, -1, 7200, 1, 3600
  } //_#22
  Palestine:intvector {
    2, 22, -7, 3600, 0, 9, -31, -7, 3600, 0, 3600
  } //_#23
  Para:intvector {
    9, 1, -1, 0, 0, 2, 22, -1, 0, 0, 3600
  } //_#24
  Syria:intvector {
    2, -31, -6, 0, 0, 9, -31, -6, 0, 0, 3600
  } //_#25
  SystemV:intvector {
    3, -30, -1, 7200, 0, 9, -31, -1, 7200, 0, 3600
  } //_#26
  Thule:intvector {
    2, 8, -1, 7200, 0, 10, 1, -1, 7200, 0, 3600
  } //_#27
  Troll:intvector {
    2, -31, -1, 3600, 2, 9, -31, -1, 3600, 2, 7200
  } //_#28
  US:intvector {
    2, 8, -1, 7200, 0, 10, 1, -1, 7200, 0, 3600
  } //_#29
  WS:intvector {
    8, -30, -1, 10800, 0, 3, 1, -1, 14400, 0, 3600
  } //_#30
  Zion:intvector {
    2, 23, -6, 7200, 0, 9, -31, -1, 7200, 0, 3600
  } //_#31
 }
 Regions:array {
  "AU", //Z#0 ACT
  "AU", //Z#1 AET
  "AR", //Z#2 AGT
  "EG", //Z#3 ART
  "US", //Z#4 AST
  "CI", //Z#5 Africa/Abidjan
  "GH", //Z#6 Africa/Accra
  "ET", //Z#7 Africa/Addis_Ababa
  "DZ", //Z#8 Africa/Algiers
  "ER", //Z#9 Africa/Asmara
  "ER", //Z#10 Africa/Asmera
  "ML", //Z#11 Africa/Bamako
  "CF", //Z#12 Africa/Bangui
  "GM", //Z#13 Africa/Banjul
  "GW", //Z#14 Africa/Bissau
  "MW", //Z#15 Africa/Blantyre
  "CG", //Z#16 Africa/Brazzaville
  "BI", //Z#17 Africa/Bujumbura
  "EG", //Z#18 Africa/Cairo
  "MA", //Z#19 Africa/Casablanca
  "ES", //Z#20 Africa/Ceuta
  "GN", //Z#21 Africa/Conakry
  "SN", //Z#22 Africa/Dakar
  "TZ", //Z#23 Africa/Dar_es_Salaam
  "DJ", //Z#24 Africa/Djibouti
  "CM", //Z#25 Africa/Douala
  "EH", //Z#26 Africa/El_Aaiun
  "SL", //Z#27 Africa/Freetown
  "BW", //Z#28 Africa/Gaborone
  "ZW", //Z#29 Africa/Harare
  "ZA", //Z#30 Africa/Johannesburg
  "SS", //Z#31 Africa/Juba
  "UG", //Z#32 Africa/Kampala
  "SD", //Z#33 Africa/Khartoum
  "RW", //Z#34 Africa/Kigali
  "CD", //Z#35 Africa/Kinshasa
  "NG", //Z#36 Africa/Lagos
  "GA", //Z#37 Africa/Libreville
  "TG", //Z#38 Africa/Lome
  "AO", //Z#39 Africa/Luanda
  "CD", //Z#40 Africa/Lubumbashi
  "ZM", //Z#41 Africa/Lusaka
  "GQ", //Z#42 Africa/Malabo
  "MZ", //Z#43 Africa/Maputo
  "LS", //Z#44 Africa/Maseru
  "SZ", //Z#45 Africa/Mbabane
  "SO", //Z#46 Africa/Mogadishu
  "LR", //Z#47 Africa/Monrovia
  "KE", //Z#48 Africa/Nairobi
  "TD", //Z#49 Africa/Ndjamena
  "NE", //Z#50 Africa/Niamey
  "MR", //Z#51 Africa/Nouakchott
  "BF", //Z#52 Africa/Ouagadougou
  "BJ", //Z#53 Africa/Porto-Novo
  "ST", //Z#54 Africa/Sao_Tome
  "CI", //Z#55 Africa/Timbuktu
  "LY", //Z#56 Africa/Tripoli
  "TN", //Z#57 Africa/Tunis
  "NA", //Z#58 Africa/Windhoek
  "US", //Z#59 America/Adak
  "US", //Z#60 America/Anchorage
  "AI", //Z#61 America/Anguilla
  "AG", //Z#62 America/Antigua
  "BR", //Z#63 America/Araguaina
  "AR", //Z#64 America/Argentina/Buenos_Aires
  "AR", //Z#65 America/Argentina/Catamarca
  "AR", //Z#66 America/Argentina/ComodRivadavia
  "AR", //Z#67 America/Argentina/Cordoba
  "AR", //Z#68 America/Argentina/Jujuy
  "AR", //Z#69 America/Argentina/La_Rioja
  "AR", //Z#70 America/Argentina/Mendoza
  "AR", //Z#71 America/Argentina/Rio_Gallegos
  "AR", //Z#72 America/Argentina/Salta
  "AR", //Z#73 America/Argentina/San_Juan
  "AR", //Z#74 America/Argentina/San_Luis
  "AR", //Z#75 America/Argentina/Tucuman
  "AR", //Z#76 America/Argentina/Ushuaia
  "AW", //Z#77 America/Aruba
  "PY", //Z#78 America/Asuncion
  "CA", //Z#79 America/Atikokan
  "US", //Z#80 America/Atka
  "BR", //Z#81 America/Bahia
  "MX", //Z#82 America/Bahia_Banderas
  "BB", //Z#83 America/Barbados
  "BR", //Z#84 America/Belem
  "BZ", //Z#85 America/Belize
  "CA", //Z#86 America/Blanc-Sablon
  "BR", //Z#87 America/Boa_Vista
  "CO", //Z#88 America/Bogota
  "US", //Z#89 America/Boise
  "AR", //Z#90 America/Buenos_Aires
  "CA", //Z#91 America/Cambridge_Bay
  "BR", //Z#92 America/Campo_Grande
  "MX", //Z#93 America/Cancun
  "VE", //Z#94 America/Caracas
  "AR", //Z#95 America/Catamarca
  "GF", //Z#96 America/Cayenne
  "KY", //Z#97 America/Cayman
  "US", //Z#98 America/Chicago
  "MX", //Z#99 America/Chihuahua
  "CA", //Z#100 America/Coral_Harbour
  "AR", //Z#101 America/Cordoba
  "CR", //Z#102 America/Costa_Rica
  "CA", //Z#103 America/Creston
  "BR", //Z#104 America/Cuiaba
  "CW", //Z#105 America/Curacao
  "GL", //Z#106 America/Danmarkshavn
  "CA", //Z#107 America/Dawson
  "CA", //Z#108 America/Dawson_Creek
  "US", //Z#109 America/Denver
  "US", //Z#110 America/Detroit
  "DM", //Z#111 America/Dominica
  "CA", //Z#112 America/Edmonton
  "BR", //Z#113 America/Eirunepe
  "SV", //Z#114 America/El_Salvador
  "MX", //Z#115 America/Ensenada
  "CA", //Z#116 America/Fort_Nelson
  "US", //Z#117 America/Fort_Wayne
  "BR", //Z#118 America/Fortaleza
  "CA", //Z#119 America/Glace_Bay
  "GL", //Z#120 America/Godthab
  "CA", //Z#121 America/Goose_Bay
  "TC", //Z#122 America/Grand_Turk
  "GD", //Z#123 America/Grenada
  "GP", //Z#124 America/Guadeloupe
  "GT", //Z#125 America/Guatemala
  "EC", //Z#126 America/Guayaquil
  "GY", //Z#127 America/Guyana
  "CA", //Z#128 America/Halifax
  "CU", //Z#129 America/Havana
  "MX", //Z#130 America/Hermosillo
  "US", //Z#131 America/Indiana/Indianapolis
  "US", //Z#132 America/Indiana/Knox
  "US", //Z#133 America/Indiana/Marengo
  "US", //Z#134 America/Indiana/Petersburg
  "US", //Z#135 America/Indiana/Tell_City
  "US", //Z#136 America/Indiana/Vevay
  "US", //Z#137 America/Indiana/Vincennes
  "US", //Z#138 America/Indiana/Winamac
  "US", //Z#139 America/Indianapolis
  "CA", //Z#140 America/Inuvik
  "CA", //Z#141 America/Iqaluit
  "JM", //Z#142 America/Jamaica
  "AR", //Z#143 America/Jujuy
  "US", //Z#144 America/Juneau
  "US", //Z#145 America/Kentucky/Louisville
  "US", //Z#146 America/Kentucky/Monticello
  "US", //Z#147 America/Knox_IN
  "BQ", //Z#148 America/Kralendijk
  "BO", //Z#149 America/La_Paz
  "PE", //Z#150 America/Lima
  "US", //Z#151 America/Los_Angeles
  "US", //Z#152 America/Louisville
  "SX", //Z#153 America/Lower_Princes
  "BR", //Z#154 America/Maceio
  "NI", //Z#155 America/Managua
  "BR", //Z#156 America/Manaus
  "MF", //Z#157 America/Marigot
  "MQ", //Z#158 America/Martinique
  "MX", //Z#159 America/Matamoros
  "MX", //Z#160 America/Mazatlan
  "AR", //Z#161 America/Mendoza
  "US", //Z#162 America/Menominee
  "MX", //Z#163 America/Merida
  "US", //Z#164 America/Metlakatla
  "MX", //Z#165 America/Mexico_City
  "PM", //Z#166 America/Miquelon
  "CA", //Z#167 America/Moncton
  "MX", //Z#168 America/Monterrey
  "UY", //Z#169 America/Montevideo
  "CA", //Z#170 America/Montreal
  "MS", //Z#171 America/Montserrat
  "BS", //Z#172 America/Nassau
  "US", //Z#173 America/New_York
  "CA", //Z#174 America/Nipigon
  "US", //Z#175 America/Nome
  "BR", //Z#176 America/Noronha
  "US", //Z#177 America/North_Dakota/Beulah
  "US", //Z#178 America/North_Dakota/Center
  "US", //Z#179 America/North_Dakota/New_Salem
  "MX", //Z#180 America/Ojinaga
  "PA", //Z#181 America/Panama
  "CA", //Z#182 America/Pangnirtung
  "SR", //Z#183 America/Paramaribo
  "US", //Z#184 America/Phoenix
  "HT", //Z#185 America/Port-au-Prince
  "TT", //Z#186 America/Port_of_Spain
  "BR", //Z#187 America/Porto_Acre
  "BR", //Z#188 America/Porto_Velho
  "PR", //Z#189 America/Puerto_Rico
  "CL", //Z#190 America/Punta_Arenas
  "CA", //Z#191 America/Rainy_River
  "CA", //Z#192 America/Rankin_Inlet
  "BR", //Z#193 America/Recife
  "CA", //Z#194 America/Regina
  "CA", //Z#195 America/Resolute
  "BR", //Z#196 America/Rio_Branco
  "AR", //Z#197 America/Rosario
  "MX", //Z#198 America/Santa_Isabel
  "BR", //Z#199 America/Santarem
  "CL", //Z#200 America/Santiago
  "DO", //Z#201 America/Santo_Domingo
  "BR", //Z#202 America/Sao_Paulo
  "GL", //Z#203 America/Scoresbysund
  "US", //Z#204 America/Shiprock
  "US", //Z#205 America/Sitka
  "BL", //Z#206 America/St_Barthelemy
  "CA", //Z#207 America/St_Johns
  "KN", //Z#208 America/St_Kitts
  "LC", //Z#209 America/St_Lucia
  "VI", //Z#210 America/St_Thomas
  "VC", //Z#211 America/St_Vincent
  "CA", //Z#212 America/Swift_Current
  "HN", //Z#213 America/Tegucigalpa
  "GL", //Z#214 America/Thule
  "CA", //Z#215 America/Thunder_Bay
  "MX", //Z#216 America/Tijuana
  "CA", //Z#217 America/Toronto
  "VG", //Z#218 America/Tortola
  "CA", //Z#219 America/Vancouver
  "TT", //Z#220 America/Virgin
  "CA", //Z#221 America/Whitehorse
  "CA", //Z#222 America/Winnipeg
  "US", //Z#223 America/Yakutat
  "CA", //Z#224 America/Yellowknife
  "AQ", //Z#225 Antarctica/Casey
  "AQ", //Z#226 Antarctica/Davis
  "AQ", //Z#227 Antarctica/DumontDUrville
  "AU", //Z#228 Antarctica/Macquarie
  "AQ", //Z#229 Antarctica/Mawson
  "AQ", //Z#230 Antarctica/McMurdo
  "AQ", //Z#231 Antarctica/Palmer
  "AQ", //Z#232 Antarctica/Rothera
  "NZ", //Z#233 Antarctica/South_Pole
  "AQ", //Z#234 Antarctica/Syowa
  "AQ", //Z#235 Antarctica/Troll
  "AQ", //Z#236 Antarctica/Vostok
  "SJ", //Z#237 Arctic/Longyearbyen
  "YE", //Z#238 Asia/Aden
  "KZ", //Z#239 Asia/Almaty
  "JO", //Z#240 Asia/Amman
  "RU", //Z#241 Asia/Anadyr
  "KZ", //Z#242 Asia/Aqtau
  "KZ", //Z#243 Asia/Aqtobe
  "TM", //Z#244 Asia/Ashgabat
  "TM", //Z#245 Asia/Ashkhabad
  "KZ", //Z#246 Asia/Atyrau
  "IQ", //Z#247 Asia/Baghdad
  "BH", //Z#248 Asia/Bahrain
  "AZ", //Z#249 Asia/Baku
  "TH", //Z#250 Asia/Bangkok
  "RU", //Z#251 Asia/Barnaul
  "LB", //Z#252 Asia/Beirut
  "KG", //Z#253 Asia/Bishkek
  "BN", //Z#254 Asia/Brunei
  "IN", //Z#255 Asia/Calcutta
  "RU", //Z#256 Asia/Chita
  "MN", //Z#257 Asia/Choibalsan
  "CN", //Z#258 Asia/Chongqing
  "CN", //Z#259 Asia/Chungking
  "LK", //Z#260 Asia/Colombo
  "BD", //Z#261 Asia/Dacca
  "SY", //Z#262 Asia/Damascus
  "BD", //Z#263 Asia/Dhaka
  "TL", //Z#264 Asia/Dili
  "AE", //Z#265 Asia/Dubai
  "TJ", //Z#266 Asia/Dushanbe
  "CY", //Z#267 Asia/Famagusta
  "PS", //Z#268 Asia/Gaza
  "CN", //Z#269 Asia/Harbin
  "PS", //Z#270 Asia/Hebron
  "VN", //Z#271 Asia/Ho_Chi_Minh
  "HK", //Z#272 Asia/Hong_Kong
  "MN", //Z#273 Asia/Hovd
  "RU", //Z#274 Asia/Irkutsk
  "TR", //Z#275 Asia/Istanbul
  "ID", //Z#276 Asia/Jakarta
  "ID", //Z#277 Asia/Jayapura
  "IL", //Z#278 Asia/Jerusalem
  "AF", //Z#279 Asia/Kabul
  "RU", //Z#280 Asia/Kamchatka
  "PK", //Z#281 Asia/Karachi
  "CN", //Z#282 Asia/Kashgar
  "NP", //Z#283 Asia/Kathmandu
  "NP", //Z#284 Asia/Katmandu
  "RU", //Z#285 Asia/Khandyga
  "IN", //Z#286 Asia/Kolkata
  "RU", //Z#287 Asia/Krasnoyarsk
  "MY", //Z#288 Asia/Kuala_Lumpur
  "MY", //Z#289 Asia/Kuching
  "KW", //Z#290 Asia/Kuwait
  "MO", //Z#291 Asia/Macao
  "MO", //Z#292 Asia/Macau
  "RU", //Z#293 Asia/Magadan
  "ID", //Z#294 Asia/Makassar
  "PH", //Z#295 Asia/Manila
  "OM", //Z#296 Asia/Muscat
  "CY", //Z#297 Asia/Nicosia
  "RU", //Z#298 Asia/Novokuznetsk
  "RU", //Z#299 Asia/Novosibirsk
  "RU", //Z#300 Asia/Omsk
  "KZ", //Z#301 Asia/Oral
  "KH", //Z#302 Asia/Phnom_Penh
  "ID", //Z#303 Asia/Pontianak
  "KP", //Z#304 Asia/Pyongyang
  "QA", //Z#305 Asia/Qatar
  "KZ", //Z#306 Asia/Qyzylorda
  "MM", //Z#307 Asia/Rangoon
  "SA", //Z#308 Asia/Riyadh
  "VN", //Z#309 Asia/Saigon
  "RU", //Z#310 Asia/Sakhalin
  "UZ", //Z#311 Asia/Samarkand
  "KR", //Z#312 Asia/Seoul
  "CN", //Z#313 Asia/Shanghai
  "SG", //Z#314 Asia/Singapore
  "RU", //Z#315 Asia/Srednekolymsk
  "TW", //Z#316 Asia/Taipei
  "UZ", //Z#317 Asia/Tashkent
  "GE", //Z#318 Asia/Tbilisi
  "IR", //Z#319 Asia/Tehran
  "IL", //Z#320 Asia/Tel_Aviv
  "BT", //Z#321 Asia/Thimbu
  "BT", //Z#322 Asia/Thimphu
  "JP", //Z#323 Asia/Tokyo
  "RU", //Z#324 Asia/Tomsk
  "ID", //Z#325 Asia/Ujung_Pandang
  "MN", //Z#326 Asia/Ulaanbaatar
  "MN", //Z#327 Asia/Ulan_Bator
  "CN", //Z#328 Asia/Urumqi
  "RU", //Z#329 Asia/Ust-Nera
  "LA", //Z#330 Asia/Vientiane
  "RU", //Z#331 Asia/Vladivostok
  "RU", //Z#332 Asia/Yakutsk
  "MM", //Z#333 Asia/Yangon
  "RU", //Z#334 Asia/Yekaterinburg
  "AM", //Z#335 Asia/Yerevan
  "PT", //Z#336 Atlantic/Azores
  "BM", //Z#337 Atlantic/Bermuda
  "ES", //Z#338 Atlantic/Canary
  "CV", //Z#339 Atlantic/Cape_Verde
  "FO", //Z#340 Atlantic/Faeroe
  "FO", //Z#341 Atlantic/Faroe
  "NO", //Z#342 Atlantic/Jan_Mayen
  "PT", //Z#343 Atlantic/Madeira
  "IS", //Z#344 Atlantic/Reykjavik
  "GS", //Z#345 Atlantic/South_Georgia
  "SH", //Z#346 Atlantic/St_Helena
  "FK", //Z#347 Atlantic/Stanley
  "AU", //Z#348 Australia/ACT
  "AU", //Z#349 Australia/Adelaide
  "AU", //Z#350 Australia/Brisbane
  "AU", //Z#351 Australia/Broken_Hill
  "AU", //Z#352 Australia/Canberra
  "AU", //Z#353 Australia/Currie
  "AU", //Z#354 Australia/Darwin
  "AU", //Z#355 Australia/Eucla
  "AU", //Z#356 Australia/Hobart
  "AU", //Z#357 Australia/LHI
  "AU", //Z#358 Australia/Lindeman
  "AU", //Z#359 Australia/Lord_Howe
  "AU", //Z#360 Australia/Melbourne
  "AU", //Z#361 Australia/NSW
  "AU", //Z#362 Australia/North
  "AU", //Z#363 Australia/Perth
  "AU", //Z#364 Australia/Queensland
  "AU", //Z#365 Australia/South
  "AU", //Z#366 Australia/Sydney
  "AU", //Z#367 Australia/Tasmania
  "AU", //Z#368 Australia/Victoria
  "AU", //Z#369 Australia/West
  "AU", //Z#370 Australia/Yancowinna
  "BR", //Z#371 BET
  "BD", //Z#372 BST
  "BR", //Z#373 Brazil/Acre
  "BR", //Z#374 Brazil/DeNoronha
  "BR", //Z#375 Brazil/East
  "BR", //Z#376 Brazil/West
  "MZ", //Z#377 CAT
  "001",//Z#378 CET
  "CA", //Z#379 CNT
  "US", //Z#380 CST
  "001",//Z#381 CST6CDT
  "CN", //Z#382 CTT
  "CA", //Z#383 Canada/Atlantic
  "CA", //Z#384 Canada/Central
  "CA", //Z#385 Canada/East-Saskatchewan
  "CA", //Z#386 Canada/Eastern
  "CA", //Z#387 Canada/Mountain
  "CA", //Z#388 Canada/Newfoundland
  "CA", //Z#389 Canada/Pacific
  "CA", //Z#390 Canada/Saskatchewan
  "CA", //Z#391 Canada/Yukon
  "CL", //Z#392 Chile/Continental
  "CL", //Z#393 Chile/EasterIsland
  "CU", //Z#394 Cuba
  "KE", //Z#395 EAT
  "FR", //Z#396 ECT
  "001",//Z#397 EET
  "001",//Z#398 EST
  "001",//Z#399 EST5EDT
  "EG", //Z#400 Egypt
  "IE", //Z#401 Eire
  "001",//Z#402 Etc/GMT
  "001",//Z#403 Etc/GMT+0
  "001",//Z#404 Etc/GMT+1
  "001",//Z#405 Etc/GMT+10
  "001",//Z#406 Etc/GMT+11
  "001",//Z#407 Etc/GMT+12
  "001",//Z#408 Etc/GMT+2
  "001",//Z#409 Etc/GMT+3
  "001",//Z#410 Etc/GMT+4
  "001",//Z#411 Etc/GMT+5
  "001",//Z#412 Etc/GMT+6
  "001",//Z#413 Etc/GMT+7
  "001",//Z#414 Etc/GMT+8
  "001",//Z#415 Etc/GMT+9
  "001",//Z#416 Etc/GMT-0
  "001",//Z#417 Etc/GMT-1
  "001",//Z#418 Etc/GMT-10
  "001",//Z#419 Etc/GMT-11
  "001",//Z#420 Etc/GMT-12
  "001",//Z#421 Etc/GMT-13
  "001",//Z#422 Etc/GMT-14
  "001",//Z#423 Etc/GMT-2
  "001",//Z#424 Etc/GMT-3
  "001",//Z#425 Etc/GMT-4
  "001",//Z#426 Etc/GMT-5
  "001",//Z#427 Etc/GMT-6
  "001",//Z#428 Etc/GMT-7
  "001",//Z#429 Etc/GMT-8
  "001",//Z#430 Etc/GMT-9
  "001",//Z#431 Etc/GMT0
  "001",//Z#432 Etc/Greenwich
  "001",//Z#433 Etc/UCT
  "001",//Z#434 Etc/UTC
  "001",//Z#435 Etc/Universal
  "001",//Z#436 Etc/Unknown
  "001",//Z#437 Etc/Zulu
  "NL", //Z#438 Europe/Amsterdam
  "AD", //Z#439 Europe/Andorra
  "RU", //Z#440 Europe/Astrakhan
  "GR", //Z#441 Europe/Athens
  "GB", //Z#442 Europe/Belfast
  "RS", //Z#443 Europe/Belgrade
  "DE", //Z#444 Europe/Berlin
  "SK", //Z#445 Europe/Bratislava
  "BE", //Z#446 Europe/Brussels
  "RO", //Z#447 Europe/Bucharest
  "HU", //Z#448 Europe/Budapest
  "DE", //Z#449 Europe/Busingen
  "MD", //Z#450 Europe/Chisinau
  "DK", //Z#451 Europe/Copenhagen
  "IE", //Z#452 Europe/Dublin
  "GI", //Z#453 Europe/Gibraltar
  "GG", //Z#454 Europe/Guernsey
  "FI", //Z#455 Europe/Helsinki
  "IM", //Z#456 Europe/Isle_of_Man
  "TR", //Z#457 Europe/Istanbul
  "JE", //Z#458 Europe/Jersey
  "RU", //Z#459 Europe/Kaliningrad
  "UA", //Z#460 Europe/Kiev
  "RU", //Z#461 Europe/Kirov
  "PT", //Z#462 Europe/Lisbon
  "SI", //Z#463 Europe/Ljubljana
  "GB", //Z#464 Europe/London
  "LU", //Z#465 Europe/Luxembourg
  "ES", //Z#466 Europe/Madrid
  "MT", //Z#467 Europe/Malta
  "AX", //Z#468 Europe/Mariehamn
  "BY", //Z#469 Europe/Minsk
  "MC", //Z#470 Europe/Monaco
  "RU", //Z#471 Europe/Moscow
  "CY", //Z#472 Europe/Nicosia
  "NO", //Z#473 Europe/Oslo
  "FR", //Z#474 Europe/Paris
  "ME", //Z#475 Europe/Podgorica
  "CZ", //Z#476 Europe/Prague
  "LV", //Z#477 Europe/Riga
  "IT", //Z#478 Europe/Rome
  "RU", //Z#479 Europe/Samara
  "SM", //Z#480 Europe/San_Marino
  "BA", //Z#481 Europe/Sarajevo
  "RU", //Z#482 Europe/Saratov
  "UA", //Z#483 Europe/Simferopol
  "MK", //Z#484 Europe/Skopje
  "BG", //Z#485 Europe/Sofia
  "SE", //Z#486 Europe/Stockholm
  "EE", //Z#487 Europe/Tallinn
  "AL", //Z#488 Europe/Tirane
  "MD", //Z#489 Europe/Tiraspol
  "RU", //Z#490 Europe/Ulyanovsk
  "UA", //Z#491 Europe/Uzhgorod
  "LI", //Z#492 Europe/Vaduz
  "VA", //Z#493 Europe/Vatican
  "AT", //Z#494 Europe/Vienna
  "LT", //Z#495 Europe/Vilnius
  "RU", //Z#496 Europe/Volgograd
  "PL", //Z#497 Europe/Warsaw
  "HR", //Z#498 Europe/Zagreb
  "UA", //Z#499 Europe/Zaporozhye
  "CH", //Z#500 Europe/Zurich
  "001",//Z#501 Factory
  "GB", //Z#502 GB
  "GB", //Z#503 GB-Eire
  "001",//Z#504 GMT
  "001",//Z#505 GMT+0
  "001",//Z#506 GMT-0
  "001",//Z#507 GMT0
  "001",//Z#508 Greenwich
  "001",//Z#509 HST
  "HK", //Z#510 Hongkong
  "US", //Z#511 IET
  "IN", //Z#512 IST
  "IS", //Z#513 Iceland
  "MG", //Z#514 Indian/Antananarivo
  "IO", //Z#515 Indian/Chagos
  "CX", //Z#516 Indian/Christmas
  "CC", //Z#517 Indian/Cocos
  "KM", //Z#518 Indian/Comoro
  "TF", //Z#519 Indian/Kerguelen
  "SC", //Z#520 Indian/Mahe
  "MV", //Z#521 Indian/Maldives
  "MU", //Z#522 Indian/Mauritius
  "YT", //Z#523 Indian/Mayotte
  "RE", //Z#524 Indian/Reunion
  "IR", //Z#525 Iran
  "IL", //Z#526 Israel
  "JP", //Z#527 JST
  "JM", //Z#528 Jamaica
  "JP", //Z#529 Japan
  "MH", //Z#530 Kwajalein
  "LY", //Z#531 Libya
  "001",//Z#532 MET
  "WS", //Z#533 MIT
  "001",//Z#534 MST
  "001",//Z#535 MST7MDT
  "MX", //Z#536 Mexico/BajaNorte
  "MX", //Z#537 Mexico/BajaSur
  "MX", //Z#538 Mexico/General
  "AM", //Z#539 NET
  "NZ", //Z#540 NST
  "NZ", //Z#541 NZ
  "NZ", //Z#542 NZ-CHAT
  "US", //Z#543 Navajo
  "PK", //Z#544 PLT
  "US", //Z#545 PNT
  "CN", //Z#546 PRC
  "PR", //Z#547 PRT
  "US", //Z#548 PST
  "001",//Z#549 PST8PDT
  "WS", //Z#550 Pacific/Apia
  "NZ", //Z#551 Pacific/Auckland
  "PG", //Z#552 Pacific/Bougainville
  "NZ", //Z#553 Pacific/Chatham
  "FM", //Z#554 Pacific/Chuuk
  "CL", //Z#555 Pacific/Easter
  "VU", //Z#556 Pacific/Efate
  "KI", //Z#557 Pacific/Enderbury
  "TK", //Z#558 Pacific/Fakaofo
  "FJ", //Z#559 Pacific/Fiji
  "TV", //Z#560 Pacific/Funafuti
  "EC", //Z#561 Pacific/Galapagos
  "PF", //Z#562 Pacific/Gambier
  "SB", //Z#563 Pacific/Guadalcanal
  "GU", //Z#564 Pacific/Guam
  "US", //Z#565 Pacific/Honolulu
  "UM", //Z#566 Pacific/Johnston
  "KI", //Z#567 Pacific/Kiritimati
  "FM", //Z#568 Pacific/Kosrae
  "MH", //Z#569 Pacific/Kwajalein
  "MH", //Z#570 Pacific/Majuro
  "PF", //Z#571 Pacific/Marquesas
  "UM", //Z#572 Pacific/Midway
  "NR", //Z#573 Pacific/Nauru
  "NU", //Z#574 Pacific/Niue
  "NF", //Z#575 Pacific/Norfolk
  "NC", //Z#576 Pacific/Noumea
  "AS", //Z#577 Pacific/Pago_Pago
  "PW", //Z#578 Pacific/Palau
  "PN", //Z#579 Pacific/Pitcairn
  "FM", //Z#580 Pacific/Pohnpei
  "FM", //Z#581 Pacific/Ponape
  "PG", //Z#582 Pacific/Port_Moresby
  "CK", //Z#583 Pacific/Rarotonga
  "MP", //Z#584 Pacific/Saipan
  "AS", //Z#585 Pacific/Samoa
  "PF", //Z#586 Pacific/Tahiti
  "KI", //Z#587 Pacific/Tarawa
  "TO", //Z#588 Pacific/Tongatapu
  "FM", //Z#589 Pacific/Truk
  "UM", //Z#590 Pacific/Wake
  "WF", //Z#591 Pacific/Wallis
  "FM", //Z#592 Pacific/Yap
  "PL", //Z#593 Poland
  "PT", //Z#594 Portugal
  "TW", //Z#595 ROC
  "KR", //Z#596 ROK
  "SB", //Z#597 SST
  "SG", //Z#598 Singapore
  "001",//Z#599 SystemV/AST4
  "001",//Z#600 SystemV/AST4ADT
  "001",//Z#601 SystemV/CST6
  "001",//Z#602 SystemV/CST6CDT
  "001",//Z#603 SystemV/EST5
  "001",//Z#604 SystemV/EST5EDT
  "001",//Z#605 SystemV/HST10
  "001",//Z#606 SystemV/MST7
  "001",//Z#607 SystemV/MST7MDT
  "001",//Z#608 SystemV/PST8
  "001",//Z#609 SystemV/PST8PDT
  "001",//Z#610 SystemV/YST9
  "001",//Z#611 SystemV/YST9YDT
  "TR", //Z#612 Turkey
  "001",//Z#613 UCT
  "US", //Z#614 US/Alaska
  "US", //Z#615 US/Aleutian
  "US", //Z#616 US/Arizona
  "US", //Z#617 US/Central
  "US", //Z#618 US/East-Indiana
  "US", //Z#619 US/Eastern
  "US", //Z#620 US/Hawaii
  "US", //Z#621 US/Indiana-Starke
  "US", //Z#622 US/Michigan
  "US", //Z#623 US/Mountain
  "US", //Z#624 US/Pacific
  "US", //Z#625 US/Pacific-New
  "AS", //Z#626 US/Samoa
  "001",//Z#627 UTC
  "001",//Z#628 Universal
  "VN", //Z#629 VST
  "RU", //Z#630 W-SU
  "001",//Z#631 WET
  "001",//Z#632 Zulu
 }
}