[corlib] Update list of known lcids and update CLRD data. Fixes #46456
authorMarek Safar <marek.safar@gmail.com>
Mon, 21 Nov 2016 15:49:30 +0000 (16:49 +0100)
committerMarek Safar <marek.safar@gmail.com>
Tue, 22 Nov 2016 13:35:59 +0000 (14:35 +0100)
31 files changed:
mcs/class/corlib/Test/System.Globalization/CultureInfoTest.cs
mcs/class/corlib/Test/System.Globalization/TextInfoTest.cs
mcs/class/corlib/Test/System/DateTimeOffsetTest.cs
mono/metadata/culture-info-tables.h
mono/metadata/culture-info.h
mono/metadata/locales.c
tools/locale-builder/CLDR/common/main/ha_Latn.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/ha_Latn_NG.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/mn_Cyrl.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/nso.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/nso_ZA.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/st.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/st_ZA.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tg.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tg_Cyrl.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tg_Cyrl_TJ.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tn.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tn_BW.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tn_ZA.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/ts.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/ts_ZA.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/tzm_Latn.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/xh.xml [new file with mode: 0644]
tools/locale-builder/CLDR/common/main/xh_ZA.xml [new file with mode: 0644]
tools/locale-builder/DateTimeFormatEntry.cs
tools/locale-builder/Driver.cs
tools/locale-builder/Entry.cs
tools/locale-builder/Makefile.am
tools/locale-builder/Patterns.cs
tools/locale-builder/README
tools/locale-builder/lcids.xml

index b2a720650f5f748208d1780beb7f1f1280fb6667..766065b67be9be639b222f3e074ec7d2bc867779 100644 (file)
@@ -608,10 +608,7 @@ namespace MonoTests.System.Globalization
                [ExpectedException (typeof (CultureNotFoundException))]
                public void CultureNotFound ()
                {
-                       // that's how the 'locale' gets defined for a device with an English UI
-                       // and it's international settings set for Hong Kong
-                       // https://bugzilla.xamarin.com/show_bug.cgi?id=3471
-                       new CultureInfo ("en-HK");
+                       new CultureInfo ("en-HKX");
                }
 
                [Test]
index ee77c153de2dac97953359172d171d988a7f4301..265ae5c49d3684fe273527948c65a8b3d146ca7c 100644 (file)
@@ -149,13 +149,17 @@ public class TextInfoTest {
                        case 0x63:      // ps
                        case 90:        // syr
                        case 101:       // div
+                       case 128:       // ur
                        case 1025:      // ar-SA
                        case 1037:      // he-IL
                        case 1056:      // ur-PK
                        case 1065:      // ra-IR
                        case 1114:      // syr-SY
                        case 1125:      // div-MV
+                       case 1152:      // ug-CN
                        case 2049:      // ar-IQ
+                       case 2080:      // ur-IN
+                       case 2118:      // pa-Arab-PK
                        case 3073:      // ar-EG
                        case 4097:      // ar-LY
                        case 5121:      // ar-DZ
@@ -170,6 +174,7 @@ public class TextInfoTest {
                        case 14337:     // ar-AE
                        case 15361:     // ar-BH
                        case 16385:     // ar-QA
+                       case 31814:     // pa-Arab
                        case 0x463: // ps-AF
                                Assert.IsTrue (ci.TextInfo.IsRightToLeft, ci.Name);
                                break;
index 23df8da07c87f30f875654ed7516548b92e7ff3d..7a65b9f31eef5d4deeb3b771d2a2efe0325c6167 100644 (file)
@@ -171,12 +171,10 @@ namespace MonoTests.System {
                public void ToStringWithFormatAndCulture ()
                {
                        DateTimeOffset dto = new DateTimeOffset (2007, 11, 1, 9, 0, 0, new TimeSpan(-7, 0, 0));
-                       string format = "dddd, MMM dd yyyy HH:mm:ss zzz";
-                       if (CultureInfo.CurrentCulture == CultureInfo.InvariantCulture)
-                               Assert.AreEqual ("Thursday, Nov 01 2007 09:00:00 -07:00", dto.ToString (format, null as DateTimeFormatInfo), "ts1");
+                       const string format = "dddd, MMM dd yyyy HH:mm:ss zzz";
                        Assert.AreEqual ("Thursday, Nov 01 2007 09:00:00 -07:00", dto.ToString (format, CultureInfo.InvariantCulture), "ts2");
                        Assert.AreEqual ("jeudi, nov. 01 2007 09:00:00 -07:00", dto.ToString (format, new CultureInfo ("fr-FR")), "ts3");
-                       Assert.AreEqual ("jueves, Nov. 01 2007 09:00:00 -07:00", dto.ToString (format, new CultureInfo ("es-ES")), "ts4");
+                       Assert.AreEqual ("jueves, nov. 01 2007 09:00:00 -07:00", dto.ToString (format, new CultureInfo ("es-ES")), "ts4");
                }
 
                [Test]
index e47caff203a13952d1c5cd24b05fe6d7a7f388fd..f57b07b98762fc69b62676eb93391b43ef12025e 100644 (file)
 #define MONO_METADATA_CULTURE_INFO_TABLES 1
 
 
-#define NUM_CULTURE_ENTRIES 281
-#define NUM_REGION_ENTRIES 117
+#define NUM_CULTURE_ENTRIES 339
+#define NUM_REGION_ENTRIES 136
 
 
 static const DateTimeFormatEntry datetime_format_entries [] = {
-       {1, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, 0, 6, 185, 187, {189,198,0,0,0,0,0,0,0,0,0,0,0,0},{209,222,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 296, 307, {318, 331, 352, 367, 378, 397, 408}, {421, 426, 431, 436, 441, 446, 451}, {456, 459, 462, 465, 468, 459, 465}, {471, 484, 501, 510, 521, 528, 535, 542, 555, 574, 591, 606, 0}, {471, 484, 501, 510, 521, 528, 535, 542, 555, 574, 591, 606, 0}, {623, 629, 501, 639, 521, 528, 535, 647, 655, 665, 673, 683, 0}, {623, 629, 501, 639, 521, 528, 535, 647, 655, 665, 673, 683, 0}, 2, 1, 691, 187, {693,708,724,740,0,0,0,0,0,0,0,0,0,0},{757,776,794,819,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{856,0,0,0,0,0,0,0}},
-       {289, 872, 878, {884, 893, 901, 909, 918, 925, 935}, {944, 948, 952, 956, 960, 964, 968}, {972, 975, 978, 981, 984, 987, 990}, {993, 999, 1006, 1012, 1018, 1023, 1028, 1035, 1041, 1050, 1058, 1067, 0}, {993, 999, 1006, 1012, 1018, 1023, 1028, 1035, 1041, 1050, 1058, 1067, 0}, {1076, 1081, 1006, 1086, 1018, 1023, 1091, 1096, 1100, 1105, 1110, 1115, 0}, {1076, 1081, 1006, 1086, 1018, 1023, 1091, 1096, 1100, 1105, 1110, 1115, 0}, 2, 1, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{1140,1163,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {1288, 1295, 1302, 1309, 1316, 1323, 1330}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1518,1527,1536,1545,1556,1567,1578,1585,1592,1599,0,0,0,0},{1608,1630,1658,1686,1701,0,0,0,0,0},{843,251,1722,1730,0,0,0,0,0,0,0,0},{848,269,1739,1750,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {1288, 1295, 1302, 1309, 1316, 1323, 1330}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1518,1527,1536,1545,1556,1567,1578,1585,1592,1599,0,0,0,0},{1608,1630,1658,1686,1701,0,0,0,0,0},{843,251,1722,1730,0,0,0,0,0,0,0,0},{848,269,1739,1750,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {1812, 1820, 1823, {1826, 1834, 1844, 1852, 1860, 1869, 1876}, {1883, 1886, 1889, 1893, 1896, 1900, 1904}, {1907, 1909, 1911, 1914, 1916, 1909, 1914}, {1919, 1925, 1931, 1939, 1945, 1953, 1961, 1971, 1977, 1985, 1993, 2002, 0}, {2011, 2017, 2024, 2032, 2038, 2046, 2054, 2064, 1977, 2070, 2078, 2088, 0}, {2097, 2101, 2106, 2111, 2115, 2120, 2125, 2130, 2134, 2140, 2146, 2150, 0}, {2097, 2101, 2106, 2111, 2115, 2120, 2125, 2130, 2134, 2140, 2146, 2150, 0}, 2, 1, 691, 187, {2154,2165,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {2217, 2225, 2232, 2240, 2247, 2255, 2262}, {2270, 2275, 2279, 2283, 2287, 2291, 2295}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 2325, 2331, 2337, 2341, 2346, 2351, 2358, 2368, 2376, 2385, 0}, {2310, 2317, 2325, 2331, 2337, 2341, 2346, 2351, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {2440,2451,1556,2460,0,0,0,0,0,0,0,0,0,0},{2194,0,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 2471, 2477, {2484, 2492, 2499, 2508, 2517, 2528, 2536}, {2544, 2547, 2550, 2553, 2556, 2559, 2562}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 2, 1, 691, 187, {2154,2696,1556,2705,0,0,0,0,0,0,0,0,0,0},{2719,2194,2738,0,0,0,0,0,0,0},{251,2751,0,0,0,0,0,0,0,0,0,0},{269,2763,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 2778, 2785, {2792, 2807, 2822, 2833, 2848, 2861, 2880}, {2895, 2902, 2909, 2916, 2923, 2930, 2937}, {2944, 2947, 2950, 2950, 2953, 2953, 2956}, {2959, 2980, 3003, 3018, 3035, 3046, 3061, 3076, 3095, 3118, 3137, 3156, 0}, {3177, 3198, 3221, 3236, 3253, 3264, 3279, 3294, 3313, 3336, 3355, 3374, 0}, {3395, 3402, 3409, 3416, 3423, 3430, 3439, 3448, 3455, 3462, 3469, 3476, 0}, {3395, 3402, 3409, 3416, 3423, 3430, 3439, 3448, 3455, 3462, 3469, 3476, 0}, 2, 1, 185, 187, {1120,198,3483,189,3490,1556,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {3711,3720,3727,3736,1599,1556,3747,0,0,0,0,0,0,0},{3757,3776,3789,3808,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3821, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 1, 185, 187, {198,189,4149,3483,4157,2451,2696,1556,0,0,0,0,0,0},{4164,4192,4219,0,0,0,0,0,0,0},{843,251,4241,4246,4252,0,0,0,0,0,0,0},{848,269,4260,4268,4277,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {1812, 4303, 4307, {4311, 4323, 4335, 4345, 4359, 4369, 4381}, {4392, 4395, 4398, 4401, 4404, 4407, 4410}, {1914, 2300, 2302, 4413, 2302, 1909, 2308}, {4415, 4424, 4433, 4443, 4452, 4461, 4470, 4480, 4487, 4495, 4503, 4513, 0}, {4522, 4533, 4544, 4556, 4567, 4578, 4589, 4601, 4610, 4620, 4630, 4642, 0}, {4653, 4659, 4665, 4672, 4678, 4684, 4690, 4697, 4701, 4706, 4711, 4718, 0}, {4653, 4659, 4665, 4672, 4678, 4684, 4690, 4697, 4701, 4706, 4711, 4718, 0}, 2, 1, 691, 691, {4724,0,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{4241,0,0,0,0,0,0,0,0,0,0,0},{4260,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 0, 1, 185, 187, {198,189,2696,2451,1556,0,0,0,0,0,0,0,0,0},{4935,3520,4952,0,0,0,0,0,0,0},{251,843,4246,4961,4971,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 4979, 4992, {5003, 5021, 5035, 5053, 5071, 5089, 5105}, {5119, 5131, 5143, 5155, 5167, 5179, 5191}, {5198, 5203, 5208, 5213, 5218, 5223, 5228}, {5233, 5244, 5257, 5264, 5275, 5282, 5291, 5300, 5313, 5326, 5341, 5354, 0}, {5233, 5244, 5257, 5264, 5275, 5282, 5291, 5300, 5313, 5326, 5341, 5354, 0}, {5365, 5374, 5257, 5383, 5275, 5392, 5401, 5410, 5419, 5428, 5437, 5446, 0}, {5365, 5374, 5257, 5383, 5275, 5392, 5401, 5410, 5419, 5428, 5437, 5446, 0}, 0, 0, 185, 187, {198,5455,189,209,2451,2440,5468,1556,5481,5498,0,0,0,0},{5508,5455,5526,5548,5481,0,0,0,0,0},{251,242,0,0,0,0,0,0,0,0,0,0},{269,257,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {5569, 5577, 5581, {5585, 5595, 5603, 5608, 5615, 5628, 5636}, {3927, 5644, 4413, 5646, 5650, 1909, 5653}, {3927, 5644, 4413, 5657, 5650, 1909, 5657}, {5660, 5668, 5677, 5686, 5695, 5702, 5710, 5718, 5728, 5739, 2376, 2385, 0}, {5660, 5668, 5677, 5686, 5695, 5702, 5710, 5718, 5728, 5739, 2376, 2385, 0}, {5748, 5753, 5759, 5766, 5772, 5778, 5784, 5790, 5795, 5802, 1110, 5807, 0}, {5748, 5753, 5759, 5766, 5772, 5778, 5784, 5790, 5795, 5802, 1110, 5807, 0}, 2, 1, 5812, 187, {5815,5829,0,0,0,0,0,0,0,0,0,0,0,0},{5842,5862,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{5876,0,0,0,0,0,0,0}},
-       {1812, 5887, 5892, {5897, 5908, 5919, 5933, 5947, 5959, 5971}, {5983, 5988, 5994, 6000, 6006, 6011, 6017}, {1914, 2300, 6022, 2300, 2306, 2306, 2308}, {6025, 6033, 4837, 6042, 6049, 6054, 6061, 6068, 2358, 5739, 6076, 6086, 0}, {6025, 6033, 4837, 6042, 6049, 6054, 6061, 6068, 2358, 5739, 6076, 6086, 0}, {5748, 1081, 4795, 6095, 6049, 5778, 5784, 6100, 6107, 5802, 6112, 1115, 0}, {5748, 1081, 4795, 6095, 6049, 5778, 5784, 6100, 6107, 5802, 6112, 1115, 0}, 2, 1, 691, 187, {4724,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {6130, 6139, 6147, 6156, 6167, 6176, 6185}, {6192, 6196, 2402, 6200, 6204, 6208, 6212}, {2565, 2308, 2300, 2300, 6216, 3927, 1914}, {6218, 6226, 3943, 6235, 6242, 6249, 6256, 3972, 6263, 6273, 6281, 6290, 0}, {6299, 6307, 4032, 6316, 6323, 6330, 6337, 4055, 6344, 6354, 1058, 6362, 0}, {6371, 2398, 2402, 2406, 6375, 6379, 6383, 6387, 6391, 6395, 2430, 6399, 0}, {6371, 2398, 2402, 2406, 6375, 6379, 6383, 6387, 6391, 6395, 2430, 6399, 0}, 2, 1, 185, 187, {198,3490,189,6403,3483,0,0,0,0,0,0,0,0,0},{4935,6411,3520,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1195, 6420, 6427, {6434, 6444, 6454, 6464, 6474, 6484, 6494}, {1337, 6504, 6508, 6512, 6516, 6520, 6524}, {1337, 6504, 6508, 6512, 6516, 6520, 6524}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 185, 187, {1545,1599,1578,1518,1556,0,0,0,0,0,0,0,0,0},{1608,6555,6579,6606,6635,6659,6688,6708,0,0},{843,251,1722,1730,0,0,0,0,0,0,0,0},{848,269,1739,1750,0,0,0,0,0},{1762,6733,1791,0,0,0,0,0}},
-       {6751, 6761, 6768, {6775, 6785, 6795, 6805, 6815, 6825, 6835}, {6845, 6849, 6853, 6857, 6861, 6865, 6869}, {6845, 6849, 6853, 6857, 6861, 6865, 6869}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, 0, 0, 2438, 187, {1556,6936,1585,1527,0,0,0,0,0,0,0,0,0,0},{6945,6974,6998,7025,7047,7078,7104,7135,7161,7188},{1722,1730,843,251,0,0,0,0,0,0,0,0},{1739,1750,848,269,0,0,0,0,0},{7210,7227,7246,0,0,0,0,0}},
-       {289, 7261, 7266, {7271, 7278, 7286, 7294, 7303, 7313, 7321}, {7330, 4395, 7333, 7336, 7339, 7342, 7345}, {7348, 2300, 2565, 3643, 2565, 3927, 7348}, {7350, 7358, 7367, 2331, 7373, 2341, 2346, 7377, 2358, 2368, 2376, 2385, 0}, {7350, 7358, 7367, 2331, 7373, 2341, 2346, 7377, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 7386, 2406, 7373, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 7386, 2406, 7373, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {7390,4157,2451,189,2696,7399,1556,0,0,0,0,0,0,0},{4935,6411,3520,4952,0,0,0,0,0,0},{251,843,4241,7411,7423,0,0,0,0,0,0,0},{269,848,7435,7450,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {7465, 7261, 7266, {2217, 2225, 2232, 2240, 2247, 2255, 2262}, {7473, 7478, 7482, 7486, 7490, 7494, 7498}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 0, 0, 691, 691, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {7507, 7517, 7531, 7538, 7545, 7554, 1876}, {7562, 7569, 7574, 7578, 7583, 7588, 7592}, {1907, 1909, 3643, 7597, 7600, 1909, 1914}, {7602, 7611, 7616, 7623, 2337, 7633, 7642, 7649, 7659, 7669, 1993, 7682, 0}, {7692, 7701, 7708, 7714, 7723, 7728, 7736, 7742, 7751, 7761, 7775, 7785, 0}, {7793, 7797, 2402, 7801, 2337, 7805, 7809, 7813, 7817, 7821, 2146, 7826, 0}, {7793, 7797, 2402, 7801, 2337, 7805, 7809, 7813, 7817, 7821, 2146, 7826, 0}, 2, 1, 691, 187, {2154,0,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3821, 1820, 1823, {3833, 7830, 7844, 7857, 7870, 7883, 3880}, {6192, 7895, 7899, 7903, 7907, 7911, 7915}, {2565, 1914, 2302, 7920, 7920, 1914, 1914}, {7922, 7930, 7940, 1012, 7947, 7952, 7958, 4055, 7964, 7973, 7981, 7990, 0}, {7922, 7930, 7940, 1012, 7947, 7952, 7958, 4055, 7964, 7973, 7981, 7990, 0}, {2394, 7999, 2402, 8003, 4848, 2410, 2414, 6387, 6391, 8007, 2430, 8011, 0}, {2394, 7999, 2402, 8003, 4848, 2410, 2414, 6387, 6391, 8007, 2430, 8011, 0}, 0, 0, 185, 187, {198,189,1120,3483,2451,2440,4157,7390,2696,2154,7399,8015,4724,1556},{4164,4219,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {1812, 8022, 8025, {8028, 8037, 4748, 8047, 8055, 8063, 8072}, {8078, 8081, 4395, 8085, 8088, 8092, 1904}, {2565, 6216, 2300, 2300, 6216, 3927, 1914}, {8095, 8103, 4837, 8110, 8117, 8122, 8132, 8140, 8146, 8156, 2376, 2385, 0}, {8095, 8103, 4837, 8110, 8117, 8122, 8132, 8140, 8146, 8156, 2376, 2385, 0}, {8164, 8171, 4837, 4912, 8117, 8177, 8184, 8140, 8189, 1105, 1110, 5807, 0}, {8164, 8171, 4837, 4912, 8117, 8177, 8184, 8140, 8189, 1105, 1110, 5807, 0}, 2, 1, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{8195,8224,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {8241, 8251, 8256, 8263, 8272, 8276, 8283}, {8294, 8298, 3699, 8302, 8306, 8310, 8314}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {8319, 8328, 8338, 8345, 4848, 8353, 8359, 2351, 8365, 8376, 8386, 8396, 0}, {8319, 8328, 8338, 8345, 4848, 8353, 8359, 2351, 8365, 8376, 8386, 8396, 0}, {8406, 1081, 4795, 6095, 4848, 8411, 8416, 5790, 4923, 1105, 1110, 5807, 0}, {8406, 1081, 4795, 6095, 4848, 8411, 8416, 5790, 4923, 1105, 1110, 5807, 0}, 0, 1, 691, 187, {2154,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 8421, 8441, {8467, 8490, 352, 8513, 8524, 8539, 8554}, {8569, 8574, 8579, 8584, 8589, 8594, 8599}, {8604, 8607, 8604, 8610, 8613, 8607, 8610}, {8616, 8629, 8644, 8653, 8666, 8673, 8682, 8691, 8704, 8721, 8736, 8749, 0}, {8764, 8777, 8792, 8803, 8816, 8823, 8832, 8841, 8856, 8873, 8888, 8901, 0}, {8916, 8924, 8644, 8934, 8666, 8673, 8682, 8942, 8950, 8960, 8968, 8978, 0}, {8916, 8924, 8644, 8934, 8666, 8673, 8682, 8942, 8950, 8960, 8968, 8978, 0}, 0, 1, 691, 187, {2154,2696,8015,2440,189,0,0,0,0,0,0,0,0,0},{776,757,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {8986, 8995, 9007, 9014, 9022, 9032, 9038}, {9045, 9049, 9053, 9057, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {9085, 9095, 9104, 9112, 9120, 9128, 9135, 9142, 9150, 1993, 9156, 9164, 0}, {9173, 9183, 9192, 9200, 9208, 9216, 9223, 9230, 9239, 7775, 9245, 9255, 0}, {9264, 9268, 9273, 9278, 9282, 7809, 2130, 9286, 9290, 2146, 9294, 2150, 0}, {9264, 9268, 9273, 9278, 9282, 7809, 2130, 9286, 9290, 2146, 9294, 2150, 0}, 0, 1, 691, 187, {9298,9308,9316,9328,9340,9350,9360,1556,0,0,0,0,0,0},{9372,9386,9401,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {9421, 9429, 9438, 9445, 9452, 9461, 1876}, {1883, 1886, 9468, 1893, 9471, 9475, 1904}, {1907, 1909, 9478, 1914, 9480, 1909, 1914}, {5660, 5668, 9483, 6042, 9489, 9494, 9499, 2351, 2358, 5739, 2376, 2385, 0}, {9504, 9513, 7708, 9523, 9531, 9537, 9543, 9549, 9557, 9567, 9576, 9585, 0}, {2394, 2398, 2402, 2406, 9489, 9494, 9499, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 9489, 9494, 9499, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 691, 187, {2154,2165,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 9594, 9603, {9611, 9618, 9627, 9636, 9648, 9656, 9665}, {9675, 9679, 3699, 9684, 9689, 9693, 9697}, {2565, 5644, 2300, 2300, 9701, 1909, 1914}, {9703, 9709, 4837, 9716, 2337, 9722, 9730, 9737, 9743, 9751, 9757, 9765, 0}, {9703, 9709, 4837, 9716, 2337, 9722, 9730, 9737, 9743, 9751, 9757, 9765, 0}, {2651, 9773, 3699, 9777, 9781, 9785, 9789, 9793, 9697, 9797, 9801, 9806, 0}, {2651, 9773, 3699, 9777, 9781, 9785, 9789, 9793, 9697, 9797, 9801, 9806, 0}, 0, 1, 691, 187, {4724,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {9810, 9823, 9826, {9829, 9837, 9845, 2240, 2247, 2255, 9852}, {9860, 9865, 9870, 2283, 2287, 2291, 9874}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {7350, 7358, 4837, 2331, 2337, 2341, 2346, 9879, 2358, 2368, 2376, 2385, 0}, {7350, 7358, 4837, 2331, 2337, 2341, 2346, 9879, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {1556,6936,0,0,0,0,0,0,0,0,0,0,0,0},{9887,9905,0,0,0,0,0,0,0,0},{251,843,9928,0,0,0,0,0,0,0,0,0},{269,848,9938,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 185, 187, {1120,3483,189,198,1129,9951,1556,0,0,0,0,0,0,0},{3520,9963,9979,0,0,0,0,0,0,0},{843,251,3532,242,0,0,0,0,0,0,0,0},{848,269,3540,257,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 10021, 10026, {10030, 10036, 10046, 10052, 10063, 10073, 10078}, {10088, 10092, 10096, 10100, 10105, 10109, 10113}, {1909, 1909, 1914, 10117, 1909, 7600, 7600}, {10120, 10125, 10132, 10137, 10143, 10150, 10158, 10165, 10174, 10181, 10186, 10193, 0}, {10120, 10125, 10132, 10137, 10143, 10150, 10158, 10165, 10174, 10181, 10186, 10193, 0}, {10201, 10205, 3699, 10210, 3668, 10214, 10218, 10222, 10227, 10231, 10235, 10239, 0}, {10201, 10205, 3699, 10210, 3668, 10214, 10218, 10222, 10227, 10231, 10235, 10239, 0}, 0, 1, 691, 187, {10243,1129,0,0,0,0,0,0,0,0,0,0,0,0},{10253,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 10270, 10288, {10306, 10317, 10330, 10339, 10346, 10359, 10368}, {10306, 10317, 10330, 10339, 10346, 10359, 10368}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, 0, 0, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {10515, 10522, 10528, 10535, 10540, 10546, 10552}, {10558, 10562, 10566, 10570, 10574, 10578, 10582}, {2300, 1914, 1914, 10586, 4413, 3925, 1914}, {10588, 10596, 10605, 2588, 10611, 2598, 2603, 10615, 2615, 2625, 2633, 10623, 0}, {10588, 10596, 10605, 2588, 10611, 2598, 2603, 10615, 2615, 2625, 2633, 10623, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 10632, 2680, 2684, 2688, 10636, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 10632, 2680, 2684, 2688, 10636, 0}, 0, 0, 185, 691, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{10640,3520,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 10659, 10664, {10669, 10682, 10701, 10718, 10731, 10744, 10761}, {10774, 8574, 8579, 8584, 8589, 8594, 8599}, {10779, 8607, 8604, 8610, 8613, 8607, 8610}, {10782, 10795, 10806, 10823, 10838, 10853, 10868, 10881, 10896, 10913, 10928, 10945, 0}, {10960, 10971, 10984, 10999, 11012, 11025, 11038, 11049, 11062, 11077, 11090, 11109, 0}, {11122, 11129, 11136, 11143, 11150, 11157, 11164, 11171, 11178, 11185, 11192, 11199, 0}, {11122, 11129, 11136, 11143, 11150, 11157, 11164, 11171, 11178, 11185, 11192, 11199, 0}, 0, 1, 691, 187, {2154,2696,1556,0,0,0,0,0,0,0,0,0,0,0},{11206,0,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{11224,0,0,0,0,0,0,0}},
-       {289, 11240, 11253, {11266, 11281, 11302, 11317, 11330, 11343, 10761}, {421, 426, 11358, 436, 11363, 446, 451}, {456, 459, 11368, 465, 468, 459, 465}, {11371, 11388, 11397, 11412, 521, 11429, 11444, 11457, 11472, 11489, 11510, 11527, 0}, {11542, 11559, 11572, 11589, 8816, 11608, 11623, 11636, 11649, 11664, 11687, 11706, 0}, {11719, 11726, 11733, 11740, 521, 11747, 11754, 11761, 11768, 11775, 11782, 11789, 0}, {11719, 11726, 11733, 11740, 521, 11747, 11754, 11761, 11768, 11775, 11782, 11789, 0}, 0, 0, 691, 187, {2696,0,0,0,0,0,0,0,0,0,0,0,0,0},{3520,0,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{11796,0,0,0,0,0,0,0}},
-       {1812, 11810, 11815, {11820, 11828, 11839, 11845, 11851, 11860, 1876}, {9045, 9049, 2287, 11866, 9061, 9066, 11870}, {9074, 9076, 11874, 9080, 9082, 9076, 9080}, {2310, 2317, 9483, 2331, 2337, 11876, 11882, 11888, 2358, 2368, 2376, 2385, 0}, {2310, 2317, 9483, 2331, 2337, 11876, 11882, 11888, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 5812, 187, {11899,6118,0,0,0,0,0,0,0,0,0,0,0,0},{11911,11931,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 11945, 11950, {11955, 11966, 11977, 11988, 11999, 12010, 12016}, {1909, 9701, 2302, 4413, 1907, 10586, 2308}, {1909, 9701, 2302, 4413, 1907, 10586, 2308}, {12025, 12033, 12042, 12049, 4848, 12056, 12062, 2351, 2358, 12068, 2376, 12077, 0}, {12025, 12033, 12042, 12049, 4848, 12056, 12062, 2351, 2358, 12068, 2376, 12077, 0}, {12087, 12092, 12042, 2406, 4848, 12056, 12062, 2418, 12098, 2426, 2430, 12103, 0}, {12087, 12092, 12042, 2406, 4848, 12056, 12062, 2418, 12098, 2426, 2430, 12103, 0}, 2, 1, 691, 187, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{12108,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 12116, 12133, {12147, 12158, 12168, 12177, 12188, 12200, 12211}, {12221, 12224, 12227, 12230, 12233, 12236, 12239}, {1914, 1909, 2304, 2302, 7600, 1909, 1914}, {12242, 12252, 12263, 12269, 12278, 12284, 12292, 12300, 12308, 12319, 12328, 12338, 0}, {12348, 12358, 2325, 12369, 12378, 12384, 12392, 12400, 12408, 12419, 12428, 12438, 0}, {12448, 12454, 12263, 12460, 12278, 12465, 12471, 12477, 4128, 12482, 4139, 12487, 0}, {12448, 12454, 12263, 12460, 12278, 12465, 12471, 12477, 4128, 12482, 4139, 12487, 0}, 0, 1, 691, 187, {2154,12492,0,0,0,0,0,0,0,0,0,0,0,0},{12512,12539,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12560,0,0,0,0,0,0,0}},
-       {3551, 12576, 11815, {12582, 12594, 12606, 12618, 12632, 12647, 12660}, {12674, 12677, 12680, 12683, 12686, 12689, 9471}, {1914, 1909, 12692, 2302, 4413, 1909, 9480}, {12694, 12701, 12709, 12715, 12724, 12733, 12743, 12749, 12760, 12770, 12777, 12787, 0}, {12694, 12701, 12709, 12715, 12724, 12733, 12743, 12749, 12760, 12770, 12777, 12787, 0}, {12795, 12801, 12806, 12811, 12816, 12821, 12828, 12834, 12840, 12846, 12852, 12859, 0}, {12795, 12801, 12806, 12811, 12816, 12821, 12828, 12834, 12840, 12846, 12852, 12859, 0}, 2, 1, 2438, 187, {1556,0,0,0,0,0,0,0,0,0,0,0,0,0},{12866,12894,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {1, 12926, 12938, {12950, 12965, 12980, 12995, 13012, 13031, 13042}, {13053, 13060, 13067, 13074, 13081, 13088, 13095}, {0, 0, 0, 0, 0, 0, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, 0, 0, 691, 187, {2154,2696,8015,2440,189,0,0,0,0,0,0,0,0,0},{13266,13284,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 13303, 13323, {13340, 13353, 13366, 13382, 13399, 13414, 13423}, {13340, 13353, 13366, 13382, 13399, 13414, 13423}, {13432, 13435, 13438, 13441, 13444, 13447, 13450}, {13453, 13466, 13477, 13486, 13497, 13502, 13511, 13522, 13529, 13544, 13555, 13568, 0}, {13581, 13596, 13477, 13486, 13609, 13502, 13616, 13522, 13529, 13544, 13555, 13568, 0}, {13453, 13466, 13477, 13486, 13497, 13502, 13511, 13522, 13529, 13544, 13555, 13568, 0}, {13453, 13466, 13477, 13486, 13497, 13502, 13511, 13522, 13529, 13544, 13555, 13568, 0}, 0, 6, 185, 187, {198,189,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 13629, 13632, {13635, 13648, 13658, 13667, 13677, 13688, 13699}, {13711, 13714, 13719, 13724, 13729, 13734, 13739}, {13711, 13744, 13747, 13750, 13753, 13756, 13759}, {13762, 13771, 13780, 13789, 13798, 13807, 13816, 13825, 13834, 13843, 13853, 13863, 0}, {13873, 13882, 13891, 13900, 13909, 13918, 13927, 13936, 13945, 13954, 13964, 13974, 0}, {13984, 13990, 13996, 14002, 14008, 14014, 14020, 14026, 14032, 14038, 14045, 14052, 0}, {13984, 13990, 13996, 14002, 14008, 14014, 14020, 14026, 14032, 14038, 14045, 14052, 0}, 0, 1, 185, 187, {198,189,2451,2440,1556,0,0,0,0,0,0,0,0,0},{5455,0,0,0,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 14059, 14083, {14107, 14120, 14141, 14160, 14181, 14200, 14213}, {14224, 14231, 14238, 14245, 14252, 14259, 14266}, {14273, 14276, 14276, 14279, 14282, 14285, 14290}, {14293, 14308, 14323, 14332, 14343, 14354, 14367, 14380, 14395, 14414, 14433, 14450, 0}, {14469, 14486, 14503, 14514, 14527, 14540, 14555, 14570, 14587, 14608, 14629, 14648, 0}, {14669, 14676, 14683, 14690, 14697, 14704, 14711, 14718, 14725, 14732, 14739, 14746, 0}, {14669, 14676, 14683, 14690, 14697, 14704, 14711, 14718, 14725, 14732, 14739, 14746, 0}, 0, 1, 691, 187, {2154,2696,14753,198,14763,3490,1556,0,0,0,0,0,0,0},{3808,3502,10640,5455,14774,14785,14797,14814,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {14832, 14838, 14852, 14875, 14889, 14905, 14912}, {14921, 14924, 14929, 14935, 14939, 7600, 14944}, {6540, 6528, 6530, 6532, 6534, 6536, 6538}, {14948, 14955, 10132, 14962, 3668, 14968, 14974, 14980, 14987, 14996, 15004, 15011, 0}, {15018, 15025, 15032, 15037, 15043, 15047, 15052, 15057, 15064, 15073, 15081, 15088, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, 0, 0, 691, 187, {2154,1129,0,0,0,0,0,0,0,0,0,0,0,0},{15123,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {15141, 15149, 15160, 15170, 15181, 15190, 15199}, {15209, 15213, 15217, 15221, 15225, 15229, 15233}, {15237, 12692, 12692, 12692, 2304, 2304, 2308}, {15239, 15249, 15257, 15265, 15273, 15281, 15288, 15296, 15304, 15311, 15317, 15324, 0}, {15332, 15343, 15352, 15361, 15370, 15379, 15387, 15396, 15405, 15413, 15420, 15428, 0}, {15437, 15442, 4795, 15447, 15452, 15457, 15462, 15467, 15472, 15477, 15482, 15487, 0}, {15437, 15442, 4795, 15447, 15452, 15457, 15462, 15467, 15472, 15477, 15482, 15487, 0}, 2, 1, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{15503,15530,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{15551,0,0,0,0,0,0,0}},
-       {289, 15570, 15591, {15608, 331, 352, 8513, 15621, 15638, 15649}, {15662, 15670, 15678, 15684, 15692, 15700, 15708}, {456, 459, 462, 465, 468, 459, 465}, {15716, 484, 501, 510, 15731, 15738, 15747, 542, 555, 574, 591, 606, 0}, {15716, 484, 501, 510, 15731, 15738, 15747, 542, 555, 574, 591, 606, 0}, {15756, 15764, 15772, 639, 15731, 15780, 15788, 647, 655, 665, 673, 683, 0}, {15756, 15764, 15772, 639, 15731, 15780, 15788, 647, 655, 665, 673, 683, 0}, 0, 1, 691, 187, {15796,0,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{15806,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {15822, 15829, 15840, 15849, 15858, 15865, 15876}, {15886, 15890, 15894, 15898, 15902, 15905, 15909}, {0, 0, 0, 0, 0, 0, 0}, {15913, 15923, 15932, 15940, 15949, 15962, 15974, 15981, 15988, 15995, 16005, 16017, 0}, {15913, 15923, 15932, 15940, 15949, 15962, 15974, 15981, 15988, 15995, 16005, 16017, 0}, {16030, 16034, 16038, 16042, 16046, 16050, 16054, 16058, 16062, 16066, 16070, 16074, 0}, {16030, 16034, 16038, 16042, 16046, 16050, 16054, 16058, 16062, 16066, 16070, 16074, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {16108, 16113, 16119, 16129, 16141, 16149, 16160}, {16169, 16173, 16177, 16181, 16185, 16189, 16193}, {0, 0, 0, 0, 0, 0, 0}, {16197, 16207, 16217, 16224, 16231, 2598, 16236, 16243, 16250, 16259, 16267, 16275, 0}, {16197, 16207, 16217, 16224, 16231, 2598, 16236, 16243, 16250, 16259, 16267, 16275, 0}, {2651, 2655, 15909, 16283, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, {2651, 2655, 15909, 16283, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {16299, 16305, 16316, 16129, 16141, 16149, 16160}, {16326, 16330, 16334, 16181, 16185, 16189, 16193}, {1914, 2300, 16338, 2302, 1914, 5644, 2300}, {16340, 16350, 16361, 16368, 16377, 16383, 16389, 16397, 16405, 16416, 16426, 16435, 0}, {16444, 16207, 16453, 16459, 16231, 2598, 16236, 16243, 16466, 16259, 16267, 16275, 0}, {2651, 2655, 16476, 2664, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, {2651, 2655, 16476, 2664, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, 0, 0, 185, 187, {3711,16480,0,0,0,0,0,0,0,0,0,0,0,0},{3757,3776,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 16492, 16496, {16500, 16507, 16515, 16523, 16532, 16542, 16549}, {2544, 16558, 2550, 16561, 2556, 16564, 2562}, {1914, 2300, 2565, 3643, 2565, 3927, 1914}, {16567, 16576, 16586, 2588, 10611, 16592, 16598, 16604, 2615, 2625, 2633, 10623, 0}, {16567, 16576, 16586, 2588, 10611, 16592, 16598, 16604, 2615, 2625, 2633, 10623, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 2676, 2680, 2684, 2688, 10636, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 2676, 2680, 2684, 2688, 10636, 0}, 0, 0, 2438, 187, {1556,9951,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {16613, 16629, 16654, 16682, 16710, 16738, 16766}, {16785, 16795, 16805, 16815, 16825, 16835, 16845}, {16855, 16859, 16863, 16859, 16867, 16871, 16875}, {16879, 16901, 16929, 16945, 16964, 16980, 16999, 17018, 17040, 17071, 17099, 17124, 0}, {16879, 16901, 16929, 16945, 16964, 16980, 16999, 17018, 17040, 17071, 17099, 17124, 0}, {17152, 17162, 17172, 17182, 17192, 17202, 17212, 17222, 17232, 17242, 17252, 17262, 0}, {17152, 17162, 17172, 17182, 17192, 17202, 17212, 17222, 17232, 17242, 17252, 17262, 0}, 0, 1, 691, 187, {2154,17272,0,0,0,0,0,0,0,0,0,0,0,0},{222,3808,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 17284, 17289, {5897, 17294, 17305, 17315, 17325, 17335, 17349}, {17361, 17365, 17370, 17375, 17379, 17384, 17389}, {1914, 2300, 2302, 2300, 5644, 2306, 2308}, {2310, 2317, 4837, 6042, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 6042, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 2, 1, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{5508,6118,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {1, 17393, 17409, {17419, 17438, 17457, 17479, 17498, 17520, 17545}, {17564, 17574, 17584, 17597, 17607, 17620, 17636}, {17646, 17650, 17657, 17664, 17671, 17678, 17685}, {17689, 17705, 17724, 17740, 17759, 17766, 17776, 17792, 17808, 17827, 17849, 17865, 0}, {17689, 17705, 17724, 17740, 17759, 17766, 17776, 17792, 17808, 17827, 17849, 17865, 0}, {17884, 17891, 17724, 17901, 17759, 17766, 17917, 17930, 17937, 17950, 17966, 17976, 0}, {17884, 17891, 17724, 17901, 17759, 17766, 17917, 17930, 17937, 17950, 17966, 17976, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {17989, 18004, 18007, {18010, 18019, 18028, 18038, 18048, 18058, 18070}, {18078, 18083, 18087, 18091, 18095, 18100, 18105}, {18109, 2302, 2302, 9701, 18109, 18112, 1914}, {18115, 18122, 18127, 2588, 18133, 18139, 18146, 18152, 18160, 18170, 18178, 18187, 0}, {18115, 18122, 18127, 2588, 18133, 18139, 18146, 18152, 18160, 18170, 18178, 18187, 0}, {2651, 18197, 3699, 2664, 18201, 18205, 18210, 18214, 18218, 18222, 2688, 18226, 0}, {2651, 18197, 3699, 2664, 18201, 18205, 18210, 18214, 18218, 18222, 2688, 18226, 0}, 0, 0, 185, 187, {198,9951,0,0,0,0,0,0,0,0,0,0,0,0},{18231,18257,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{18277,0,0,0,0,0,0,0}},
-       {3551, 18295, 18300, {18305, 18317, 18328, 18342, 18354, 18364, 18374}, {18385, 18390, 18395, 18400, 18405, 18410, 18415}, {1914, 3927, 2300, 6216, 2565, 16338, 2308}, {18420, 18437, 18450, 18464, 18477, 18490, 18503, 18517, 18529, 18543, 18557, 18571, 0}, {18420, 18437, 18450, 18464, 18477, 18490, 18503, 18517, 18529, 18543, 18557, 18571, 0}, {18584, 18591, 18596, 18601, 18605, 18610, 18615, 18620, 18625, 18632, 18637, 18643, 0}, {18584, 18591, 18596, 18601, 18605, 18610, 18615, 18620, 18625, 18632, 18637, 18643, 0}, 2, 1, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {18648, 18662, 18672, 18683, 18697, 18708, 18719}, {18732, 18737, 18742, 18749, 18755, 18761, 18767}, {2565, 2308, 2300, 7600, 2565, 12692, 1914}, {18772, 18780, 18788, 18795, 18804, 18814, 18824, 18830, 18838, 18853, 18871, 18879, 0}, {18772, 18780, 18788, 18795, 18804, 18814, 18824, 18830, 18838, 18853, 18871, 18879, 0}, {18887, 18891, 18788, 18897, 18901, 18906, 18824, 18912, 18917, 18924, 18931, 18936, 0}, {18887, 18891, 18788, 18897, 18901, 18906, 18824, 18912, 18917, 18924, 18931, 18936, 0}, 2, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 18941, 18944, {18948, 18953, 10528, 10535, 18959, 18966, 10552}, {18973, 18977, 10566, 10570, 18981, 10578, 10582}, {12692, 15237, 1914, 10586, 4413, 3925, 1914}, {10588, 10596, 18985, 2588, 10611, 2668, 18989, 18995, 2615, 2625, 2633, 19000, 0}, {10588, 10596, 18985, 2588, 10611, 2668, 18989, 18995, 2615, 2625, 2633, 19000, 0}, {2651, 2655, 18985, 2664, 10611, 2668, 2672, 19009, 2680, 2684, 2688, 16295, 0}, {2651, 2655, 18985, 2664, 10611, 2668, 2672, 19009, 2680, 2684, 2688, 16295, 0}, 0, 0, 185, 187, {14753,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 19013, 19035, {19059, 19074, 19091, 19108, 19125, 19142, 19151}, {19162, 19168, 19174, 19180, 19186, 19192, 19198}, {19204, 19207, 8610, 8610, 19210, 19204, 8610}, {19213, 19226, 19237, 19250, 19261, 19272, 19285, 19296, 19307, 19324, 19335, 19348, 0}, {19213, 19226, 19237, 19250, 19261, 19272, 19285, 19296, 19307, 19324, 19335, 19348, 0}, {19367, 19375, 19383, 19391, 19399, 19407, 19415, 19423, 19431, 19439, 19447, 19455, 0}, {19367, 19375, 19383, 19391, 19399, 19407, 19415, 19423, 19431, 19439, 19447, 19455, 0}, 0, 0, 185, 187, {198,19465,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {19478, 19485, 19511, {19539, 19546, 19553, 19560, 19567, 19574, 19581}, {19539, 19546, 19553, 19560, 19567, 19574, 19581}, {19204, 19207, 19588, 19588, 19210, 19204, 19591}, {19594, 19607, 501, 19622, 521, 19635, 19644, 542, 19653, 19670, 19685, 19698, 0}, {19594, 19607, 501, 19622, 521, 19635, 19644, 542, 19653, 19670, 19685, 19698, 0}, {19713, 15764, 15772, 639, 521, 19721, 19729, 647, 19737, 665, 19745, 683, 0}, {19713, 15764, 15772, 639, 521, 19721, 19729, 647, 19737, 665, 19745, 683, 0}, 0, 0, 2438, 187, {19753,0,0,0,0,0,0,0,0,0,0,0,0,0},{19762,0,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{19781,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {19797, 19806, 19815, 19823, 19832, 19841, 19848}, {19857, 19860, 19863, 19866, 19869, 19873, 19876}, {6530, 6532, 6534, 6536, 12692, 15237, 6528}, {10588, 10596, 19879, 19885, 10611, 2598, 18989, 19892, 16250, 19899, 16267, 19906, 0}, {10588, 10596, 19879, 19885, 10611, 2598, 18989, 19892, 16250, 19899, 16267, 19906, 0}, {2651, 2655, 18985, 2664, 10611, 2668, 2672, 19914, 2680, 2684, 2688, 10636, 0}, {2651, 2655, 18985, 2664, 10611, 2668, 2672, 19914, 2680, 2684, 2688, 10636, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {19918, 19928, 19937, 19946, 19957, 19967, 19972}, {19979, 19985, 19990, 19995, 20000, 10578, 20004}, {20009, 2565, 1914, 7600, 1909, 3925, 1914}, {14948, 14955, 10132, 14962, 3668, 20011, 20016, 20021, 14987, 14996, 15004, 15011, 0}, {14948, 14955, 10132, 14962, 3668, 20011, 20016, 20021, 14987, 14996, 15004, 15011, 0}, {20028, 20033, 3699, 2664, 3668, 20011, 20016, 20037, 10562, 2684, 20041, 20046, 0}, {20028, 20033, 3699, 2664, 3668, 20011, 20016, 20037, 10562, 2684, 20041, 20046, 0}, 0, 0, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {289, 20069, 20097, {20119, 20138, 20157, 20182, 20201, 20235, 20260}, {20279, 20289, 20299, 20315, 20325, 20350, 20366}, {20376, 20380, 20387, 20391, 20398, 20405, 20412}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, 0, 1, 2438, 691, {2451,4157,2440,2451,2440,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{4246,4241,20662,20671,0,0,0,0,0,0,0,0},{4268,4260,20679,20691,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 1820, 1823, {20702, 20718, 20737, 20759, 20778, 20797, 20825}, {20847, 20855, 20866, 20880, 20891, 20902, 20922}, {20936, 20940, 20947, 20954, 20964, 20971, 20984}, {20991, 21007, 21026, 21039, 21058, 21065, 21075, 21091, 21104, 21120, 21139, 21155, 0}, {20991, 21007, 21026, 21039, 21058, 21065, 21075, 21091, 21104, 21120, 21139, 21155, 0}, {20991, 21007, 21026, 21039, 21058, 21065, 21075, 21091, 21104, 21120, 21139, 21155, 0}, {20991, 21007, 21026, 21039, 21058, 21065, 21075, 21091, 21104, 21120, 21139, 21155, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{21171,3520,0,0,0,0,0,0,0,0},{1730,1722,843,251,0,0,0,0,0,0,0,0},{1750,1739,848,269,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 1820, 1823, {21189, 21208, 21227, 21249, 21268, 21290, 21315}, {21334, 21344, 21354, 21367, 21377, 21390, 21406}, {21416, 21420, 21427, 21434, 21441, 21448, 21455}, {21459, 21487, 21515, 21531, 21550, 21557, 21567, 21583, 21599, 21627, 21649, 21671, 0}, {21459, 21487, 21515, 21531, 21550, 21557, 21567, 21583, 21599, 21627, 21649, 21671, 0}, {21696, 21715, 21515, 21531, 21550, 21557, 21567, 21734, 21741, 21757, 21773, 21783, 0}, {21696, 21715, 21515, 21531, 21550, 21557, 21567, 21734, 21741, 21757, 21773, 21783, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 8022, 21796, {21799, 21818, 21837, 21862, 21881, 21903, 21928}, {21947, 21957, 21967, 21983, 21993, 22006, 22022}, {22032, 22036, 22043, 22047, 22054, 22061, 22068}, {22072, 22094, 22125, 22147, 22166, 22173, 22183, 22199, 22215, 22246, 22268, 22290, 0}, {22072, 22094, 22125, 22147, 22166, 22173, 22183, 22199, 22215, 22246, 22268, 22290, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 22315, 22340, {22365, 22384, 22406, 22431, 22447, 22469, 22488}, {22498, 22505, 22512, 22519, 22526, 22533, 22540}, {22498, 22505, 22512, 22519, 22526, 22533, 22540}, {22544, 22560, 22585, 22604, 22623, 22630, 22643, 22656, 22675, 22706, 22731, 22753, 0}, {22544, 22560, 22585, 22604, 22623, 22630, 22643, 22778, 22675, 22706, 22731, 22753, 0}, {22797, 22805, 22819, 22833, 22623, 22630, 22643, 22844, 22852, 22866, 22877, 22885, 0}, {22797, 22805, 22819, 22833, 22623, 22630, 22643, 22844, 22852, 22866, 22877, 22885, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {22896, 22918, 22940, 22965, 22987, 23012, 23040}, {23062, 23072, 23082, 23095, 23105, 23118, 23134}, {23144, 23148, 23155, 23159, 23166, 23173, 23180}, {23184, 23200, 23225, 23244, 23266, 23273, 23286, 23299, 23318, 23349, 23374, 23393, 0}, {23184, 23200, 23225, 23244, 23266, 23273, 23418, 23299, 23318, 23349, 23374, 23393, 0}, {23431, 23438, 23225, 23454, 23266, 23273, 23418, 23299, 23470, 23492, 23508, 23518, 0}, {23431, 23438, 23225, 23454, 23266, 23273, 23418, 23299, 23470, 23492, 23508, 23518, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {23534, 23553, 23572, 23594, 23613, 23635, 23660}, {23679, 23689, 23699, 23712, 23722, 23735, 23751}, {23761, 23765, 23772, 23779, 23786, 23793, 23800}, {23804, 23820, 23845, 23864, 23886, 23893, 23906, 23919, 23938, 23966, 23991, 24013, 0}, {23804, 23820, 23845, 23864, 23886, 23893, 23906, 23919, 23938, 23966, 23991, 24013, 0}, {24038, 24046, 24066, 24073, 23886, 24090, 24097, 24105, 24113, 24136, 24153, 24167, 0}, {24038, 24046, 24066, 24073, 23886, 24090, 24097, 24105, 24113, 24136, 24153, 24167, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {24184, 1820, 1823, {24192, 24220, 24254, 24282, 24310, 24341, 24378}, {24406, 24419, 24438, 24454, 24467, 24486, 24505}, {24515, 24522, 24529, 24536, 24543, 24556, 24563}, {24567, 24586, 24614, 24636, 24655, 24668, 24678, 24691, 24716, 24747, 24772, 24788, 0}, {24567, 24586, 24614, 24636, 24655, 24668, 24678, 24691, 24716, 24747, 24772, 24788, 0}, {24807, 24817, 24836, 24846, 24655, 24668, 24678, 24862, 24869, 24894, 24910, 24920, 0}, {24807, 24817, 24836, 24846, 24655, 24668, 24678, 24862, 24869, 24894, 24910, 24920, 0}, 0, 0, 2438, 691, {2451,4157,2696,8015,0,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{4246,4241,20662,20671,0,0,0,0,0,0,0,0},{4268,4260,20679,20691,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 24933, 24961, {24983, 25002, 25021, 25046, 25065, 25099, 25124}, {25143, 20289, 20299, 20315, 25153, 25178, 20366}, {0, 0, 0, 0, 0, 0, 0}, {25194, 25219, 25250, 25266, 20513, 20520, 20530, 25285, 25301, 25332, 25354, 25376, 0}, {25194, 25219, 25250, 25266, 20513, 20520, 20530, 25285, 25301, 25332, 25354, 25376, 0}, {25401, 25414, 25250, 25266, 20513, 20520, 20530, 25433, 25440, 25456, 25472, 25482, 0}, {25401, 25414, 25250, 25266, 20513, 20520, 20530, 25433, 25440, 25456, 25472, 25482, 0}, 0, 0, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{25495,0,0,0,0,0,0,0,0,0},{1722,1730,843,0,0,0,0,0,0,0,0,0},{1739,1750,848,0,0,0,0,0,0},{25514,25522,0,0,0,0,0,0}},
-       {1, 1820, 1823, {17419, 17438, 25532, 17479, 17498, 17520, 17545}, {17564, 17574, 25554, 17597, 17607, 17620, 17636}, {17646, 17650, 17657, 17664, 17671, 17678, 17685}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 25662, 25678, 25703, 25725, 25753, 0}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 25662, 25678, 25703, 25725, 25753, 0}, {25775, 25788, 17724, 25807, 25642, 17766, 25649, 25823, 25830, 25849, 25865, 25887, 0}, {25775, 25788, 17724, 25807, 25642, 17766, 25649, 25823, 25830, 25849, 25865, 25887, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 25903, 25908, {25913, 25920, 25931, 25944, 25957, 25968, 25981}, {25992, 25997, 26002, 26007, 26012, 26017, 26022}, {6528, 6530, 6532, 6534, 6536, 6538, 6540}, {26027, 26053, 26081, 26111, 26141, 26167, 26197, 26223, 26251, 26275, 26303, 26340, 0}, {26027, 26053, 26081, 26111, 26141, 26167, 26197, 26223, 26251, 26275, 26303, 26340, 0}, {26379, 26391, 26403, 26415, 26427, 26439, 26451, 26463, 26475, 26487, 26500, 26513, 0}, {26379, 26391, 26403, 26415, 26427, 26439, 26451, 26463, 26475, 26487, 26500, 26513, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{26526,26564,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {26596, 26620, 26642, {26667, 26695, 26723, 26760, 26791, 26825, 26850}, {26884, 26900, 26916, 26941, 26960, 26982, 26995}, {27017, 27024, 27031, 27038, 27045, 27052, 27056}, {27066, 27100, 27137, 27171, 27205, 27236, 27273, 27310, 27350, 27384, 27418, 27467, 0}, {27066, 27100, 27137, 27171, 27205, 27236, 27273, 27310, 27350, 27384, 27418, 27467, 0}, {27516, 27529, 27542, 27555, 27568, 27581, 27594, 27607, 27620, 27633, 27649, 27665, 0}, {27516, 27529, 27542, 27555, 27568, 27581, 27594, 27607, 27620, 27633, 27649, 27665, 0}, 0, 0, 185, 187, {1518,1527,1536,1567,1556,1545,1585,1578,1592,0,0,0,0,0},{27681,27724,27772,27804,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{27841,1805,0,0,0,0,0,0}},
-       {289, 1820, 1823, {27874, 27883, 27893, 27905, 27918, 27927, 27939}, {27951, 27955, 27960, 27964, 27968, 27972, 27976}, {1914, 27980, 2300, 2300, 15237, 6216, 1914}, {27983, 27990, 27999, 28006, 2594, 28013, 28021, 28032, 28037, 28042, 28049, 28058, 0}, {27983, 27990, 27999, 28006, 2594, 28013, 28021, 28032, 28037, 28042, 28049, 28058, 0}, {28066, 28070, 27960, 28074, 2594, 28078, 28082, 28032, 28037, 28086, 28090, 28095, 0}, {28066, 28070, 27960, 28074, 2594, 28078, 28082, 28032, 28037, 28086, 28090, 28095, 0}, 2, 1, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 28100, 28116, {28132, 28154, 28167, 28186, 28196, 28227, 28243}, {28132, 28154, 28167, 28186, 28196, 28227, 28243}, {6528, 6530, 6532, 6534, 6536, 6538, 6540}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, 0, 0, 185, 187, {189,1556,0,0,0,0,0,0,0,0,0,0,0,0},{3520,9963,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{28445,0,0,0,0,0,0,0}},
-       {289, 28480, 28505, {28530, 28555, 28574, 28602, 28621, 28646, 28665}, {28530, 28555, 28574, 28602, 28621, 28646, 28665}, {28687, 28691, 28695, 28699, 28709, 28713, 28723}, {28727, 28746, 28762, 28775, 28788, 28810, 28829, 28851, 28867, 28883, 28896, 28912, 0}, {28727, 28746, 28762, 28775, 28788, 28810, 28829, 28851, 28867, 28883, 28896, 28912, 0}, {28928, 28937, 28946, 28955, 28964, 28973, 28985, 28994, 29003, 29012, 29021, 29030, 0}, {28928, 28937, 28946, 28955, 28964, 28973, 28985, 28994, 29003, 29012, 29021, 29030, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{29039,3520,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {3833, 29066, 3847, 29071, 29081, 29087, 3880}, {29094, 8298, 3699, 29098, 29103, 29107, 29111}, {2565, 2308, 2300, 2300, 29116, 3927, 1914}, {29118, 29126, 3943, 3949, 29135, 29140, 29146, 3972, 29152, 29161, 29169, 29178, 0}, {29187, 29195, 4032, 1012, 7947, 29204, 29210, 4055, 7964, 7973, 7981, 29216, 0}, {29225, 2655, 3699, 29229, 2594, 29233, 29238, 19914, 18218, 29242, 2688, 3707, 0}, {29225, 2655, 3699, 29229, 2594, 29233, 29238, 19914, 18218, 29242, 2688, 3707, 0}, 2, 1, 185, 187, {198,17272,0,0,0,0,0,0,0,0,0,0,0,0},{5508,5455,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 29246, 29258, {29270, 17438, 29298, 17479, 17498, 17520, 17545}, {17564, 17574, 25554, 17597, 17607, 17620, 17636}, {0, 0, 0, 0, 0, 0, 0}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 29317, 29333, 29361, 25725, 25753, 0}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 29317, 29333, 29361, 25725, 25753, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 29383, 29395, {29404, 29420, 29436, 29464, 29480, 29523, 29548}, {29404, 29420, 29576, 29464, 29586, 29608, 29621}, {29631, 29635, 29639, 29643, 29647, 29660, 29667}, {29674, 29693, 29718, 29737, 29762, 29775, 29788, 29801, 29823, 29857, 29882, 29910, 0}, {29674, 29693, 29718, 29737, 29762, 29775, 29788, 29801, 29823, 29857, 29882, 29910, 0}, {29938, 29945, 29955, 29737, 29762, 29775, 29788, 29968, 29978, 29991, 30001, 30014, 0}, {29938, 29945, 29955, 29737, 29762, 29775, 29788, 29968, 29978, 29991, 30001, 30014, 0}, 0, 1, 2438, 691, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{20671,251,0,0,0,0,0,0,0,0,0,0},{20691,269,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 30027, 30037, {30050, 30060, 30067, 30080, 30090, 30100, 30110}, {30050, 30060, 30120, 30080, 30090, 30100, 30110}, {30130, 30134, 30138, 30142, 30146, 30150, 30154}, {30158, 30174, 30190, 30200, 30213, 30220, 30227, 30237, 30250, 30269, 30285, 30301, 0}, {30158, 30174, 30190, 30200, 30213, 30220, 30227, 30237, 30250, 30317, 30285, 30301, 0}, {30336, 30346, 30190, 30356, 30213, 30220, 30227, 30366, 30376, 30386, 30396, 30406, 0}, {30336, 30346, 30190, 30356, 30213, 30220, 30227, 30366, 30376, 30386, 30396, 30406, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 30416, 30426, {30439, 30446, 30452, 30459, 30465, 30471, 30479}, {30489, 30493, 30497, 30501, 30505, 30509, 30513}, {12692, 12692, 12692, 12692, 12692, 12692, 12692}, {30519, 30528, 30537, 30542, 30548, 30554, 30560, 30567, 30573, 30582, 30591, 30599, 0}, {30519, 30528, 30537, 30542, 30548, 30554, 30560, 30567, 30573, 30582, 30591, 30599, 0}, {30608, 30612, 3699, 30616, 3668, 30620, 30624, 30628, 30633, 30637, 30643, 30647, 0}, {30608, 30612, 3699, 30616, 3668, 30620, 30624, 30628, 30633, 30637, 30643, 30647, 0}, 0, 0, 2438, 187, {2440,2451,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 30651, 30692, {30733, 30752, 30771, 30796, 30815, 30837, 30862}, {30881, 17574, 30891, 17597, 30907, 17620, 17636}, {30920, 17650, 30924, 17664, 30928, 17678, 17685}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, 0, 0, 185, 187, {3711,3720,3727,3736,1599,1556,3747,0,0,0,0,0,0,0},{31111,31131,222,10501,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{25522,0,0,0,0,0,0,0}},
-       {289, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {31145, 31152, 31161, 31176, 31187, 31196, 31203, 31210, 31217, 31228, 31241, 31254, 0}, {31145, 31152, 31161, 31176, 31187, 31196, 31203, 31210, 31217, 31228, 31241, 31254, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 6, 185, 187, {1518,1556,0,0,0,0,0,0,0,0,0,0,0,0},{3520,4935,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {31259, 31266, 31272, 31279, 31290, 31298, 31307}, {31314, 8298, 3699, 31318, 31322, 31326, 10582}, {2308, 2308, 2300, 2300, 5644, 16338, 1914}, {3929, 31330, 31338, 3949, 3955, 31344, 31350, 3972, 31356, 31366, 31374, 31384, 0}, {3929, 31330, 31338, 3949, 3955, 31344, 31350, 3972, 31356, 31366, 31374, 31384, 0}, {31394, 31398, 3699, 29229, 3668, 31402, 31406, 19914, 18218, 2684, 31410, 16295, 0}, {31394, 31398, 3699, 29229, 3668, 31402, 31406, 19914, 18218, 2684, 31410, 16295, 0}, 0, 0, 185, 187, {3711,16480,0,0,0,0,0,0,0,0,0,0,0,0},{3757,3776,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {31414, 31421, 31429, 31436, 31443, 31451, 31459}, {31466, 31469, 31472, 31475, 31478, 31481, 31484}, {2308, 2308, 2302, 2308, 12692, 3925, 12692}, {31487, 31495, 31505, 31511, 31519, 31524, 31529, 31534, 31541, 19899, 31549, 31557, 0}, {31487, 31495, 31505, 31511, 31519, 31524, 31529, 31534, 31541, 19899, 31549, 31557, 0}, {2651, 31565, 3699, 31569, 3668, 30620, 30624, 31573, 3639, 2684, 31577, 16295, 0}, {2651, 31565, 3699, 31569, 3668, 30620, 30624, 31573, 3639, 2684, 31577, 16295, 0}, 0, 0, 185, 187, {1120,17272,0,0,0,0,0,0,0,0,0,0,0,0},{3789,3808,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 31581, 31592, {31602, 31620, 31635, 31657, 31670, 31684, 31701}, {31725, 31733, 31738, 31657, 31670, 31750, 31757}, {0, 0, 0, 0, 0, 0, 0}, {31771, 31793, 31809, 31829, 31843, 31860, 31875, 31892, 31906, 31919, 31938, 31952, 0}, {31771, 31793, 31809, 31829, 31843, 31860, 31875, 31892, 31906, 31919, 31938, 31952, 0}, {31971, 31986, 31995, 32008, 32015, 32025, 32033, 32043, 32050, 32056, 32068, 32075, 0}, {31971, 31986, 31995, 32008, 32015, 32025, 32033, 32043, 32050, 32056, 32068, 32075, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {32087, 32095, 15840, 15849, 15858, 32106, 32116}, {16326, 15890, 15894, 15898, 15902, 16189, 32125}, {0, 0, 0, 0, 0, 0, 0}, {32129, 32138, 32148, 32156, 10611, 3672, 32164, 32170, 32179, 32188, 32197, 32206, 0}, {32129, 32138, 32148, 32156, 10611, 3672, 32164, 32170, 32179, 32188, 32197, 32206, 0}, {2651, 2655, 15909, 32215, 10611, 2668, 2672, 19914, 18218, 2684, 32219, 16295, 0}, {2651, 2655, 15909, 32215, 10611, 2668, 2672, 19914, 18218, 2684, 32219, 16295, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {32223, 32236, 32241, {32246, 32253, 32268, 32282, 32298, 32313, 32329}, {6212, 32344, 2402, 32348, 32352, 32356, 32360}, {1914, 12692, 2300, 1909, 1914, 2302, 12692}, {7350, 7358, 32364, 32371, 32378, 2341, 2346, 32383, 32393, 32404, 32413, 32423, 0}, {7350, 7358, 32364, 32371, 32378, 2341, 2346, 32383, 32393, 32404, 32413, 32423, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 0, 0, 2438, 187, {2440,2451,1556,2460,0,0,0,0,0,0,0,0,0,0},{32433,2194,11931,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 32452, 32457, {32462, 32478, 32486, 32494, 32503, 32515, 32525}, {32535, 32541, 32547, 32551, 32555, 32563, 3639}, {0, 0, 0, 0, 0, 0, 0}, {32570, 32583, 32597, 32606, 32612, 32616, 32621, 32629, 16250, 32642, 16267, 16275, 0}, {32570, 32583, 32597, 32606, 32612, 32616, 32621, 32629, 16250, 32642, 16267, 16275, 0}, {32651, 2655, 32655, 16283, 32612, 32659, 2672, 32663, 2680, 32671, 2688, 16295, 0}, {32651, 2655, 32655, 16283, 32612, 32659, 2672, 32663, 2680, 32671, 2688, 16295, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {32677, 32700, 32707, {32714, 32724, 32734, 32744, 32754, 32764, 32774}, {32784, 32791, 32798, 32805, 32812, 32819, 32826}, {32833, 32837, 32841, 32845, 32849, 32853, 32857}, {32861, 32868, 32875, 32882, 32889, 32896, 32903, 32910, 32917, 32924, 32931, 32941, 0}, {32861, 32868, 32875, 32882, 32889, 32896, 32903, 32910, 32917, 32924, 32931, 32941, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 185, 187, {1518,1527,1536,1567,1556,1545,0,0,0,0,0,0,0,0},{32951,32975,33005,33035,33052,0,0,0,0,0},{1722,843,251,0,0,0,0,0,0,0,0,0},{1739,848,269,0,0,0,0,0,0},{33075,1805,0,0,0,0,0,0}},
-       {289, 0, 0, {27951, 8298, 33092, 33099, 33109, 33114, 33121}, {33128, 6196, 33132, 4800, 33137, 33142, 33147}, {4392, 33152, 33155, 33158, 33161, 33164, 33167}, {33170, 33177, 33092, 33188, 33194, 33198, 33207, 33214, 33219, 33228, 33233, 33236, 0}, {33170, 33177, 33092, 33188, 33194, 33198, 33207, 33214, 33219, 33228, 33233, 33236, 0}, {33242, 33246, 33253, 28074, 33194, 33258, 33263, 33214, 33268, 33228, 33233, 33273, 0}, {33242, 33246, 33253, 28074, 33194, 33258, 33263, 33214, 33268, 33228, 33233, 33273, 0}, 2, 1, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 33277, 33282, {33287, 33295, 33305, 33315, 33324, 33334, 33342}, {33352, 33356, 33361, 33365, 33369, 33373, 33377}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 33381, 33390, 33401, 33410, 33420, 0}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 33381, 33390, 33401, 33410, 33420, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 0, 0, 185, 187, {198,189,2696,2451,1556,0,0,0,0,0,0,0,0,0},{4935,4952,3520,0,0,0,0,0,0,0},{251,843,4246,4961,4971,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {33430, 33446, 33451, {33456, 33481, 33510, 33535, 33548, 33563, 33580}, {33595, 33600, 33605, 33610, 33615, 33620, 8599}, {19210, 19210, 33625, 8610, 8613, 19210, 8610}, {33628, 33647, 33662, 33684, 33704, 33720, 33736, 33750, 33776, 33800, 33817, 33834, 0}, {33628, 33647, 33662, 33684, 33704, 33720, 33736, 33750, 33776, 33800, 33817, 33834, 0}, {33851, 33860, 33869, 33883, 33897, 33909, 33921, 33931, 33947, 33961, 33968, 33975, 0}, {33851, 33860, 33869, 33883, 33897, 33909, 33921, 33931, 33947, 33961, 33968, 33975, 0}, 0, 1, 691, 187, {2154,4724,1556,33982,33992,0,0,0,0,0,0,0,0,0},{34005,34040,34069,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{34104,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {34120, 34132, 34143, 34155, 34167, 34177, 34189}, {34204, 34209, 34214, 34219, 34224, 34229, 34234}, {0, 0, 0, 0, 0, 0, 0}, {34239, 34248, 34260, 34268, 34273, 34283, 34290, 34299, 34306, 34312, 34321, 34332, 0}, {34239, 34248, 34260, 34268, 34273, 34283, 34290, 34299, 34306, 34312, 34321, 34332, 0}, {34340, 34345, 34350, 34355, 34360, 34365, 34370, 34224, 34375, 34380, 34385, 34390, 0}, {34340, 34345, 34350, 34355, 34360, 34365, 34370, 34224, 34375, 34380, 34385, 34390, 0}, 0, 0, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {34395, 34406, 34408, {34410, 34423, 34431, 34440, 34450, 34460, 34469}, {34481, 34485, 34489, 34493, 34497, 34501, 34505}, {2565, 2308, 2300, 7600, 12692, 5644, 1914}, {34509, 34523, 34534, 34543, 34554, 34566, 34580, 34592, 34605, 34618, 34630, 34643, 0}, {34509, 34523, 34534, 34543, 34554, 34566, 34580, 34592, 34605, 34618, 34630, 34643, 0}, {34657, 34662, 34668, 34674, 34679, 34685, 34691, 34696, 34702, 34707, 18931, 34713, 0}, {34657, 34662, 34668, 34674, 34679, 34685, 34691, 34696, 34702, 34707, 18931, 34713, 0}, 2, 1, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{34719,34741,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, {9, 18, 25, 45, 65, 89, 113, 120, 131, 142, 151, 169, 0}, 0, 0, 185, 187, {189,198,0,0,0,0,0,0,0,0,0,0,0,0},{209,222,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 296, 307, {318, 331, 352, 367, 378, 397, 408}, {421, 426, 431, 436, 441, 446, 451}, {456, 459, 462, 465, 468, 459, 465}, {471, 484, 501, 510, 521, 528, 535, 542, 555, 574, 591, 606, 0}, {471, 484, 501, 510, 521, 528, 535, 542, 555, 574, 591, 606, 0}, {623, 629, 501, 639, 521, 528, 535, 647, 655, 665, 673, 683, 0}, {623, 629, 501, 639, 521, 528, 535, 647, 655, 665, 673, 683, 0}, 2, 1, 691, 187, {693,708,724,740,0,0,0,0,0,0,0,0,0,0},{757,776,794,819,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{856,0,0,0,0,0,0,0}},
-       {289, 872, 878, {884, 893, 901, 909, 918, 925, 935}, {944, 948, 952, 956, 960, 964, 968}, {972, 975, 978, 981, 984, 987, 990}, {993, 999, 1006, 1012, 1018, 1023, 1028, 1035, 1041, 1050, 1058, 1067, 0}, {993, 999, 1006, 1012, 1018, 1023, 1028, 1035, 1041, 1050, 1058, 1067, 0}, {1076, 1081, 1006, 1086, 1018, 1023, 1091, 1096, 1100, 1105, 1110, 1115, 0}, {1076, 1081, 1006, 1086, 1018, 1023, 1091, 1096, 1100, 1105, 1110, 1115, 0}, 2, 1, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{1140,1163,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {34757, 34764, 34771, 34778, 34785, 34792, 34799}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1518,1545,1556,0,0,0,0,0,0,0,0,0,0,0},{1608,6555,1686,34806,0,0,0,0,0,0},{1730,1722,251,843,0,0,0,0,0,0,0,0},{1750,1739,269,848,0,0,0,0,0},{1762,1778,1791,0,0,0,0,0}},
-       {1812, 1820, 1823, {1826, 1834, 1844, 1852, 1860, 1869, 1876}, {1883, 1886, 1889, 1893, 1896, 1900, 1904}, {1907, 1909, 1911, 1914, 1916, 1909, 1914}, {1919, 1925, 1931, 1939, 1945, 1953, 1961, 1971, 1977, 1985, 1993, 2002, 0}, {2011, 2017, 2024, 2032, 2038, 2046, 2054, 2064, 1977, 2070, 2078, 2088, 0}, {2097, 2101, 2106, 2111, 2115, 2120, 2125, 2130, 2134, 2140, 2146, 2150, 0}, {2097, 2101, 2106, 2111, 2115, 2120, 2125, 2130, 2134, 2140, 2146, 2150, 0}, 2, 1, 691, 187, {2154,2165,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {2217, 2225, 2232, 2240, 2247, 2255, 2262}, {2270, 2275, 2279, 2283, 2287, 2291, 2295}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 2325, 2331, 2337, 2341, 2346, 2351, 2358, 2368, 2376, 2385, 0}, {2310, 2317, 2325, 2331, 2337, 2341, 2346, 2351, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {2440,2451,1556,2460,0,0,0,0,0,0,0,0,0,0},{2194,0,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 2471, 2477, {2484, 2492, 2499, 2508, 2517, 2528, 2536}, {2544, 2547, 2550, 2553, 2556, 2559, 2562}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 2, 1, 691, 187, {2154,2696,1556,2705,0,0,0,0,0,0,0,0,0,0},{2719,2194,2738,0,0,0,0,0,0,0},{251,2751,0,0,0,0,0,0,0,0,0,0},{269,2763,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 2778, 2785, {2792, 2807, 2822, 2833, 2848, 2861, 2880}, {2895, 2902, 2909, 2916, 2923, 2930, 2937}, {2944, 2947, 2950, 2950, 2953, 2953, 2956}, {2959, 2980, 3003, 3018, 3035, 3046, 3061, 3076, 3095, 3118, 3137, 3156, 0}, {3177, 3198, 3221, 3236, 3253, 3264, 3279, 3294, 3313, 3336, 3355, 3374, 0}, {3395, 3402, 3409, 3416, 3423, 3430, 3439, 3448, 3455, 3462, 3469, 3476, 0}, {3395, 3402, 3409, 3416, 3423, 3430, 3439, 3448, 3455, 3462, 3469, 3476, 0}, 2, 1, 185, 187, {1120,198,3483,189,3490,1556,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {3711,3720,3727,3736,1599,1556,3747,0,0,0,0,0,0,0},{3757,3776,3789,3808,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 4303, 4307, {4311, 4323, 4335, 4345, 4359, 4369, 4381}, {4392, 4395, 4398, 4401, 4404, 4407, 4410}, {1914, 2300, 2302, 4413, 2302, 1909, 2308}, {4415, 4424, 4433, 4443, 4452, 4461, 4470, 4480, 4487, 4495, 4503, 4513, 0}, {4522, 4533, 4544, 4556, 4567, 4578, 4589, 4601, 4610, 4620, 4630, 4642, 0}, {4653, 4659, 4665, 4672, 4678, 4684, 4690, 4697, 4701, 4706, 4711, 4718, 0}, {4653, 4659, 4665, 4672, 4678, 4684, 4690, 4697, 4701, 4706, 4711, 4718, 0}, 2, 1, 691, 691, {4724,0,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{4241,0,0,0,0,0,0,0,0,0,0,0},{4260,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 2, 1, 185, 187, {198,189,2696,2451,1556,0,0,0,0,0,0,0,0,0},{4935,3520,4952,0,0,0,0,0,0,0},{251,843,4246,4961,4971,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 4979, 4992, {5003, 5021, 5035, 5053, 5071, 5089, 5105}, {5119, 5131, 5143, 5155, 5167, 5179, 5191}, {5198, 5203, 5208, 5213, 5218, 5223, 5228}, {5233, 5244, 5257, 5264, 5275, 5282, 5291, 5300, 5313, 5326, 5341, 5354, 0}, {5233, 5244, 5257, 5264, 5275, 5282, 5291, 5300, 5313, 5326, 5341, 5354, 0}, {5365, 5374, 5257, 5383, 5275, 5392, 5401, 5410, 5419, 5428, 5437, 5446, 0}, {5365, 5374, 5257, 5383, 5275, 5392, 5401, 5410, 5419, 5428, 5437, 5446, 0}, 0, 0, 185, 187, {198,5455,189,209,2451,2440,5468,1556,5481,5498,0,0,0,0},{5508,5455,5526,5548,5481,0,0,0,0,0},{251,242,0,0,0,0,0,0,0,0,0,0},{269,257,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {5569, 5577, 5581, {5585, 5595, 5603, 5608, 5615, 5628, 5636}, {3927, 5644, 4413, 5646, 5650, 1909, 5653}, {3927, 5644, 4413, 5657, 5650, 1909, 5657}, {5660, 5668, 5677, 5686, 5695, 5702, 5710, 5718, 5728, 5739, 2376, 2385, 0}, {5660, 5668, 5677, 5686, 5695, 5702, 5710, 5718, 5728, 5739, 2376, 2385, 0}, {5748, 5753, 5759, 5766, 5772, 5778, 5784, 5790, 5795, 5802, 1110, 5807, 0}, {5748, 5753, 5759, 5766, 5772, 5778, 5784, 5790, 5795, 5802, 1110, 5807, 0}, 2, 1, 5812, 187, {5815,5829,0,0,0,0,0,0,0,0,0,0,0,0},{5842,5862,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{5876,0,0,0,0,0,0,0}},
-       {1812, 5887, 5892, {5897, 5908, 5919, 5933, 5947, 5959, 5971}, {5983, 5988, 5994, 6000, 6006, 6011, 6017}, {1914, 2300, 6022, 2300, 2306, 2306, 2308}, {6025, 6033, 4837, 6042, 6049, 6054, 6061, 6068, 2358, 5739, 6076, 6086, 0}, {6025, 6033, 4837, 6042, 6049, 6054, 6061, 6068, 2358, 5739, 6076, 6086, 0}, {5748, 1081, 4795, 6095, 6049, 5778, 5784, 6100, 6107, 5802, 6112, 1115, 0}, {5748, 1081, 4795, 6095, 6049, 5778, 5784, 6100, 6107, 5802, 6112, 1115, 0}, 2, 1, 691, 187, {4724,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {6130, 6139, 6147, 6156, 6167, 6176, 6185}, {6192, 6196, 2402, 6200, 6204, 6208, 6212}, {2565, 2308, 2300, 2300, 6216, 3927, 1914}, {6218, 6226, 3943, 6235, 6242, 6249, 6256, 3972, 6263, 6273, 6281, 6290, 0}, {6299, 6307, 4032, 6316, 6323, 6330, 6337, 4055, 6344, 6354, 1058, 6362, 0}, {6371, 2398, 2402, 2406, 6375, 6379, 6383, 6387, 6391, 6395, 2430, 6399, 0}, {6371, 2398, 2402, 2406, 6375, 6379, 6383, 6387, 6391, 6395, 2430, 6399, 0}, 2, 1, 185, 187, {198,3490,189,6403,3483,0,0,0,0,0,0,0,0,0},{4935,6411,3520,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1195, 6420, 6427, {6434, 6444, 6454, 6464, 6474, 6484, 6494}, {1337, 6504, 6508, 6512, 6516, 6520, 6524}, {1337, 6504, 6508, 6512, 6516, 6520, 6524}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 185, 187, {1545,1599,1578,1518,1556,0,0,0,0,0,0,0,0,0},{1608,6555,6579,6606,6635,6659,6688,6708,0,0},{843,251,1722,1730,0,0,0,0,0,0,0,0},{848,269,1739,1750,0,0,0,0,0},{1762,6733,1791,0,0,0,0,0}},
-       {6751, 6761, 6768, {6775, 6785, 6795, 6805, 6815, 6825, 6835}, {6845, 6849, 6853, 6857, 6861, 6865, 6869}, {6845, 6849, 6853, 6857, 6861, 6865, 6869}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, {6873, 6878, 6883, 6888, 6893, 6898, 6903, 6908, 6913, 6918, 6924, 6930, 0}, 0, 0, 2438, 187, {1556,6936,1585,1527,0,0,0,0,0,0,0,0,0,0},{6945,6974,6998,7025,7047,7078,7104,7135,7161,7188},{1722,1730,843,251,0,0,0,0,0,0,0,0},{1739,1750,848,269,0,0,0,0,0},{7210,7227,7246,0,0,0,0,0}},
-       {289, 7261, 7266, {7271, 7278, 7286, 7294, 7303, 7313, 7321}, {7330, 4395, 7333, 7336, 7339, 7342, 7345}, {7348, 2300, 2565, 3643, 2565, 3927, 7348}, {7350, 7358, 7367, 2331, 7373, 2341, 2346, 7377, 2358, 2368, 2376, 2385, 0}, {7350, 7358, 7367, 2331, 7373, 2341, 2346, 7377, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 7386, 2406, 7373, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 7386, 2406, 7373, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {7390,4157,2451,189,2696,7399,1556,0,0,0,0,0,0,0},{4935,6411,3520,4952,0,0,0,0,0,0},{251,843,4241,7411,7423,0,0,0,0,0,0,0},{269,848,7435,7450,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {7465, 7261, 7266, {2217, 2225, 2232, 2240, 2247, 2255, 2262}, {7473, 7478, 7482, 7486, 7490, 7494, 7498}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 2, 1, 691, 691, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {7507, 7517, 7531, 7538, 7545, 7554, 1876}, {7562, 7569, 7574, 7578, 7583, 7588, 7592}, {1907, 1909, 3643, 7597, 7600, 1909, 1914}, {7602, 7611, 7616, 7623, 2337, 7633, 7642, 7649, 7659, 7669, 1993, 7682, 0}, {7692, 7701, 7708, 7714, 7723, 7728, 7736, 7742, 7751, 7761, 7775, 7785, 0}, {7793, 7797, 2402, 7801, 2337, 7805, 7809, 7813, 7817, 7821, 2146, 7826, 0}, {7793, 7797, 2402, 7801, 2337, 7805, 7809, 7813, 7817, 7821, 2146, 7826, 0}, 2, 1, 691, 187, {2154,0,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3821, 1820, 1823, {3833, 7830, 7844, 7857, 7870, 7883, 3880}, {6192, 7895, 7899, 7903, 7907, 7911, 7915}, {2565, 1914, 2302, 7920, 7920, 1914, 1914}, {7922, 7930, 7940, 1012, 7947, 7952, 7958, 4055, 7964, 7973, 7981, 7990, 0}, {7922, 7930, 7940, 1012, 7947, 7952, 7958, 4055, 7964, 7973, 7981, 7990, 0}, {2394, 7999, 2402, 8003, 4848, 2410, 2414, 6387, 6391, 8007, 2430, 8011, 0}, {2394, 7999, 2402, 8003, 4848, 2410, 2414, 6387, 6391, 8007, 2430, 8011, 0}, 0, 0, 185, 187, {198,189,1120,3483,2451,2440,4157,7390,2696,2154,7399,8015,4724,1556},{4164,4219,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {1812, 8022, 8025, {8028, 8037, 4748, 8047, 8055, 8063, 8072}, {8078, 8081, 4395, 8085, 8088, 8092, 1904}, {2565, 6216, 2300, 2300, 6216, 3927, 1914}, {8095, 8103, 4837, 8110, 8117, 8122, 8132, 8140, 8146, 8156, 2376, 2385, 0}, {8095, 8103, 4837, 8110, 8117, 8122, 8132, 8140, 8146, 8156, 2376, 2385, 0}, {8164, 8171, 4837, 4912, 8117, 8177, 8184, 8140, 8189, 1105, 1110, 5807, 0}, {8164, 8171, 4837, 4912, 8117, 8177, 8184, 8140, 8189, 1105, 1110, 5807, 0}, 2, 1, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{8195,8224,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {8241, 8251, 8256, 8263, 8272, 8276, 8283}, {8294, 8298, 3699, 8302, 8306, 8310, 8314}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {8319, 8328, 8338, 8345, 4848, 8353, 8359, 2351, 8365, 8376, 8386, 8396, 0}, {8319, 8328, 8338, 8345, 4848, 8353, 8359, 2351, 8365, 8376, 8386, 8396, 0}, {8406, 1081, 4795, 6095, 4848, 8411, 8416, 5790, 4923, 1105, 1110, 5807, 0}, {8406, 1081, 4795, 6095, 4848, 8411, 8416, 5790, 4923, 1105, 1110, 5807, 0}, 0, 1, 691, 187, {2154,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 8421, 8441, {8467, 8490, 352, 8513, 8524, 8539, 8554}, {8569, 8574, 8579, 8584, 8589, 8594, 8599}, {8604, 8607, 8604, 8610, 8613, 8607, 8610}, {8616, 8629, 8644, 8653, 8666, 8673, 8682, 8691, 8704, 8721, 8736, 8749, 0}, {8764, 8777, 8792, 8803, 8816, 8823, 8832, 8841, 8856, 8873, 8888, 8901, 0}, {8916, 8924, 8644, 8934, 8666, 8673, 8682, 8942, 8950, 8960, 8968, 8978, 0}, {8916, 8924, 8644, 8934, 8666, 8673, 8682, 8942, 8950, 8960, 8968, 8978, 0}, 0, 1, 691, 187, {2154,2696,8015,2440,189,0,0,0,0,0,0,0,0,0},{776,757,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {8986, 8995, 9007, 9014, 9022, 9032, 9038}, {9045, 9049, 9053, 9057, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {9085, 9095, 9104, 9112, 9120, 9128, 9135, 9142, 9150, 1993, 9156, 9164, 0}, {9173, 9183, 9192, 9200, 9208, 9216, 9223, 9230, 9239, 7775, 9245, 9255, 0}, {9264, 9268, 9273, 9278, 9282, 7809, 2130, 9286, 9290, 2146, 9294, 2150, 0}, {9264, 9268, 9273, 9278, 9282, 7809, 2130, 9286, 9290, 2146, 9294, 2150, 0}, 0, 1, 691, 187, {9298,9308,9316,9328,9340,9350,9360,1556,0,0,0,0,0,0},{9372,9386,9401,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {9421, 9429, 9438, 9445, 9452, 9461, 1876}, {1883, 1886, 9468, 1893, 9471, 9475, 1904}, {1907, 1909, 9478, 1914, 9480, 1909, 1914}, {5660, 5668, 9483, 6042, 9489, 9494, 9499, 2351, 2358, 5739, 2376, 2385, 0}, {9504, 9513, 7708, 9523, 9531, 9537, 9543, 9549, 9557, 9567, 9576, 9585, 0}, {2394, 2398, 2402, 2406, 9489, 9494, 9499, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 9489, 9494, 9499, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 691, 187, {2154,2165,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 9594, 9603, {9611, 9618, 9627, 9636, 9648, 9656, 9665}, {9675, 9679, 3699, 9684, 9689, 9693, 9697}, {2565, 5644, 2300, 2300, 9701, 1909, 1914}, {9703, 9709, 4837, 9716, 2337, 9722, 9730, 9737, 9743, 9751, 9757, 9765, 0}, {9703, 9709, 4837, 9716, 2337, 9722, 9730, 9737, 9743, 9751, 9757, 9765, 0}, {2651, 9773, 3699, 9777, 9781, 9785, 9789, 9793, 9697, 9797, 9801, 9806, 0}, {2651, 9773, 3699, 9777, 9781, 9785, 9789, 9793, 9697, 9797, 9801, 9806, 0}, 0, 1, 691, 187, {4724,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {9810, 9823, 9826, {9829, 9837, 9845, 2240, 2247, 2255, 9852}, {9860, 9865, 9870, 2283, 2287, 2291, 9874}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {7350, 7358, 4837, 2331, 2337, 2341, 2346, 9879, 2358, 2368, 2376, 2385, 0}, {7350, 7358, 4837, 2331, 2337, 2341, 2346, 9879, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {1556,6936,0,0,0,0,0,0,0,0,0,0,0,0},{9887,9905,0,0,0,0,0,0,0,0},{251,843,9928,0,0,0,0,0,0,0,0,0},{269,848,9938,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 185, 187, {1120,3483,189,198,1129,9951,1556,0,0,0,0,0,0,0},{3520,9963,9979,0,0,0,0,0,0,0},{843,251,3532,242,0,0,0,0,0,0,0,0},{848,269,3540,257,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 10021, 10026, {10030, 10036, 10046, 10052, 10063, 10073, 10078}, {10088, 10092, 10096, 10100, 10105, 10109, 10113}, {1909, 1909, 1914, 10117, 1909, 7600, 7600}, {10120, 10125, 10132, 10137, 10143, 10150, 10158, 10165, 10174, 10181, 10186, 10193, 0}, {10120, 10125, 10132, 10137, 10143, 10150, 10158, 10165, 10174, 10181, 10186, 10193, 0}, {10201, 10205, 3699, 10210, 3668, 10214, 10218, 10222, 10227, 10231, 10235, 10239, 0}, {10201, 10205, 3699, 10210, 3668, 10214, 10218, 10222, 10227, 10231, 10235, 10239, 0}, 0, 1, 691, 187, {10243,1129,0,0,0,0,0,0,0,0,0,0,0,0},{10253,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 10270, 10288, {10306, 10317, 10330, 10339, 10346, 10359, 10368}, {10306, 10317, 10330, 10339, 10346, 10359, 10368}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, {10377, 10388, 10399, 10408, 10419, 10426, 10433, 10446, 10455, 10466, 10479, 10490, 0}, 0, 0, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {10515, 10522, 10528, 10535, 10540, 10546, 10552}, {10558, 10562, 10566, 10570, 10574, 10578, 10582}, {2300, 1914, 1914, 10586, 4413, 3925, 1914}, {10588, 10596, 10605, 2588, 10611, 2598, 2603, 10615, 2615, 2625, 2633, 10623, 0}, {10588, 10596, 10605, 2588, 10611, 2598, 2603, 10615, 2615, 2625, 2633, 10623, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 10632, 2680, 2684, 2688, 10636, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 10632, 2680, 2684, 2688, 10636, 0}, 0, 0, 185, 691, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{10640,3520,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 10659, 10664, {10669, 10682, 10701, 10718, 10731, 10744, 10761}, {10774, 8574, 8579, 8584, 8589, 8594, 8599}, {10779, 8607, 8604, 8610, 8613, 8607, 8610}, {10782, 10795, 10806, 10823, 10838, 10853, 10868, 10881, 10896, 10913, 10928, 10945, 0}, {10960, 10971, 10984, 10999, 11012, 11025, 11038, 11049, 11062, 11077, 11090, 11109, 0}, {11122, 11129, 11136, 11143, 11150, 11157, 11164, 11171, 11178, 11185, 11192, 11199, 0}, {11122, 11129, 11136, 11143, 11150, 11157, 11164, 11171, 11178, 11185, 11192, 11199, 0}, 0, 1, 691, 187, {2154,2696,1556,0,0,0,0,0,0,0,0,0,0,0},{11206,0,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{11224,0,0,0,0,0,0,0}},
-       {289, 11240, 11253, {11266, 11281, 11302, 11317, 11330, 11343, 10761}, {421, 426, 11358, 436, 11363, 446, 451}, {456, 459, 11368, 465, 468, 459, 465}, {11371, 11388, 11397, 11412, 521, 11429, 11444, 11457, 11472, 11489, 11510, 11527, 0}, {11542, 11559, 11572, 11589, 8816, 11608, 11623, 11636, 11649, 11664, 11687, 11706, 0}, {11719, 11726, 11733, 11740, 521, 11747, 11754, 11761, 11768, 11775, 11782, 11789, 0}, {11719, 11726, 11733, 11740, 521, 11747, 11754, 11761, 11768, 11775, 11782, 11789, 0}, 0, 0, 691, 187, {2696,0,0,0,0,0,0,0,0,0,0,0,0,0},{3520,0,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{11796,0,0,0,0,0,0,0}},
-       {1812, 11810, 11815, {11820, 11828, 11839, 11845, 11851, 11860, 1876}, {9045, 9049, 2287, 11866, 9061, 9066, 11870}, {9074, 9076, 11874, 9080, 9082, 9076, 9080}, {2310, 2317, 9483, 2331, 2337, 11876, 11882, 11888, 2358, 2368, 2376, 2385, 0}, {2310, 2317, 9483, 2331, 2337, 11876, 11882, 11888, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 5812, 187, {11899,6118,0,0,0,0,0,0,0,0,0,0,0,0},{11911,11931,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 11945, 11950, {11955, 11966, 11977, 11988, 11999, 12010, 12016}, {1909, 9701, 2302, 4413, 1907, 10586, 2308}, {1909, 9701, 2302, 4413, 1907, 10586, 2308}, {12025, 12033, 12042, 12049, 4848, 12056, 12062, 2351, 2358, 12068, 2376, 12077, 0}, {12025, 12033, 12042, 12049, 4848, 12056, 12062, 2351, 2358, 12068, 2376, 12077, 0}, {12087, 12092, 12042, 2406, 4848, 12056, 12062, 2418, 12098, 2426, 2430, 12103, 0}, {12087, 12092, 12042, 2406, 4848, 12056, 12062, 2418, 12098, 2426, 2430, 12103, 0}, 2, 1, 691, 187, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{12108,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 12116, 12133, {12147, 12158, 12168, 12177, 12188, 12200, 12211}, {12221, 12224, 12227, 12230, 12233, 12236, 12239}, {1914, 1909, 2304, 2302, 7600, 1909, 1914}, {12242, 12252, 12263, 12269, 12278, 12284, 12292, 12300, 12308, 12319, 12328, 12338, 0}, {12348, 12358, 2325, 12369, 12378, 12384, 12392, 12400, 12408, 12419, 12428, 12438, 0}, {12448, 12454, 12263, 12460, 12278, 12465, 12471, 12477, 4128, 12482, 4139, 12487, 0}, {12448, 12454, 12263, 12460, 12278, 12465, 12471, 12477, 4128, 12482, 4139, 12487, 0}, 0, 1, 691, 187, {2154,12492,0,0,0,0,0,0,0,0,0,0,0,0},{12512,12539,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12560,0,0,0,0,0,0,0}},
-       {3551, 12576, 11815, {12582, 12594, 12606, 12618, 12632, 12647, 12660}, {12674, 12677, 12680, 12683, 12686, 12689, 9471}, {1914, 1909, 12692, 2302, 4413, 1909, 9480}, {12694, 12701, 12709, 12715, 12724, 12733, 12743, 12749, 12760, 12770, 12777, 12787, 0}, {12694, 12701, 12709, 12715, 12724, 12733, 12743, 12749, 12760, 12770, 12777, 12787, 0}, {12795, 12801, 12806, 12811, 12816, 12821, 12828, 12834, 12840, 12846, 12852, 12859, 0}, {12795, 12801, 12806, 12811, 12816, 12821, 12828, 12834, 12840, 12846, 12852, 12859, 0}, 2, 1, 2438, 187, {1556,0,0,0,0,0,0,0,0,0,0,0,0,0},{12866,12894,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {1, 12926, 12938, {12950, 12965, 12980, 12995, 13012, 13031, 13042}, {13053, 13060, 13067, 13074, 13081, 13088, 13095}, {0, 0, 0, 0, 0, 0, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, 0, 1, 691, 187, {2154,2696,8015,2440,189,0,0,0,0,0,0,0,0,0},{13266,13284,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 13303, 13323, {13340, 13353, 13366, 13382, 13399, 13414, 13423}, {13340, 13353, 13366, 13382, 13399, 13414, 13423}, {13432, 13435, 13438, 13441, 13444, 13447, 13450}, {13453, 13466, 13477, 13486, 13497, 13502, 13511, 13522, 13529, 13544, 13555, 13568, 0}, {13581, 13596, 13477, 13486, 13609, 13502, 13616, 13522, 13529, 13544, 13555, 13568, 0}, {13453, 13466, 13477, 13486, 13497, 13502, 13511, 13522, 13529, 13544, 13555, 13568, 0}, {13453, 13466, 13477, 13486, 13497, 13502, 13511, 13522, 13529, 13544, 13555, 13568, 0}, 0, 6, 185, 187, {198,189,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 13629, 13632, {13635, 13648, 13658, 13667, 13677, 13688, 13699}, {13711, 13714, 13719, 13724, 13729, 13734, 13739}, {13711, 13744, 13747, 13750, 13753, 13756, 13759}, {13762, 13771, 13780, 13789, 13798, 13807, 13816, 13825, 13834, 13843, 13853, 13863, 0}, {13873, 13882, 13891, 13900, 13909, 13918, 13927, 13936, 13945, 13954, 13964, 13974, 0}, {13984, 13990, 13996, 14002, 14008, 14014, 14020, 14026, 14032, 14038, 14045, 14052, 0}, {13984, 13990, 13996, 14002, 14008, 14014, 14020, 14026, 14032, 14038, 14045, 14052, 0}, 0, 1, 185, 187, {198,189,2451,2440,1556,0,0,0,0,0,0,0,0,0},{5455,0,0,0,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 14059, 14083, {14107, 14120, 14141, 14160, 14181, 14200, 14213}, {14224, 14231, 14238, 14245, 14252, 14259, 14266}, {14273, 14276, 14276, 14279, 14282, 14285, 14290}, {14293, 14308, 14323, 14332, 14343, 14354, 14367, 14380, 14395, 14414, 14433, 14450, 0}, {14469, 14486, 14503, 14514, 14527, 14540, 14555, 14570, 14587, 14608, 14629, 14648, 0}, {14669, 14676, 14683, 14690, 14697, 14704, 14711, 14718, 14725, 14732, 14739, 14746, 0}, {14669, 14676, 14683, 14690, 14697, 14704, 14711, 14718, 14725, 14732, 14739, 14746, 0}, 0, 1, 691, 187, {2154,2696,14753,198,14763,3490,1556,0,0,0,0,0,0,0},{3808,3502,10640,5455,14774,14785,14797,14814,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {14832, 14838, 14852, 14875, 14889, 14905, 14912}, {14921, 14924, 14929, 14935, 14939, 7600, 14944}, {6540, 6528, 6530, 6532, 6534, 6536, 6538}, {14948, 14955, 10132, 14962, 3668, 14968, 14974, 14980, 14987, 14996, 15004, 15011, 0}, {15018, 15025, 15032, 15037, 15043, 15047, 15052, 15057, 15064, 15073, 15081, 15088, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, 0, 1, 691, 187, {2154,1129,0,0,0,0,0,0,0,0,0,0,0,0},{15123,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {15141, 15149, 15160, 15170, 15181, 15190, 15199}, {15209, 15213, 15217, 15221, 15225, 15229, 15233}, {15237, 12692, 12692, 12692, 2304, 2304, 2308}, {15239, 15249, 15257, 15265, 15273, 15281, 15288, 15296, 15304, 15311, 15317, 15324, 0}, {15332, 15343, 15352, 15361, 15370, 15379, 15387, 15396, 15405, 15413, 15420, 15428, 0}, {15437, 15442, 4795, 15447, 15452, 15457, 15462, 15467, 15472, 15477, 15482, 15487, 0}, {15437, 15442, 4795, 15447, 15452, 15457, 15462, 15467, 15472, 15477, 15482, 15487, 0}, 2, 1, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{15503,15530,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{15551,0,0,0,0,0,0,0}},
-       {289, 15570, 15591, {15608, 331, 352, 8513, 15621, 15638, 15649}, {15662, 15670, 15678, 15684, 15692, 15700, 15708}, {456, 459, 462, 465, 468, 459, 465}, {15716, 484, 501, 510, 15731, 15738, 15747, 542, 555, 574, 591, 606, 0}, {15716, 484, 501, 510, 15731, 15738, 15747, 542, 555, 574, 591, 606, 0}, {15756, 15764, 15772, 639, 15731, 15780, 15788, 647, 655, 665, 673, 683, 0}, {15756, 15764, 15772, 639, 15731, 15780, 15788, 647, 655, 665, 673, 683, 0}, 0, 1, 691, 187, {15796,0,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{15806,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {15822, 15829, 15840, 15849, 15858, 15865, 15876}, {15886, 15890, 15894, 15898, 15902, 15905, 15909}, {0, 0, 0, 0, 0, 0, 0}, {15913, 15923, 15932, 15940, 15949, 15962, 15974, 15981, 15988, 15995, 16005, 16017, 0}, {15913, 15923, 15932, 15940, 15949, 15962, 15974, 15981, 15988, 15995, 16005, 16017, 0}, {16030, 16034, 16038, 16042, 16046, 16050, 16054, 16058, 16062, 16066, 16070, 16074, 0}, {16030, 16034, 16038, 16042, 16046, 16050, 16054, 16058, 16062, 16066, 16070, 16074, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {16108, 16113, 16119, 16129, 16141, 16149, 16160}, {16169, 16173, 16177, 16181, 16185, 16189, 16193}, {0, 0, 0, 0, 0, 0, 0}, {16197, 16207, 16217, 16224, 16231, 2598, 16236, 16243, 16250, 16259, 16267, 16275, 0}, {16197, 16207, 16217, 16224, 16231, 2598, 16236, 16243, 16250, 16259, 16267, 16275, 0}, {2651, 2655, 15909, 16283, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, {2651, 2655, 15909, 16283, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {16299, 16305, 16316, 16129, 16141, 16149, 16160}, {16326, 16330, 16334, 16181, 16185, 16189, 16193}, {1914, 2300, 16338, 2302, 1914, 5644, 2300}, {16340, 16350, 16361, 16368, 16377, 16383, 16389, 16397, 16405, 16416, 16426, 16435, 0}, {16444, 16207, 16453, 16459, 16231, 2598, 16236, 16243, 16466, 16259, 16267, 16275, 0}, {2651, 2655, 16476, 2664, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, {2651, 2655, 16476, 2664, 16287, 2668, 2672, 16291, 2680, 2684, 2688, 16295, 0}, 0, 0, 185, 187, {3711,16480,0,0,0,0,0,0,0,0,0,0,0,0},{3757,3776,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 16492, 16496, {16500, 16507, 16515, 16523, 16532, 16542, 16549}, {2544, 16558, 2550, 16561, 2556, 16564, 2562}, {1914, 2300, 2565, 3643, 2565, 3927, 1914}, {16567, 16576, 16586, 2588, 10611, 16592, 16598, 16604, 2615, 2625, 2633, 10623, 0}, {16567, 16576, 16586, 2588, 10611, 16592, 16598, 16604, 2615, 2625, 2633, 10623, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 2676, 2680, 2684, 2688, 10636, 0}, {2651, 2655, 3699, 2664, 10611, 2668, 2672, 2676, 2680, 2684, 2688, 10636, 0}, 0, 0, 2438, 187, {1556,9951,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {16613, 16629, 16654, 16682, 16710, 16738, 16766}, {16785, 16795, 16805, 16815, 16825, 16835, 16845}, {16855, 16859, 16863, 16859, 16867, 16871, 16875}, {16879, 16901, 16929, 16945, 16964, 16980, 16999, 17018, 17040, 17071, 17099, 17124, 0}, {16879, 16901, 16929, 16945, 16964, 16980, 16999, 17018, 17040, 17071, 17099, 17124, 0}, {17152, 17162, 17172, 17182, 17192, 17202, 17212, 17222, 17232, 17242, 17252, 17262, 0}, {17152, 17162, 17172, 17182, 17192, 17202, 17212, 17222, 17232, 17242, 17252, 17262, 0}, 0, 1, 691, 187, {2154,17272,0,0,0,0,0,0,0,0,0,0,0,0},{222,3808,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 17284, 17289, {5897, 17294, 17305, 17315, 17325, 17335, 17349}, {17361, 17365, 17370, 17375, 17379, 17384, 17389}, {1914, 2300, 2302, 2300, 5644, 2306, 2308}, {2310, 2317, 4837, 6042, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 6042, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 2, 1, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{5508,6118,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {1, 17393, 17409, {17419, 17438, 17457, 17479, 17498, 17520, 17545}, {17564, 17574, 17584, 17597, 17607, 17620, 17636}, {17646, 17650, 17657, 17664, 17671, 17678, 17685}, {17689, 17705, 17724, 17740, 17759, 17766, 17776, 17792, 17808, 17827, 17849, 17865, 0}, {17689, 17705, 17724, 17740, 17759, 17766, 17776, 17792, 17808, 17827, 17849, 17865, 0}, {17884, 17891, 17724, 17901, 17759, 17766, 17917, 17930, 17937, 17950, 17966, 17976, 0}, {17884, 17891, 17724, 17901, 17759, 17766, 17917, 17930, 17937, 17950, 17966, 17976, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {17989, 18004, 18007, {18010, 18019, 18028, 18038, 18048, 18058, 18070}, {18078, 18083, 18087, 18091, 18095, 18100, 18105}, {18109, 2302, 2302, 9701, 18109, 18112, 1914}, {18115, 18122, 18127, 2588, 18133, 18139, 18146, 18152, 18160, 18170, 18178, 18187, 0}, {18115, 18122, 18127, 2588, 18133, 18139, 18146, 18152, 18160, 18170, 18178, 18187, 0}, {2651, 18197, 3699, 2664, 18201, 18205, 18210, 18214, 18218, 18222, 2688, 18226, 0}, {2651, 18197, 3699, 2664, 18201, 18205, 18210, 18214, 18218, 18222, 2688, 18226, 0}, 0, 0, 185, 187, {198,9951,0,0,0,0,0,0,0,0,0,0,0,0},{18231,18257,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{18277,0,0,0,0,0,0,0}},
-       {3551, 18295, 18300, {18305, 18317, 18328, 18342, 18354, 18364, 18374}, {18385, 18390, 18395, 18400, 18405, 18410, 18415}, {1914, 3927, 2300, 6216, 2565, 16338, 2308}, {18420, 18437, 18450, 18464, 18477, 18490, 18503, 18517, 18529, 18543, 18557, 18571, 0}, {18420, 18437, 18450, 18464, 18477, 18490, 18503, 18517, 18529, 18543, 18557, 18571, 0}, {18584, 18591, 18596, 18601, 18605, 18610, 18615, 18620, 18625, 18632, 18637, 18643, 0}, {18584, 18591, 18596, 18601, 18605, 18610, 18615, 18620, 18625, 18632, 18637, 18643, 0}, 2, 1, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {19797, 19806, 19815, 19823, 19832, 19841, 19848}, {19857, 19860, 19863, 19866, 19869, 19873, 19876}, {6530, 6532, 6534, 6536, 12692, 15237, 6528}, {10588, 10596, 19879, 19885, 10611, 2598, 18989, 19892, 16250, 19899, 16267, 19906, 0}, {10588, 10596, 19879, 19885, 10611, 2598, 18989, 19892, 16250, 19899, 16267, 19906, 0}, {2651, 2655, 18985, 2664, 10611, 2668, 2672, 19914, 2680, 2684, 2688, 10636, 0}, {2651, 2655, 18985, 2664, 10611, 2668, 2672, 19914, 2680, 2684, 2688, 10636, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {19918, 19928, 19937, 19946, 19957, 19967, 19972}, {19979, 19985, 19990, 19995, 20000, 10578, 20004}, {20009, 2565, 1914, 7600, 1909, 3925, 1914}, {14948, 14955, 10132, 14962, 3668, 20011, 20016, 20021, 14987, 14996, 15004, 15011, 0}, {14948, 14955, 10132, 14962, 3668, 20011, 20016, 20021, 14987, 14996, 15004, 15011, 0}, {20028, 20033, 3699, 2664, 3668, 20011, 20016, 20037, 10562, 2684, 20041, 20046, 0}, {20028, 20033, 3699, 2664, 3668, 20011, 20016, 20037, 10562, 2684, 20041, 20046, 0}, 0, 1, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {289, 20069, 20097, {20119, 20138, 20157, 20182, 20201, 20235, 20260}, {20279, 20289, 20299, 20315, 20325, 20350, 20366}, {20376, 20380, 20387, 20391, 20398, 20405, 20412}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, 0, 0, 2438, 691, {2451,4157,2440,2451,2440,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{4246,4241,20662,20671,0,0,0,0,0,0,0,0},{4268,4260,20679,20691,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 1820, 1823, {21189, 21208, 21227, 21249, 21268, 21290, 21315}, {21334, 21344, 21354, 21367, 21377, 21390, 21406}, {21416, 21420, 21427, 21434, 21441, 21448, 21455}, {21459, 21487, 21515, 21531, 21550, 21557, 21567, 21583, 21599, 21627, 21649, 21671, 0}, {21459, 21487, 21515, 21531, 21550, 21557, 21567, 21583, 21599, 21627, 21649, 21671, 0}, {21696, 21715, 21515, 21531, 21550, 21557, 21567, 21734, 21741, 21757, 21773, 21783, 0}, {21696, 21715, 21515, 21531, 21550, 21557, 21567, 21734, 21741, 21757, 21773, 21783, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 8022, 21796, {21799, 21818, 21837, 21862, 21881, 21903, 21928}, {21947, 21957, 21967, 21983, 21993, 22006, 22022}, {22032, 22036, 22043, 22047, 22054, 22061, 22068}, {22072, 22094, 22125, 22147, 22166, 22173, 22183, 22199, 22215, 22246, 22268, 22290, 0}, {22072, 22094, 22125, 22147, 22166, 22173, 22183, 22199, 22215, 22246, 22268, 22290, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 22315, 22340, {22365, 22384, 22406, 22431, 22447, 22469, 22488}, {22498, 22505, 22512, 22519, 22526, 22533, 22540}, {22498, 22505, 22512, 22519, 22526, 22533, 22540}, {22544, 22560, 22585, 22604, 22623, 22630, 22643, 22656, 22675, 22706, 22731, 22753, 0}, {22544, 22560, 22585, 22604, 22623, 22630, 22643, 22778, 22675, 22706, 22731, 22753, 0}, {22797, 22805, 22819, 22833, 22623, 22630, 22643, 22844, 22852, 22866, 22877, 22885, 0}, {22797, 22805, 22819, 22833, 22623, 22630, 22643, 22844, 22852, 22866, 22877, 22885, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {22896, 22918, 22940, 22965, 22987, 23012, 23040}, {23062, 23072, 23082, 23095, 23105, 23118, 23134}, {23144, 23148, 23155, 23159, 23166, 23173, 23180}, {23184, 23200, 23225, 23244, 23266, 23273, 23286, 23299, 23318, 23349, 23374, 23393, 0}, {23184, 23200, 23225, 23244, 23266, 23273, 23418, 23299, 23318, 23349, 23374, 23393, 0}, {23431, 23438, 23225, 23454, 23266, 23273, 23418, 23299, 23470, 23492, 23508, 23518, 0}, {23431, 23438, 23225, 23454, 23266, 23273, 23418, 23299, 23470, 23492, 23508, 23518, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {23534, 23553, 23572, 23594, 23613, 23635, 23660}, {23679, 23689, 23699, 23712, 23722, 23735, 23751}, {23761, 23765, 23772, 23779, 23786, 23793, 23800}, {23804, 23820, 23845, 23864, 23886, 23893, 23906, 23919, 23938, 23966, 23991, 24013, 0}, {23804, 23820, 23845, 23864, 23886, 23893, 23906, 23919, 23938, 23966, 23991, 24013, 0}, {24038, 24046, 24066, 24073, 23886, 24090, 24097, 24105, 24113, 24136, 24153, 24167, 0}, {24038, 24046, 24066, 24073, 23886, 24090, 24097, 24105, 24113, 24136, 24153, 24167, 0}, 0, 0, 2438, 187, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {24184, 1820, 1823, {24192, 24220, 24254, 24282, 24310, 24341, 24378}, {24406, 24419, 24438, 24454, 24467, 24486, 24505}, {24515, 24522, 24529, 24536, 24543, 24556, 24563}, {24567, 24586, 24614, 24636, 24655, 24668, 24678, 24691, 24716, 24747, 24772, 24788, 0}, {24567, 24586, 24614, 24636, 24655, 24668, 24678, 24691, 24716, 24747, 24772, 24788, 0}, {24807, 24817, 24836, 24846, 24655, 24668, 24678, 24862, 24869, 24894, 24910, 24920, 0}, {24807, 24817, 24836, 24846, 24655, 24668, 24678, 24862, 24869, 24894, 24910, 24920, 0}, 0, 0, 2438, 691, {2451,4157,2696,8015,0,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{4246,4241,20662,20671,0,0,0,0,0,0,0,0},{4268,4260,20679,20691,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 24933, 24961, {24983, 25002, 25021, 25046, 25065, 25099, 25124}, {25143, 20289, 20299, 20315, 25153, 25178, 20366}, {0, 0, 0, 0, 0, 0, 0}, {25194, 25219, 25250, 25266, 20513, 20520, 20530, 25285, 25301, 25332, 25354, 25376, 0}, {25194, 25219, 25250, 25266, 20513, 20520, 20530, 25285, 25301, 25332, 25354, 25376, 0}, {25401, 25414, 25250, 25266, 20513, 20520, 20530, 25433, 25440, 25456, 25472, 25482, 0}, {25401, 25414, 25250, 25266, 20513, 20520, 20530, 25433, 25440, 25456, 25472, 25482, 0}, 0, 0, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{25495,0,0,0,0,0,0,0,0,0},{1722,1730,843,0,0,0,0,0,0,0,0,0},{1739,1750,848,0,0,0,0,0,0},{25514,25522,0,0,0,0,0,0}},
-       {1, 1820, 1823, {17419, 17438, 25532, 17479, 17498, 17520, 17545}, {17564, 17574, 25554, 17597, 17607, 17620, 17636}, {17646, 17650, 17657, 17664, 17671, 17678, 17685}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 25662, 25678, 25703, 25725, 25753, 0}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 25662, 25678, 25703, 25725, 25753, 0}, {25775, 25788, 17724, 25807, 25642, 17766, 25649, 25823, 25830, 25849, 25865, 25887, 0}, {25775, 25788, 17724, 25807, 25642, 17766, 25649, 25823, 25830, 25849, 25865, 25887, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {26596, 26620, 26642, {26667, 26695, 26723, 26760, 26791, 26825, 26850}, {26884, 26900, 26916, 26941, 26960, 26982, 26995}, {27017, 27024, 27031, 27038, 27045, 27052, 27056}, {27066, 27100, 27137, 27171, 27205, 27236, 27273, 27310, 27350, 27384, 27418, 27467, 0}, {27066, 27100, 27137, 27171, 27205, 27236, 27273, 27310, 27350, 27384, 27418, 27467, 0}, {27516, 27529, 27542, 27555, 27568, 27581, 27594, 27607, 27620, 27633, 27649, 27665, 0}, {27516, 27529, 27542, 27555, 27568, 27581, 27594, 27607, 27620, 27633, 27649, 27665, 0}, 0, 0, 185, 187, {1518,1527,1536,1567,1556,1545,1585,1578,1592,0,0,0,0,0},{27681,27724,27772,27804,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{27841,1805,0,0,0,0,0,0}},
-       {289, 1820, 1823, {27874, 27883, 27893, 27905, 27918, 27927, 27939}, {27951, 27955, 27960, 27964, 27968, 27972, 27976}, {1914, 27980, 2300, 2300, 15237, 6216, 1914}, {27983, 27990, 27999, 28006, 2594, 28013, 28021, 28032, 28037, 28042, 28049, 28058, 0}, {27983, 27990, 27999, 28006, 2594, 28013, 28021, 28032, 28037, 28042, 28049, 28058, 0}, {28066, 28070, 27960, 28074, 2594, 28078, 28082, 28032, 28037, 28086, 28090, 28095, 0}, {28066, 28070, 27960, 28074, 2594, 28078, 28082, 28032, 28037, 28086, 28090, 28095, 0}, 2, 1, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 28100, 28116, {28132, 28154, 28167, 28186, 28196, 28227, 28243}, {28132, 28154, 28167, 28186, 28196, 28227, 28243}, {6528, 6530, 6532, 6534, 6536, 6538, 6540}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, {28256, 28269, 28288, 28301, 28314, 28327, 28346, 28365, 28378, 28394, 28407, 28432, 0}, 0, 0, 185, 187, {189,1556,0,0,0,0,0,0,0,0,0,0,0,0},{3520,9963,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{28445,0,0,0,0,0,0,0}},
-       {289, 28480, 28505, {28530, 28555, 28574, 28602, 28621, 28646, 28665}, {28530, 28555, 28574, 28602, 28621, 28646, 28665}, {28687, 28691, 28695, 28699, 28709, 28713, 28723}, {28727, 28746, 28762, 28775, 28788, 28810, 28829, 28851, 28867, 28883, 28896, 28912, 0}, {28727, 28746, 28762, 28775, 28788, 28810, 28829, 28851, 28867, 28883, 28896, 28912, 0}, {28928, 28937, 28946, 28955, 28964, 28973, 28985, 28994, 29003, 29012, 29021, 29030, 0}, {28928, 28937, 28946, 28955, 28964, 28973, 28985, 28994, 29003, 29012, 29021, 29030, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{29039,3520,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {3833, 29066, 3847, 29071, 29081, 29087, 3880}, {29094, 8298, 3699, 29098, 29103, 29107, 29111}, {2565, 2308, 2300, 2300, 29116, 3927, 1914}, {29118, 29126, 3943, 3949, 29135, 29140, 29146, 3972, 29152, 29161, 29169, 29178, 0}, {29187, 29195, 4032, 1012, 7947, 29204, 29210, 4055, 7964, 7973, 7981, 29216, 0}, {29225, 2655, 3699, 29229, 2594, 29233, 29238, 19914, 18218, 29242, 2688, 3707, 0}, {29225, 2655, 3699, 29229, 2594, 29233, 29238, 19914, 18218, 29242, 2688, 3707, 0}, 2, 1, 185, 187, {198,17272,0,0,0,0,0,0,0,0,0,0,0,0},{5508,5455,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 29246, 29258, {29270, 17438, 29298, 17479, 17498, 17520, 17545}, {17564, 17574, 25554, 17597, 17607, 17620, 17636}, {0, 0, 0, 0, 0, 0, 0}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 29317, 29333, 29361, 25725, 25753, 0}, {25567, 25592, 17724, 25623, 25642, 17766, 25649, 29317, 29333, 29361, 25725, 25753, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,1730,1722,0,0,0,0,0,0,0,0},{269,848,1750,1739,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 29383, 29395, {29404, 29420, 29436, 29464, 29480, 29523, 29548}, {29404, 29420, 29576, 29464, 29586, 29608, 29621}, {29631, 29635, 29639, 29643, 29647, 29660, 29667}, {29674, 29693, 29718, 29737, 29762, 29775, 29788, 29801, 29823, 29857, 29882, 29910, 0}, {29674, 29693, 29718, 29737, 29762, 29775, 29788, 29801, 29823, 29857, 29882, 29910, 0}, {29938, 29945, 29955, 29737, 29762, 29775, 29788, 29968, 29978, 29991, 30001, 30014, 0}, {29938, 29945, 29955, 29737, 29762, 29775, 29788, 29968, 29978, 29991, 30001, 30014, 0}, 0, 1, 2438, 691, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{20671,251,0,0,0,0,0,0,0,0,0,0},{20691,269,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 30027, 30037, {30050, 30060, 30067, 30080, 30090, 30100, 30110}, {30050, 30060, 30120, 30080, 30090, 30100, 30110}, {30130, 30134, 30138, 30142, 30146, 30150, 30154}, {30158, 30174, 30190, 30200, 30213, 30220, 30227, 30237, 30250, 30269, 30285, 30301, 0}, {30158, 30174, 30190, 30200, 30213, 30220, 30227, 30237, 30250, 30317, 30285, 30301, 0}, {30336, 30346, 30190, 30356, 30213, 30220, 30227, 30366, 30376, 30386, 30396, 30406, 0}, {30336, 30346, 30190, 30356, 30213, 30220, 30227, 30366, 30376, 30386, 30396, 30406, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 30651, 30692, {30733, 30752, 30771, 30796, 30815, 30837, 30862}, {30881, 17574, 30891, 17597, 30907, 17620, 17636}, {30920, 17650, 30924, 17664, 30928, 17678, 17685}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, {17689, 30935, 17724, 30963, 25642, 30982, 17776, 30992, 31008, 31039, 31061, 31086, 0}, 0, 0, 185, 187, {3711,3720,3727,3736,1599,1556,3747,0,0,0,0,0,0,0},{31111,31131,222,10501,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{25522,0,0,0,0,0,0,0}},
-       {289, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {31145, 31152, 31161, 31176, 31187, 31196, 31203, 31210, 31217, 31228, 31241, 31254, 0}, {31145, 31152, 31161, 31176, 31187, 31196, 31203, 31210, 31217, 31228, 31241, 31254, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 6, 185, 187, {1518,1556,0,0,0,0,0,0,0,0,0,0,0,0},{3520,4935,0,0,0,0,0,0,0,0},{843,0,0,0,0,0,0,0,0,0,0,0},{848,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {31259, 31266, 31272, 31279, 31290, 31298, 31307}, {31314, 8298, 3699, 31318, 31322, 31326, 10582}, {2308, 2308, 2300, 2300, 5644, 16338, 1914}, {3929, 31330, 31338, 3949, 3955, 31344, 31350, 3972, 31356, 31366, 31374, 31384, 0}, {3929, 31330, 31338, 3949, 3955, 31344, 31350, 3972, 31356, 31366, 31374, 31384, 0}, {31394, 31398, 3699, 29229, 3668, 31402, 31406, 19914, 18218, 2684, 31410, 16295, 0}, {31394, 31398, 3699, 29229, 3668, 31402, 31406, 19914, 18218, 2684, 31410, 16295, 0}, 0, 0, 185, 187, {3711,16480,0,0,0,0,0,0,0,0,0,0,0,0},{3757,3776,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {31414, 31421, 31429, 31436, 31443, 31451, 31459}, {31466, 31469, 31472, 31475, 31478, 31481, 31484}, {2308, 2308, 2302, 2308, 12692, 3925, 12692}, {31487, 31495, 31505, 31511, 31519, 31524, 31529, 31534, 31541, 19899, 31549, 31557, 0}, {31487, 31495, 31505, 31511, 31519, 31524, 31529, 31534, 31541, 19899, 31549, 31557, 0}, {2651, 31565, 3699, 31569, 3668, 30620, 30624, 31573, 3639, 2684, 31577, 16295, 0}, {2651, 31565, 3699, 31569, 3668, 30620, 30624, 31573, 3639, 2684, 31577, 16295, 0}, 0, 0, 185, 187, {1120,17272,0,0,0,0,0,0,0,0,0,0,0,0},{3789,3808,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 31581, 31592, {31602, 31620, 31635, 31657, 31670, 31684, 31701}, {31725, 31733, 31738, 31657, 31670, 31750, 31757}, {0, 0, 0, 0, 0, 0, 0}, {31771, 31793, 31809, 31829, 31843, 31860, 31875, 31892, 31906, 31919, 31938, 31952, 0}, {31771, 31793, 31809, 31829, 31843, 31860, 31875, 31892, 31906, 31919, 31938, 31952, 0}, {31971, 31986, 31995, 32008, 32015, 32025, 32033, 32043, 32050, 32056, 32068, 32075, 0}, {31971, 31986, 31995, 32008, 32015, 32025, 32033, 32043, 32050, 32056, 32068, 32075, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {32087, 32095, 15840, 15849, 15858, 32106, 32116}, {16326, 15890, 15894, 15898, 15902, 16189, 32125}, {0, 0, 0, 0, 0, 0, 0}, {32129, 32138, 32148, 32156, 10611, 3672, 32164, 32170, 32179, 32188, 32197, 32206, 0}, {32129, 32138, 32148, 32156, 10611, 3672, 32164, 32170, 32179, 32188, 32197, 32206, 0}, {2651, 2655, 15909, 32215, 10611, 2668, 2672, 19914, 18218, 2684, 32219, 16295, 0}, {2651, 2655, 15909, 32215, 10611, 2668, 2672, 19914, 18218, 2684, 32219, 16295, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {32223, 32236, 32241, {32246, 32253, 32268, 32282, 32298, 32313, 32329}, {6212, 32344, 2402, 32348, 32352, 32356, 32360}, {1914, 12692, 2300, 1909, 1914, 2302, 12692}, {7350, 7358, 32364, 32371, 32378, 2341, 2346, 32383, 32393, 32404, 32413, 32423, 0}, {7350, 7358, 32364, 32371, 32378, 2341, 2346, 32383, 32393, 32404, 32413, 32423, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 0, 0, 2438, 187, {2440,2451,1556,2460,0,0,0,0,0,0,0,0,0,0},{32433,2194,11931,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 32452, 32457, {32462, 32478, 32486, 32494, 32503, 32515, 32525}, {32535, 32541, 32547, 32551, 32555, 32563, 3639}, {0, 0, 0, 0, 0, 0, 0}, {32570, 32583, 32597, 32606, 32612, 32616, 32621, 32629, 16250, 32642, 16267, 16275, 0}, {32570, 32583, 32597, 32606, 32612, 32616, 32621, 32629, 16250, 32642, 16267, 16275, 0}, {32651, 2655, 32655, 16283, 32612, 32659, 2672, 32663, 2680, 32671, 2688, 16295, 0}, {32651, 2655, 32655, 16283, 32612, 32659, 2672, 32663, 2680, 32671, 2688, 16295, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {32677, 32700, 32707, {32714, 32724, 32734, 32744, 32754, 32764, 32774}, {32784, 32791, 32798, 32805, 32812, 32819, 32826}, {32833, 32837, 32841, 32845, 32849, 32853, 32857}, {32861, 32868, 32875, 32882, 32889, 32896, 32903, 32910, 32917, 32924, 32931, 32941, 0}, {32861, 32868, 32875, 32882, 32889, 32896, 32903, 32910, 32917, 32924, 32931, 32941, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, {6528, 6530, 6532, 6534, 6536, 6538, 6540, 6542, 6544, 6546, 6549, 6552, 0}, 0, 0, 185, 187, {1518,1527,1536,1567,1556,1545,0,0,0,0,0,0,0,0},{32951,32975,33005,33035,33052,0,0,0,0,0},{1722,843,251,0,0,0,0,0,0,0,0,0},{1739,848,269,0,0,0,0,0,0},{33075,1805,0,0,0,0,0,0}},
-       {289, 0, 0, {27951, 8298, 33092, 33099, 33109, 33114, 33121}, {33128, 6196, 33132, 4800, 33137, 33142, 33147}, {4392, 33152, 33155, 33158, 33161, 33164, 33167}, {33170, 33177, 33092, 33188, 33194, 33198, 33207, 33214, 33219, 33228, 33233, 33236, 0}, {33170, 33177, 33092, 33188, 33194, 33198, 33207, 33214, 33219, 33228, 33233, 33236, 0}, {33242, 33246, 33253, 28074, 33194, 33258, 33263, 33214, 33268, 33228, 33233, 33273, 0}, {33242, 33246, 33253, 28074, 33194, 33258, 33263, 33214, 33268, 33228, 33233, 33273, 0}, 2, 1, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{16078,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {33430, 33446, 33451, {33456, 33481, 33510, 33535, 33548, 33563, 33580}, {33595, 33600, 33605, 33610, 33615, 33620, 8599}, {19210, 19210, 33625, 8610, 8613, 19210, 8610}, {33628, 33647, 33662, 33684, 33704, 33720, 33736, 33750, 33776, 33800, 33817, 33834, 0}, {33628, 33647, 33662, 33684, 33704, 33720, 33736, 33750, 33776, 33800, 33817, 33834, 0}, {33851, 33860, 33869, 33883, 33897, 33909, 33921, 33931, 33947, 33961, 33968, 33975, 0}, {33851, 33860, 33869, 33883, 33897, 33909, 33921, 33931, 33947, 33961, 33968, 33975, 0}, 0, 1, 691, 187, {2154,4724,1556,33982,33992,0,0,0,0,0,0,0,0,0},{34005,34040,34069,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{34104,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {34120, 34132, 34143, 34155, 34167, 34177, 34189}, {34204, 34209, 34214, 34219, 34224, 34229, 34234}, {0, 0, 0, 0, 0, 0, 0}, {34239, 34248, 34260, 34268, 34273, 34283, 34290, 34299, 34306, 34312, 34321, 34332, 0}, {34239, 34248, 34260, 34268, 34273, 34283, 34290, 34299, 34306, 34312, 34321, 34332, 0}, {34340, 34345, 34350, 34355, 34360, 34365, 34370, 34224, 34375, 34380, 34385, 34390, 0}, {34340, 34345, 34350, 34355, 34360, 34365, 34370, 34224, 34375, 34380, 34385, 34390, 0}, 0, 0, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {34395, 34406, 34408, {34410, 34423, 34431, 34440, 34450, 34460, 34469}, {34481, 34485, 34489, 34493, 34497, 34501, 34505}, {2565, 2308, 2300, 7600, 12692, 5644, 1914}, {34509, 34523, 34534, 34543, 34554, 34566, 34580, 34592, 34605, 34618, 34630, 34643, 0}, {34509, 34523, 34534, 34543, 34554, 34566, 34580, 34592, 34605, 34618, 34630, 34643, 0}, {34657, 34662, 34668, 34674, 34679, 34685, 34691, 34696, 34702, 34707, 18931, 34713, 0}, {34657, 34662, 34668, 34674, 34679, 34685, 34691, 34696, 34702, 34707, 18931, 34713, 0}, 2, 1, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{34719,34741,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {1288, 1295, 1302, 1309, 1316, 1323, 1330}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1518,1527,1536,1545,1556,1567,1578,1585,1592,1599,0,0,0,0},{1608,1630,1658,1686,1701,0,0,0,0,0},{843,251,1722,1730,0,0,0,0,0,0,0,0},{848,269,1739,1750,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {35112, 2471, 2477, {2484, 2492, 2499, 2508, 2517, 2528, 2536}, {2544, 2547, 2550, 2553, 2556, 2559, 2562}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 2, 1, 691, 187, {2154,0,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 8022, 21796, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 2, 1, 185, 187, {198,189,3483,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,3502,10640,0,0,0,0,0,0},{251,843,242,3532,0,0,0,0,0,0,0,0},{269,848,257,3540,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3821, 7261, 7266, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {35121, 6196, 4795, 35126, 35132, 35137, 35141}, {2565, 2308, 2300, 29116, 3925, 3927, 1914}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {35147, 5753, 35151, 1086, 35156, 2410, 2414, 1096, 1100, 1105, 1110, 35160, 0}, {35147, 5753, 35151, 1086, 35156, 2410, 2414, 1096, 1100, 1105, 1110, 35160, 0}, 0, 0, 185, 187, {198,3490,189,4149,3483,2451,1556,0,0,0,0,0,0,0},{4164,4219,0,0,0,0,0,0,0,0},{242,3532,843,251,0,0,0,0,0,0,0,0},{257,3540,848,269,0,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 2, 1, 2438, 187, {2451,198,189,2440,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,843,4246,4961,4971,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {35165, 1820, 1823, {6130, 6139, 6147, 6156, 6167, 6176, 6185}, {6192, 6196, 2402, 6200, 6204, 6208, 6212}, {2565, 2308, 2300, 2300, 6216, 3927, 1914}, {6218, 6226, 3943, 6235, 6242, 6249, 6256, 3972, 6263, 6273, 6281, 6290, 0}, {6299, 6307, 4032, 6316, 6323, 6330, 6337, 4055, 6344, 6354, 1058, 6362, 0}, {6371, 2398, 2402, 2406, 6375, 6379, 6383, 6387, 6391, 6395, 2430, 6399, 0}, {6371, 2398, 2402, 2406, 6375, 6379, 6383, 6387, 6391, 6395, 2430, 6399, 0}, 2, 1, 691, 187, {2154,14774,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{35173,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {7271, 7278, 7286, 7294, 7303, 7313, 7321}, {7330, 4395, 7333, 7336, 7339, 7342, 7345}, {7348, 2300, 2565, 3643, 2565, 3927, 7348}, {7350, 7358, 7367, 2331, 7373, 2341, 2346, 7377, 2358, 2368, 2376, 2385, 0}, {7350, 7358, 7367, 2331, 7373, 2341, 2346, 7377, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 7386, 2406, 7373, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 7386, 2406, 7373, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 185, 187, {14753,4149,2451,2696,7399,1556,0,0,0,0,0,0,0,0},{4935,3747,3520,5498,0,0,0,0,0,0},{843,251,35183,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 35193, 35198, {2217, 9837, 35203, 2240, 2247, 2255, 35210}, {2270, 9865, 35218, 2283, 2287, 2291, 35222}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 2, 1, 691, 187, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3821, 7261, 7266, {3833, 7830, 7844, 7857, 7870, 7883, 3880}, {6192, 7895, 7899, 7903, 7907, 7911, 7915}, {2565, 1914, 2302, 7920, 7920, 1914, 1914}, {35226, 35234, 35244, 3949, 29135, 35251, 35257, 3972, 29152, 29161, 29169, 35263, 0}, {35226, 35234, 35244, 3949, 29135, 35251, 35257, 3972, 29152, 29161, 29169, 35263, 0}, {2651, 20033, 3699, 29229, 2594, 2668, 2672, 19914, 18218, 29242, 2688, 2692, 0}, {2651, 20033, 3699, 29229, 2594, 2668, 2672, 19914, 18218, 29242, 2688, 2692, 0}, 2, 1, 185, 187, {198,2154,2440,189,2696,2451,1545,1567,1556,1599,35272,6936,0,0},{4219,4164,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {289, 9823, 9826, {9829, 9837, 9845, 2240, 2247, 2255, 9852}, {9860, 9865, 9870, 2283, 2287, 2291, 9874}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {7350, 7358, 4837, 2331, 2337, 2341, 2346, 9879, 2358, 2368, 2376, 2385, 0}, {7350, 7358, 4837, 2331, 2337, 2341, 2346, 9879, 2358, 2368, 2376, 2385, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 2418, 2422, 2426, 2430, 2434, 0}, 2, 1, 2438, 187, {2440,1129,0,0,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {35281, 35292, 35316, 35346, 35363, 35385, 35394}, {14921, 14924, 14929, 14935, 14939, 7600, 14944}, {6540, 6528, 6530, 6532, 6534, 6536, 6538}, {35405, 35418, 501, 35431, 521, 35442, 35451, 542, 35460, 35477, 35492, 35505, 0}, {35405, 35418, 501, 35431, 521, 35442, 35451, 542, 35460, 35477, 35492, 35505, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, 0, 1, 691, 187, {2154,2696,8015,189,1556,0,0,0,0,0,0,0,0,0},{3520,5455,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 7261, 7266, {18648, 18662, 18672, 18683, 18697, 18708, 18719}, {18732, 18737, 18742, 18749, 18755, 18761, 18767}, {2565, 2308, 2300, 7600, 2565, 12692, 1914}, {18772, 18780, 18788, 18795, 18804, 18814, 18824, 18830, 18838, 18853, 18871, 18879, 0}, {18772, 18780, 18788, 18795, 18804, 18814, 18824, 18830, 18838, 18853, 18871, 18879, 0}, {18887, 18891, 18788, 18897, 18901, 18906, 18824, 18912, 18917, 18924, 18931, 18936, 0}, {18887, 18891, 18788, 18897, 18901, 18906, 18824, 18912, 18917, 18924, 18931, 18936, 0}, 2, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {35518, 35533, 35548, 35563, 35580, 35597, 35606}, {35617, 35624, 35631, 35638, 35645, 19574, 35652}, {35659, 19207, 8610, 8613, 8607, 19204, 19588}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, 0, 1, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {1, 20069, 20097, {20119, 20138, 20157, 20182, 20201, 20235, 20260}, {20279, 20289, 20299, 20315, 20325, 20350, 20366}, {20376, 20380, 20387, 20391, 20398, 20405, 20412}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, {20416, 20444, 20478, 20494, 20513, 20520, 20530, 20546, 20562, 20593, 20615, 20637, 0}, 0, 5, 2438, 691, {2451,4157,8015,2440,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{4246,4241,20662,20671,0,0,0,0,0,0,0,0},{4268,4260,20679,20691,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {34757, 34764, 34771, 34778, 34785, 34792, 34799}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1120,3483,189,1578,1599,1518,1545,1556,0,0,0,0,0,0},{1608,6555,1686,1701,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {35112, 2471, 2477, {2484, 2492, 2499, 2508, 2517, 2528, 2536}, {2544, 2547, 2550, 2553, 2556, 2559, 2562}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {35791, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {35791, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {35799, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {35799, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 2, 1, 691, 187, {2154,0,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {14753,4149,3483,1120,189,198,3747,5468,1556,1599,1545,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,843,251,0,0,0,0,0,0,0,0,0},{3540,848,269,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3821, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 2, 1, 185, 187, {198,189,4149,3483,4157,2451,2696,1556,0,0,0,0,0,0},{4164,4192,4219,0,0,0,0,0,0,0},{843,251,4241,4246,4252,0,0,0,0,0,0,0},{848,269,4260,4268,4277,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 0, 0, 2438, 187, {1556,6936,2451,35804,189,3490,0,0,0,0,0,0,0,0},{3520,1129,0,0,0,0,0,0,0,0},{251,843,4246,4961,4971,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {35813, 18295, 18300, {35826, 35834, 35842, 35850, 35862, 35871, 35883}, {18385, 18390, 18395, 18400, 18405, 18410, 18415}, {1914, 2300, 2565, 6216, 2565, 16338, 2308}, {18420, 18437, 18450, 18464, 18477, 18490, 18503, 18517, 18529, 18543, 18557, 18571, 0}, {18420, 18437, 18450, 18464, 18477, 18490, 18503, 18517, 18529, 18543, 18557, 18571, 0}, {35894, 35905, 35912, 35920, 35927, 35934, 35941, 35949, 35955, 35963, 35971, 35979, 0}, {35894, 35905, 35912, 35920, 35927, 35934, 35941, 35949, 35955, 35963, 35971, 35979, 0}, 2, 1, 691, 187, {4724,2154,8015,1556,0,0,0,0,0,0,0,0,0,0},{35986,36012,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,0,0,0,0,0,0,0,0,0,0},{257,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {1288, 1295, 1302, 1309, 1316, 1323, 1330}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1120,3483,189,1578,1599,1518,1545,1556,0,0,0,0,0,0},{1608,6555,1686,34806,0,0,0,0,0,0},{1722,1730,843,251,0,0,0,0,0,0,0,0},{1739,1750,848,269,0,0,0,0,0},{1762,1778,1791,0,0,0,0,0}},
-       {35112, 2471, 2477, {2484, 2492, 2499, 2508, 2517, 2528, 2536}, {2544, 2547, 2550, 2553, 2556, 2559, 2562}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 2, 1, 691, 187, {2154,0,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 2438, 187, {1556,198,189,3483,6936,36030,3747,14785,1556,0,0,0,0,0},{3776,31111,36038,6411,0,0,0,0,0,0},{3532,242,251,843,0,0,0,0,0,0,0,0},{3540,257,269,848,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {14753,0,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {35165, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 2, 1, 691, 187, {2154,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{35173,0,0,0,0,0,0,0}},
-       {1812, 1820, 1823, {8986, 8995, 9007, 9014, 9022, 9032, 9038}, {9045, 9049, 9053, 9057, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {9085, 9095, 9104, 9112, 9120, 9128, 9135, 9142, 9150, 1993, 9156, 9164, 0}, {9173, 9183, 9192, 9200, 9208, 9216, 9223, 9230, 9239, 7775, 9245, 9255, 0}, {9264, 9268, 9273, 9278, 9282, 7809, 2130, 9286, 9290, 2146, 9294, 2150, 0}, {9264, 9268, 9273, 9278, 9282, 7809, 2130, 9286, 9290, 2146, 9294, 2150, 0}, 0, 1, 691, 187, {9328,36107,0,0,0,0,0,0,0,0,0,0,0,0},{9401,9372,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, 0, 6, 2438, 187, {2440,2451,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{843,251,242,0,0,0,0,0,0,0,0,0},{848,269,257,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {34757, 34764, 34771, 34778, 34785, 34792, 34799}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1120,3483,189,1578,1599,1518,1545,1556,0,0,0,0,0,0},{1608,36200,36227,2460,1686,34806,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {35112, 2471, 2477, {2484, 2492, 2499, 2508, 2517, 2528, 2536}, {2544, 2547, 2550, 2553, 2556, 2559, 2562}, {1914, 2300, 2565, 2300, 2565, 2306, 1914}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2567, 2574, 2582, 2588, 2594, 2598, 2603, 2608, 2615, 2625, 2633, 2642, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, {2651, 2655, 2659, 2664, 2594, 2668, 2672, 2676, 2680, 2684, 2688, 2692, 0}, 2, 1, 691, 187, {2154,0,0,0,0,0,0,0,0,0,0,0,0,0},{2719,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {36243, 7261, 7266, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {14753,0,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 1, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 2, 1, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {8986, 8995, 9007, 9014, 9022, 9032, 9038}, {9045, 9049, 9053, 9057, 9061, 9066, 9070}, {0, 0, 0, 0, 0, 0, 0}, {2310, 2317, 15032, 2331, 2337, 2341, 2346, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2341, 2346, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 187, {9328,36314,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 36164, 35706, 36350, 36363, 36370, 35752, 36381, 36392, 0}, {35662, 35673, 13477, 35686, 36164, 35706, 36350, 36363, 36370, 35752, 36381, 36392, 0}, {35662, 35673, 13477, 35686, 36164, 35706, 36350, 36363, 36370, 35752, 36381, 36392, 0}, {35662, 35673, 13477, 35686, 36164, 35706, 36350, 36363, 36370, 35752, 36381, 36392, 0}, 0, 6, 2438, 187, {2440,2451,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{843,251,242,0,0,0,0,0,0,0,0,0},{848,269,257,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36243, 7261, 7266, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 2, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,3532,0,0,0,0,0,0,0,0,0,0},{269,3540,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36403, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {3736,0,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {4733, 4742, 4748, 4754, 4763, 4769, 4778}, {4785, 4790, 4795, 4800, 4805, 4810, 4815}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4820, 4828, 4837, 4842, 4848, 4852, 4857, 4865, 4871, 4881, 1058, 4889, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, {4899, 4905, 4837, 4912, 4848, 4852, 4917, 4865, 4923, 1105, 1110, 4929, 0}, 2, 1, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{4935,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {11820, 36411, 9007, 11845, 9022, 9032, 9038}, {9045, 9049, 9053, 11866, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 187, {9298,9328,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{251,4246,0,0,0,0,0,0,0,0,0,0},{269,4268,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, {36131, 36142, 13477, 36153, 36164, 36171, 36180, 36193, 35739, 35752, 35765, 35778, 0}, 0, 0, 2438, 187, {2440,2451,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{843,251,242,0,0,0,0,0,0,0,0,0},{848,269,257,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {1545,9951,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1812, 36422, 36440, {36455, 36468, 36487, 36500, 36515, 36532, 10761}, {36543, 36550, 36557, 36564, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 15738, 15747, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 15738, 15747, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 187, {9298,9328,0,0,0,0,0,0,0,0,0,0,0,0},{2194,11931,2719,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36243, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {24184, 36422, 36440, {36455, 36468, 36487, 36500, 36515, 36532, 10761}, {36543, 36550, 36557, 36564, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 15738, 15747, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 15738, 15747, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 187, {4724,8015,2165,2154,36768,2696,36777,1556,0,0,0,0,0,0},{2194,11931,2719,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 0, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {14753,0,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {11820, 36411, 9007, 11845, 9022, 9032, 9038}, {9045, 9049, 9053, 11866, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 691, {9298,9328,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {198,14785,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {14753,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1812, 36422, 36440, {36455, 36468, 36487, 8513, 36515, 36532, 10761}, {36543, 36550, 36557, 36788, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 187, {9328,0,0,0,0,0,0,0,0,0,0,0,0,0},{9372,9386,9401,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36795,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {11820, 36411, 9007, 11845, 9022, 9032, 9038}, {9045, 9049, 9053, 11866, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 691, {9298,9328,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, {34944, 34968, 34977, 34986, 34997, 35006, 35019, 35028, 35033, 35044, 35066, 35090, 0}, 0, 1, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {1120,36805,0,0,0,0,0,0,0,0,0,0,0,0},{10640,5455,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 1, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1812, 36422, 36440, {36455, 36468, 36487, 8513, 36515, 36532, 10761}, {36543, 36550, 36557, 36788, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 187, {9298,9308,9316,9328,9340,9350,9360,36817,0,0,0,0,0,0},{9372,9386,9401,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {198,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 1, 2438, 187, {2440,0,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{36795,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 1, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{843,251,242,3532,0,0,0,0,0,0,0,0},{848,269,257,3540,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {1, 34826, 34829, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34832, 34843, 34858, 34875, 34892, 34905, 34918}, {34929, 34932, 34935, 34938, 34941, 13447, 13438}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, {35662, 35673, 13477, 35686, 35697, 35706, 35717, 35728, 35739, 35752, 35765, 35778, 0}, 0, 6, 185, 187, {198,189,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{242,251,843,0,0,0,0,0,0,0,0,0},{257,269,848,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {289, 8022, 21796, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 2438, 187, {2440,2451,4157,8015,1556,0,0,0,0,0,0,0,0,0},{5455,3520,0,0,0,0,0,0,0,0},{251,843,242,0,0,0,0,0,0,0,0,0},{269,848,36829,257,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {289, 8022, 21796, {3558, 3565, 3572, 3580, 3590, 3599, 3606}, {3615, 3619, 3623, 3627, 3631, 3635, 3639}, {1914, 2300, 2302, 3643, 2302, 2306, 1914}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {3645, 3653, 3662, 2588, 3668, 3672, 3677, 2608, 2615, 3682, 2633, 3690, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, {2651, 2655, 3699, 2664, 3668, 2668, 2672, 2676, 2680, 3703, 2688, 3707, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{3502,3520,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36840,36868,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {36049, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {1120,1129,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{1180,0,0,0,0,0,0,0}},
-       {36403, 872, 878, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {3736,0,0,0,0,0,0,0,0,0,0,0,0,0},{36057,36085,0,0,0,0,0,0,0,0},{3532,251,0,0,0,0,0,0,0,0,0,0},{3540,269,0,0,0,0,0,0,0},{36250,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {3833, 3841, 3847, 3854, 3865, 3872, 3880}, {3888, 3893, 3898, 3903, 3909, 3914, 3919}, {2565, 2308, 2300, 2300, 3925, 3927, 1914}, {3929, 3935, 3943, 3949, 3955, 3960, 3966, 3972, 3979, 3990, 3998, 4008, 0}, {4018, 4024, 4032, 1012, 4038, 4043, 4049, 4055, 4062, 1050, 4073, 4083, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, {4093, 4098, 3898, 4103, 4108, 4113, 4118, 4123, 4128, 4134, 4139, 4144, 0}, 0, 0, 185, 187, {3711,3720,3727,3736,1599,1556,3747,0,0,0,0,0,0,0},{31111,31131,222,10501,0,0,0,0,0,0},{3532,242,843,251,0,0,0,0,0,0,0,0},{3540,257,848,269,0,0,0,0,0},{4288,0,0,0,0,0,0,0}},
-       {24184, 36422, 36440, {36455, 36468, 36487, 36500, 36515, 36532, 10761}, {36543, 36550, 36557, 36564, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 15738, 15747, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 15738, 15747, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 187, {4724,8015,2165,2154,36768,2696,36777,1556,0,0,0,0,0,0},{2194,11931,2719,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {8986, 8995, 9007, 9014, 9022, 9032, 9038}, {9045, 9049, 9053, 9057, 9061, 9066, 9070}, {0, 0, 0, 0, 0, 0, 0}, {2310, 2317, 15032, 2331, 2337, 2341, 2346, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2341, 2346, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 187, {9328,36314,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1812, 36422, 36440, {36455, 36468, 36487, 8513, 36515, 36532, 10761}, {36543, 36550, 36557, 36788, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 187, {9328,0,0,0,0,0,0,0,0,0,0,0,0,0},{9372,9386,9401,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {11820, 36411, 9007, 11845, 9022, 9032, 9038}, {9045, 9049, 9053, 11866, 9061, 9066, 9070}, {9074, 9076, 9078, 9080, 9082, 9076, 9080}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2410, 2414, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 691, {9298,9328,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {35281, 35292, 35316, 35346, 35363, 35385, 35394}, {14921, 14924, 14929, 14935, 14939, 7600, 14944}, {6540, 6528, 6530, 6532, 6534, 6536, 6538}, {35405, 35418, 501, 35431, 521, 35442, 35451, 542, 35460, 35477, 35492, 35505, 0}, {35405, 35418, 501, 35431, 521, 35442, 35451, 542, 35460, 35477, 35492, 35505, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, 0, 1, 691, 187, {2154,2696,8015,189,1556,0,0,0,0,0,0,0,0,0},{3520,5455,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {1288, 1295, 1302, 1309, 1316, 1323, 1330}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1365, 1372, 1379, 1386, 1393, 1400, 1407, 1414, 1421, 1428, 1435, 1445, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1518,1527,1536,1545,1556,1567,1578,1585,1592,1599,0,0,0,0},{1608,1630,1658,1686,1701,0,0,0,0,0},{843,251,1722,1730,0,0,0,0,0,0,0,0},{848,269,1739,1750,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {1812, 35193, 35198, {2217, 9837, 35203, 2240, 2247, 2255, 35210}, {2270, 9865, 35218, 2283, 2287, 2291, 35222}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 2, 1, 691, 187, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 36260, 36270, {8986, 8995, 9007, 9014, 9022, 9032, 9038}, {9045, 9049, 9053, 9057, 9061, 9066, 9070}, {0, 0, 0, 0, 0, 0, 0}, {2310, 2317, 15032, 2331, 2337, 2341, 2346, 11888, 36278, 36288, 36296, 36305, 0}, {2310, 2317, 15032, 2331, 2337, 2341, 2346, 11888, 36278, 36288, 36296, 36305, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, {2394, 2398, 2402, 2406, 2337, 2410, 2414, 11895, 2422, 2426, 2430, 2434, 0}, 0, 1, 691, 187, {9328,36314,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {289, 1820, 1823, {14832, 14838, 14852, 14875, 14889, 14905, 14912}, {14921, 14924, 14929, 14935, 14939, 7600, 14944}, {6540, 6528, 6530, 6532, 6534, 6536, 6538}, {14948, 14955, 10132, 14962, 3668, 14968, 14974, 14980, 14987, 14996, 15004, 15011, 0}, {15018, 15025, 15032, 15037, 15043, 15047, 15052, 15057, 15064, 15073, 15081, 15088, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, {15095, 7999, 2402, 2406, 15043, 15099, 15103, 15107, 15111, 2426, 15115, 15119, 0}, 0, 1, 691, 187, {2154,1129,0,0,0,0,0,0,0,0,0,0,0,0},{15123,3520,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {35518, 35533, 35548, 35563, 35580, 35597, 35606}, {35617, 35624, 35631, 35638, 35645, 19574, 35652}, {35659, 19207, 8610, 8613, 8607, 19204, 19588}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, 0, 1, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {3551, 25903, 25908, {25913, 25920, 25931, 25944, 25957, 25968, 25981}, {25992, 25997, 26002, 26007, 26012, 26017, 26022}, {6528, 6530, 6532, 6534, 6536, 6538, 6540}, {26027, 26053, 26081, 26111, 26141, 26167, 26197, 26223, 26251, 26275, 26303, 26340, 0}, {26027, 26053, 26081, 26111, 26141, 26167, 26197, 26223, 26251, 26275, 26303, 26340, 0}, {26379, 26391, 26403, 26415, 26427, 26439, 26451, 26463, 26475, 26487, 26500, 26513, 0}, {26379, 26391, 26403, 26415, 26427, 26439, 26451, 26463, 26475, 26487, 26500, 26513, 0}, 0, 0, 2438, 187, {1556,15492,0,0,0,0,0,0,0,0,0,0,0,0},{26526,26564,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {34757, 34764, 34771, 34778, 34785, 34792, 34799}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1120,3483,189,1578,1599,1518,1545,1556,0,0,0,0,0,0},{1608,6555,1686,1701,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {1195, 1204, 1211, {1218, 1228, 1238, 1248, 1258, 1268, 1278}, {34757, 34764, 34771, 34778, 34785, 34792, 34799}, {1337, 1341, 1345, 1349, 1353, 1357, 1361}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, {1455, 1460, 1465, 1470, 1475, 1480, 1485, 1490, 1495, 1500, 1506, 1512, 0}, 0, 0, 185, 187, {1120,3483,189,1578,1599,1518,1545,1556,0,0,0,0,0,0},{1608,6555,1686,1701,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{1762,1778,1791,1805,0,0,0,0}},
-       {7465, 7261, 7266, {2217, 2225, 2232, 2240, 2247, 2255, 2262}, {7473, 7478, 7482, 7486, 7490, 7494, 7498}, {1914, 2300, 2302, 2304, 2302, 2306, 2308}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2310, 2317, 4837, 2331, 4848, 2341, 2346, 2351, 2358, 2368, 2376, 6086, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, {2394, 2398, 2402, 2406, 4848, 2410, 2414, 2418, 2422, 2426, 2430, 7503, 0}, 2, 1, 691, 691, {2154,6118,0,0,0,0,0,0,0,0,0,0,0,0},{2176,2194,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {1812, 36422, 36440, {36455, 36468, 36487, 8513, 36515, 36532, 10761}, {36543, 36550, 36557, 36788, 36571, 36578, 36585}, {456, 459, 36592, 465, 468, 459, 465}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36595, 36608, 501, 510, 15731, 36719, 36726, 542, 36623, 36642, 36657, 36674, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, {36691, 36698, 36705, 36712, 15731, 36719, 36726, 36733, 36740, 36747, 36754, 36761, 0}, 0, 1, 691, 691, {9298,9328,0,0,0,0,0,0,0,0,0,0,0,0},{36329,9386,0,0,0,0,0,0,0,0},{4246,0,0,0,0,0,0,0,0,0,0,0},{4268,0,0,0,0,0,0,0,0},{36120,0,0,0,0,0,0,0}},
-       {1, 12926, 12938, {12950, 12965, 12980, 12995, 13012, 13031, 13042}, {13053, 13060, 13067, 13074, 13081, 13088, 13095}, {0, 0, 0, 0, 0, 0, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13102, 13113, 8644, 13126, 8666, 13137, 13144, 8691, 13151, 13166, 13179, 13190, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, {13203, 13210, 13217, 13224, 8666, 13137, 13144, 13231, 13238, 13245, 13252, 13259, 0}, 0, 1, 691, 187, {2154,2696,8015,2440,189,0,0,0,0,0,0,0,0,0},{13266,13284,0,0,0,0,0,0,0,0},{251,843,0,0,0,0,0,0,0,0,0,0},{269,848,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}},
-       {3551, 1820, 1823, {19918, 19928, 19937, 19946, 19957, 19967, 19972}, {19979, 19985, 19990, 19995, 20000, 10578, 20004}, {20009, 2565, 1914, 7600, 1909, 3925, 1914}, {14948, 14955, 10132, 14962, 3668, 20011, 20016, 20021, 14987, 14996, 15004, 15011, 0}, {14948, 14955, 10132, 14962, 3668, 20011, 20016, 20021, 14987, 14996, 15004, 15011, 0}, {20028, 20033, 3699, 2664, 3668, 20011, 20016, 20037, 10562, 2684, 20041, 20046, 0}, {20028, 20033, 3699, 2664, 3668, 20011, 20016, 20037, 10562, 2684, 20041, 20046, 0}, 0, 1, 185, 187, {1545,15492,0,0,0,0,0,0,0,0,0,0,0,0},{20050,16096,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{12916,0,0,0,0,0,0,0}},
-       {289, 30416, 30426, {30439, 30446, 30452, 30459, 30465, 30471, 30479}, {30489, 30493, 30497, 30501, 30505, 30509, 30513}, {12692, 12692, 12692, 12692, 12692, 12692, 12692}, {30519, 30528, 30537, 30542, 30548, 30554, 30560, 30567, 30573, 30582, 30591, 30599, 0}, {30519, 30528, 30537, 30542, 30548, 30554, 30560, 30567, 30573, 30582, 30591, 30599, 0}, {30608, 30612, 3699, 30616, 3668, 30620, 30624, 30628, 30633, 30637, 30643, 30647, 0}, {30608, 30612, 3699, 30616, 3668, 30620, 30624, 30628, 30633, 30637, 30643, 30647, 0}, 0, 0, 2438, 187, {2440,2451,1556,0,0,0,0,0,0,0,0,0,0,0},{10501,222,0,0,0,0,0,0,0,0},{843,251,0,0,0,0,0,0,0,0,0,0},{848,269,0,0,0,0,0,0,0},{278,0,0,0,0,0,0,0}},
-       {3551, 0, 0, {31414, 31421, 31429, 31436, 31443, 31451, 31459}, {31466, 31469, 31472, 31475, 31478, 31481, 31484}, {2308, 2308, 2302, 2308, 12692, 3925, 12692}, {31487, 31495, 31505, 31511, 31519, 31524, 31529, 31534, 31541, 19899, 31549, 31557, 0}, {31487, 31495, 31505, 31511, 31519, 31524, 31529, 31534, 31541, 19899, 31549, 31557, 0}, {2651, 31565, 3699, 31569, 3668, 30620, 30624, 31573, 3639, 2684, 31577, 16295, 0}, {2651, 31565, 3699, 31569, 3668, 30620, 30624, 31573, 3639, 2684, 31577, 16295, 0}, 0, 0, 185, 187, {1120,17272,0,0,0,0,0,0,0,0,0,0,0,0},{3789,3808,0,0,0,0,0,0,0,0},{251,0,0,0,0,0,0,0,0,0,0,0},{269,0,0,0,0,0,0,0,0},{2207,0,0,0,0,0,0,0}}
+       {1, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, 0, 6, 1, 3, {9,18,0,0,0,0,0,0,0,0,0,0,0,0},{29,42,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 5, 8, {177, 190, 211, 226, 237, 256, 267}, {280, 285, 290, 295, 300, 305, 310}, {315, 318, 321, 324, 327, 318, 324}, {330, 343, 360, 369, 380, 387, 394, 401, 414, 433, 450, 465, 0}, {330, 343, 360, 369, 380, 387, 394, 401, 414, 433, 450, 465, 0}, {482, 489, 360, 496, 380, 387, 394, 503, 510, 517, 524, 531, 0}, {482, 489, 360, 496, 380, 387, 394, 503, 510, 517, 524, 531, 0}, 2, 1, 11, 3, {116,131,147,163,0,0,0,0,0,0,0,0,0,0},{180,199,217,242,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{279,0,0,0,0,0,0,0}},
+       {109, 13, 19, {538, 547, 555, 563, 572, 579, 589}, {598, 602, 606, 610, 614, 618, 622}, {626, 629, 632, 635, 638, 641, 644}, {647, 653, 660, 666, 672, 677, 682, 689, 695, 704, 712, 721, 0}, {730, 739, 749, 758, 768, 776, 784, 794, 804, 816, 828, 840, 0}, {852, 857, 660, 863, 672, 677, 868, 873, 877, 882, 887, 892, 0}, {852, 857, 660, 863, 672, 677, 868, 873, 877, 882, 887, 892, 0}, 2, 1, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{315,338,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {967, 974, 981, 988, 995, 1002, 1009}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {379,388,397,406,417,428,439,446,453,460,0,0,0,0},{469,491,519,547,562,0,0,0,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {967, 974, 981, 988, 995, 1002, 1009}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {379,388,397,406,417,428,439,446,453,460,0,0,0,0},{469,491,519,547,562,0,0,0,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {673, 39, 44, {1197, 1205, 1215, 1223, 1231, 1240, 1247}, {1254, 1257, 1260, 1264, 1267, 1271, 1275}, {1278, 1280, 1282, 1285, 1287, 1280, 1285}, {1290, 1296, 1302, 1310, 1316, 1324, 1332, 1342, 1348, 1356, 1364, 1373, 0}, {1382, 1388, 1395, 1403, 1409, 1417, 1425, 1435, 1348, 1441, 1449, 1459, 0}, {1468, 1472, 1477, 1482, 1486, 1491, 1496, 1501, 1505, 1511, 1517, 1521, 0}, {1468, 1472, 1477, 1482, 1486, 1491, 1496, 1501, 1505, 1511, 1517, 1521, 0}, 2, 1, 11, 3, {681,692,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 49, 52, {1525, 1533, 1540, 1548, 1555, 1563, 1570}, {1578, 1583, 1587, 1591, 1595, 1599, 1603}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 1633, 1639, 1645, 1649, 1654, 1659, 1666, 1676, 1684, 1693, 0}, {1618, 1625, 1633, 1639, 1645, 1649, 1654, 1659, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {744,755,417,764,0,0,0,0,0,0,0,0,0,0},{721,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 57, 63, {1747, 1755, 1762, 1771, 1780, 1791, 1799}, {1807, 1810, 1813, 1816, 1819, 1822, 1825}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {681,775,417,784,0,0,0,0,0,0,0,0,0,0},{798,721,817,0,0,0,0,0,0,0},{71,830,0,0,0,0,0,0,0,0,0,0},{89,842,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 70, 77, {1959, 1974, 1989, 2000, 2015, 2028, 2047}, {2062, 2069, 2076, 2083, 2090, 2097, 2104}, {2111, 2114, 2117, 2117, 2120, 2120, 2123}, {2126, 2147, 2170, 2185, 2202, 2213, 2228, 2243, 2262, 2285, 2304, 2323, 0}, {2344, 2365, 2388, 2403, 2420, 2431, 2446, 2461, 2480, 2503, 2522, 2541, 0}, {2562, 2569, 2576, 2583, 2590, 2597, 2606, 2615, 2622, 2629, 2636, 2643, 0}, {2562, 2569, 2576, 2583, 2590, 2597, 2606, 2615, 2622, 2629, 2636, 2643, 0}, 2, 1, 1, 3, {295,18,857,9,864,417,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {932,941,948,957,460,417,968,0,0,0,0,0,0,0},{978,997,1010,1029,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1042, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 2890, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, 0, 1, 1, 3, {18,9,1054,857,1062,755,775,417,0,0,0,0,0,0},{1069,1097,1124,0,0,0,0,0,0,0},{266,71,1146,1151,1157,0,0,0,0,0,0,0},{271,89,1165,1173,1182,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {673, 84, 88, {2997, 3009, 3021, 3031, 3045, 3055, 3067}, {3078, 3081, 3084, 3087, 3090, 3093, 3096}, {1285, 1608, 1610, 3099, 1610, 1280, 1616}, {3101, 3110, 3119, 3129, 3138, 3147, 3156, 3166, 3173, 3181, 3189, 3199, 0}, {3208, 3219, 3230, 3242, 3253, 3264, 3275, 3287, 3296, 3306, 3316, 3328, 0}, {3339, 3345, 3351, 3358, 3364, 3370, 3376, 3383, 3387, 3392, 3397, 3404, 0}, {3339, 3345, 3351, 3358, 3364, 3370, 3376, 3383, 3387, 3392, 3397, 3404, 0}, 2, 1, 11, 11, {1208,0,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{1146,0,0,0,0,0,0,0,0,0,0,0},{1165,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 1, 1, 3, {18,9,775,755,417,0,0,0,0,0,0,0,0,0},{1217,894,1234,0,0,0,0,0,0,0},{71,266,1151,1243,1253,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 92, 105, {3596, 3614, 3628, 3646, 3664, 3682, 3698}, {3712, 3724, 3736, 3748, 3760, 3772, 3784}, {3791, 3796, 3801, 3806, 3811, 3816, 3821}, {3826, 3837, 3850, 3857, 3868, 3875, 3884, 3893, 3906, 3919, 3934, 3947, 0}, {3826, 3837, 3850, 3857, 3868, 3875, 3884, 3893, 3906, 3919, 3934, 3947, 0}, {3958, 3967, 3850, 3976, 3868, 3875, 3884, 3985, 3994, 4003, 4012, 4021, 0}, {3958, 3967, 3850, 3976, 3868, 3875, 3884, 3985, 3994, 4003, 4012, 4021, 0}, 0, 0, 1, 3, {18,1261,9,29,755,744,1274,417,1287,1304,0,0,0,0},{1314,1261,1332,1354,1287,0,0,0,0,0},{71,62,0,0,0,0,0,0,0,0,0,0},{89,77,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1375, 116, 120, {4030, 4040, 4048, 4053, 4060, 4073, 4081}, {2894, 4089, 3099, 4091, 4095, 1280, 4098}, {2894, 4089, 3099, 4102, 4095, 1280, 4102}, {4105, 4113, 4122, 4131, 4140, 4147, 4155, 4163, 4173, 4184, 1684, 1693, 0}, {4105, 4113, 4122, 4131, 4140, 4147, 4155, 4163, 4173, 4184, 1684, 1693, 0}, {1702, 857, 4193, 4200, 4206, 4212, 4218, 1727, 4224, 1737, 887, 1742, 0}, {1702, 857, 4193, 4200, 4206, 4212, 4218, 1727, 4224, 1737, 887, 1742, 0}, 2, 1, 124, 3, {1383,1397,0,0,0,0,0,0,0,0,0,0,0,0},{1410,1430,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{1444,0,0,0,0,0,0,0}},
+       {673, 127, 132, {4231, 4242, 4253, 4267, 4281, 4293, 4305}, {4317, 4322, 4328, 4334, 4340, 4345, 4351}, {1285, 1608, 4356, 1608, 1614, 1614, 1616}, {4359, 4367, 3504, 4376, 4383, 4388, 4395, 4402, 1666, 4184, 4410, 4420, 0}, {4359, 4367, 3504, 4376, 4383, 4388, 4395, 4402, 1666, 4184, 4410, 4420, 0}, {1702, 1707, 1712, 1717, 4383, 4212, 4218, 4429, 1732, 1737, 4436, 892, 0}, {1702, 1707, 1712, 1717, 4383, 4212, 4218, 4429, 1732, 1737, 4436, 892, 0}, 2, 1, 11, 3, {1208,1455,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {4442, 4451, 4459, 4468, 4479, 4488, 4497}, {4504, 4508, 4512, 4516, 4520, 4524, 4528}, {1828, 1616, 1608, 1608, 4532, 2894, 1285}, {4534, 4542, 2910, 4551, 4558, 4565, 4572, 2933, 4579, 4589, 712, 4597, 0}, {4534, 4542, 2910, 4551, 4558, 4565, 4572, 2933, 4579, 4589, 712, 4597, 0}, {4606, 4610, 4512, 4614, 4618, 4622, 4626, 4630, 4634, 4638, 4642, 4646, 0}, {4606, 4610, 4512, 4614, 4618, 4622, 4626, 4630, 4634, 4638, 4642, 4646, 0}, 2, 1, 1, 3, {18,864,9,1467,857,0,0,0,0,0,0,0,0,0},{1217,1475,894,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {370, 137, 144, {4650, 4660, 4670, 4680, 4690, 4700, 4710}, {1016, 4720, 4724, 4728, 4732, 4736, 4740}, {1016, 4720, 4724, 4728, 4732, 4736, 4740}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, 0, 0, 1, 3, {406,460,439,379,417,0,0,0,0,0,0,0,0,0},{469,1484,1508,1535,1564,1588,1617,1637,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{623,1662,652,0,0,0,0,0}},
+       {1680, 49, 52, {4771, 4781, 4791, 4801, 4811, 4821, 4831}, {4841, 4845, 4849, 4853, 4857, 4861, 4865}, {4841, 4845, 4849, 4853, 4857, 4861, 4865}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, 0, 0, 55, 3, {417,1690,446,388,0,0,0,0,0,0,0,0,0,0},{1699,1728,1752,1779,1801,1832,1858,1889,1915,1942},{583,591,266,71,0,0,0,0,0,0,0,0},{600,611,271,89,0,0,0,0,0},{1964,1981,2000,0,0,0,0,0}},
+       {109, 151, 156, {4932, 4939, 4947, 4955, 4964, 4974, 4982}, {4991, 3081, 4994, 4997, 5000, 5003, 5006}, {5009, 1608, 1828, 2735, 1828, 2894, 5009}, {5011, 5019, 5028, 1639, 5034, 1649, 1654, 5038, 1666, 1676, 1684, 1693, 0}, {5011, 5019, 5028, 1639, 5034, 1649, 1654, 5038, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 5047, 1717, 5034, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 5047, 1717, 5034, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {2015,1062,755,9,775,2024,417,0,0,0,0,0,0,0},{1217,1475,894,1234,0,0,0,0,0,0},{71,266,1146,2036,2048,0,0,0,0,0,0,0},{89,271,2060,2075,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {2090, 151, 156, {1525, 1533, 1540, 1548, 1555, 1563, 1570}, {5052, 5058, 5063, 5068, 5073, 5078, 5083}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 0, 0, 11, 11, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {5117, 5127, 5141, 5148, 5155, 5164, 1247}, {5172, 5179, 5184, 5188, 5193, 5198, 5202}, {1278, 1280, 2735, 5207, 5210, 1280, 1285}, {5212, 5221, 5226, 5233, 1645, 5243, 5252, 5259, 5269, 5279, 1364, 5292, 0}, {5302, 5311, 5318, 5324, 5333, 5338, 5346, 5352, 5361, 5371, 5385, 5395, 0}, {5403, 5407, 4512, 5411, 1645, 5415, 5419, 5423, 5427, 5431, 1517, 5436, 0}, {5403, 5407, 4512, 5411, 1645, 5415, 5419, 5423, 5427, 5431, 1517, 5436, 0}, 2, 1, 11, 3, {681,0,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1042, 49, 52, {2803, 5440, 5454, 5467, 5480, 5493, 2850}, {4504, 5505, 5509, 5513, 5517, 5521, 5525}, {1828, 1285, 1610, 5530, 5530, 1285, 1285}, {5532, 5540, 5550, 666, 5557, 5562, 5568, 2933, 5574, 5583, 5591, 5600, 0}, {5532, 5540, 5550, 666, 5557, 5562, 5568, 2933, 5574, 5583, 5591, 5600, 0}, {5089, 5609, 4512, 5613, 3515, 5093, 5097, 4630, 4634, 5617, 4642, 5621, 0}, {5089, 5609, 4512, 5613, 3515, 5093, 5097, 4630, 4634, 5617, 4642, 5621, 0}, 0, 0, 1, 3, {18,9,295,857,755,744,1062,2015,775,681,2024,2098,1208,417},{1069,1124,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {673, 49, 52, {5625, 5634, 3425, 5644, 5652, 5660, 5669}, {5675, 5678, 3081, 5682, 5685, 5689, 1275}, {1828, 4532, 1608, 1608, 4532, 2894, 1285}, {5692, 5700, 3504, 5707, 5714, 5719, 5729, 5737, 5743, 5753, 1684, 1693, 0}, {5692, 5700, 3504, 5707, 5714, 5719, 5729, 5737, 5743, 5753, 1684, 1693, 0}, {5761, 5768, 3504, 3579, 5714, 5774, 5781, 5737, 5786, 882, 887, 1742, 0}, {5761, 5768, 3504, 3579, 5714, 5774, 5781, 5737, 5786, 882, 887, 1742, 0}, 2, 1, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{2105,2134,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 151, 156, {5792, 5802, 5807, 5814, 5823, 5827, 5834}, {5845, 2863, 1712, 5850, 5823, 5855, 5860}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {5866, 5875, 5885, 5892, 3515, 5900, 5906, 1659, 5912, 5923, 5933, 5943, 0}, {5866, 5875, 5885, 5892, 3515, 5900, 5906, 1659, 5912, 5923, 5933, 5943, 0}, {5953, 1707, 1712, 1717, 3515, 5958, 5963, 1727, 2986, 882, 887, 1742, 0}, {5953, 1707, 1712, 1717, 3515, 5958, 5963, 1727, 2986, 882, 887, 1742, 0}, 0, 1, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 161, 166, {5968, 5991, 211, 6014, 6025, 6040, 6055}, {6070, 285, 290, 295, 300, 305, 310}, {6075, 6078, 6075, 6081, 6084, 6078, 6081}, {6087, 6100, 360, 6115, 380, 6128, 6137, 401, 6146, 6163, 6178, 6191, 0}, {6206, 6219, 6234, 6245, 6258, 6265, 6274, 6283, 6298, 6315, 6330, 6343, 0}, {6358, 6366, 360, 6376, 380, 6128, 6137, 6384, 6392, 6402, 6410, 6420, 0}, {6358, 6366, 360, 6376, 380, 6128, 6137, 6384, 6392, 6402, 6410, 6420, 0}, 0, 1, 11, 3, {681,775,2098,744,9,0,0,0,0,0,0,0,0,0},{199,180,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 49, 52, {6428, 6437, 6449, 6456, 6464, 6474, 6480}, {6487, 6491, 6495, 6499, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {6527, 6537, 6546, 6554, 6562, 6570, 6577, 6584, 6592, 1364, 6598, 6606, 0}, {6615, 6625, 6634, 6642, 6650, 6658, 6665, 6672, 6681, 5385, 6687, 6697, 0}, {6706, 6710, 6715, 6720, 6724, 5419, 1501, 6728, 6732, 1517, 6736, 1521, 0}, {6706, 6710, 6715, 6720, 6724, 5419, 1501, 6728, 6732, 1517, 6736, 1521, 0}, 0, 1, 11, 3, {2151,2161,2169,2181,2193,2203,2213,417,0,0,0,0,0,0},{2225,2239,2254,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {673, 49, 52, {6740, 6748, 6757, 6764, 6771, 6780, 1247}, {1254, 1257, 6787, 1264, 6790, 6794, 1275}, {6516, 6518, 6520, 6522, 6797, 6518, 6522}, {4105, 4113, 6800, 4376, 6806, 6811, 6816, 1659, 1666, 4184, 1684, 1693, 0}, {6821, 6830, 5318, 6840, 6848, 6854, 6860, 6866, 6874, 6884, 6893, 6902, 0}, {5089, 4610, 4512, 4614, 6806, 6811, 6816, 5101, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 6806, 6811, 6816, 5101, 5105, 5109, 4642, 6911, 0}, 2, 1, 11, 3, {681,692,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 171, 183, {6915, 6922, 6931, 6940, 6952, 6960, 6969}, {6979, 6983, 2791, 6988, 6993, 6997, 7001}, {1828, 4089, 1608, 1608, 7005, 1280, 1285}, {7007, 7013, 7020, 7025, 7031, 7035, 7043, 7050, 7056, 7064, 7070, 7078, 0}, {7086, 7092, 3504, 7099, 1645, 7105, 7113, 7120, 7126, 7134, 7140, 7148, 0}, {1914, 7156, 2791, 7160, 7031, 7164, 7168, 7172, 7001, 7176, 7180, 7185, 0}, {1914, 7156, 2791, 7160, 7031, 7164, 7168, 7172, 7001, 7176, 7180, 7185, 0}, 0, 1, 11, 3, {1208,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {2274, 194, 197, {7189, 7197, 7205, 1548, 1555, 1563, 7212}, {7220, 7225, 7230, 1591, 7234, 1599, 7239}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {5011, 5019, 3504, 1639, 1645, 1649, 1654, 7244, 1666, 1676, 1684, 1693, 0}, {5011, 5019, 3504, 1639, 1645, 1649, 1654, 7244, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 3504, 1717, 1645, 1649, 1654, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 3504, 1717, 1645, 1649, 1654, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {417,1690,0,0,0,0,0,0,0,0,0,0,0,0},{2287,2305,0,0,0,0,0,0,0,0},{71,266,2328,0,0,0,0,0,0,0,0,0},{89,271,2338,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, 0, 0, 1, 3, {295,857,9,18,304,2351,417,0,0,0,0,0,0,0},{894,2363,2379,0,0,0,0,0,0,0},{266,71,906,62,0,0,0,0,0,0,0,0},{271,89,914,77,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 200, 205, {7252, 7258, 7268, 7274, 7285, 7295, 7300}, {7310, 7314, 7318, 7322, 7327, 7331, 7335}, {1280, 1280, 1285, 7339, 1280, 5210, 5210}, {7342, 7347, 7354, 7359, 7365, 7372, 7380, 7387, 7396, 7403, 7408, 7415, 0}, {7342, 7347, 7354, 7359, 7365, 7372, 7380, 7387, 7396, 7403, 7408, 7415, 0}, {7423, 7427, 2791, 7432, 2760, 7436, 7440, 7444, 7449, 7453, 7457, 7461, 0}, {7423, 7427, 2791, 7432, 2760, 7436, 7440, 7444, 7449, 7453, 7457, 7461, 0}, 0, 1, 11, 3, {2421,304,0,0,0,0,0,0,0,0,0,0,0,0},{2431,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 49, 52, {7465, 7476, 7489, 7498, 7505, 7518, 7527}, {7465, 7476, 7489, 7498, 7505, 7518, 7527}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, 0, 0, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {7660, 7667, 7673, 7680, 7685, 7691, 7697}, {7703, 7707, 7711, 7715, 7719, 7723, 7727}, {1608, 1285, 1285, 7731, 3099, 2892, 1285}, {7733, 7741, 7750, 1851, 7756, 1861, 1866, 7760, 1878, 1888, 1896, 7768, 0}, {7733, 7741, 7750, 1851, 7756, 1861, 1866, 7760, 1878, 1888, 1896, 7768, 0}, {1914, 1918, 2791, 1927, 7756, 1931, 1935, 7777, 1943, 1947, 1951, 7781, 0}, {1914, 1918, 2791, 1927, 7756, 1931, 1935, 7777, 1943, 1947, 1951, 7781, 0}, 0, 0, 1, 11, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{2462,894,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 209, 214, {7785, 7798, 7817, 7834, 7847, 7860, 7877}, {280, 285, 290, 295, 300, 305, 310}, {7890, 6078, 6075, 6081, 6084, 6078, 6081}, {7893, 7906, 7917, 7934, 7949, 7964, 7979, 7992, 8007, 8024, 8039, 8056, 0}, {8071, 8082, 8095, 8110, 8123, 8136, 8149, 8160, 8173, 8188, 8201, 8220, 0}, {8233, 8240, 8247, 8254, 8261, 8268, 8275, 8282, 8289, 8296, 8303, 8310, 0}, {8233, 8240, 8247, 8254, 8261, 8268, 8275, 8282, 8289, 8296, 8303, 8310, 0}, 0, 1, 11, 3, {681,775,417,0,0,0,0,0,0,0,0,0,0,0},{2481,0,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{2499,0,0,0,0,0,0,0}},
+       {109, 49, 52, {8317, 8332, 8353, 8368, 8381, 8394, 7877}, {280, 285, 8409, 295, 8414, 305, 310}, {315, 318, 8419, 324, 327, 318, 324}, {8422, 8439, 8448, 8463, 380, 8480, 8495, 8508, 8523, 8540, 8561, 8578, 0}, {8593, 8610, 8623, 8640, 6258, 8659, 8674, 8687, 8700, 8715, 8738, 8757, 0}, {8770, 8240, 8777, 8784, 380, 8791, 8798, 8805, 8289, 8812, 8819, 8826, 0}, {8770, 8240, 8777, 8784, 380, 8791, 8798, 8805, 8289, 8812, 8819, 8826, 0}, 0, 1, 11, 3, {775,0,0,0,0,0,0,0,0,0,0,0,0,0},{894,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{2515,0,0,0,0,0,0,0}},
+       {673, 39, 219, {8833, 8841, 8852, 8858, 8864, 8873, 1247}, {8879, 5179, 5073, 8884, 8889, 8895, 5202}, {6516, 6518, 8900, 6522, 6524, 6518, 6522}, {1618, 1625, 6800, 1639, 1645, 8902, 8908, 8914, 1666, 1676, 1684, 1693, 0}, {1618, 1625, 6800, 1639, 1645, 8902, 8908, 8914, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 8921, 1732, 1737, 887, 1742, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 8921, 1732, 1737, 887, 1742, 0}, 0, 1, 124, 3, {2529,1455,0,0,0,0,0,0,0,0,0,0,0,0},{2541,2561,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 49, 52, {8926, 8937, 8948, 8959, 8970, 8981, 8987}, {1280, 7005, 1610, 3099, 1278, 7731, 1616}, {1280, 7005, 1610, 3099, 1278, 7731, 1616}, {8996, 9004, 9013, 9020, 3515, 9027, 9033, 1659, 1666, 9039, 1684, 9048, 0}, {8996, 9004, 9013, 9020, 3515, 9027, 9033, 1659, 1666, 9039, 1684, 9048, 0}, {9058, 9063, 9013, 4614, 3515, 9027, 9033, 5101, 9069, 5109, 4642, 9074, 0}, {9058, 9063, 9013, 4614, 3515, 9027, 9033, 5101, 9069, 5109, 4642, 9074, 0}, 2, 1, 11, 3, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{2575,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 224, 234, {9079, 9090, 9100, 9109, 9120, 9132, 9143}, {9153, 9161, 9168, 9174, 9182, 9191, 9199}, {1285, 1280, 1612, 1610, 5210, 1280, 1285}, {9206, 9216, 1633, 9227, 9236, 9242, 9250, 9258, 9266, 9277, 9286, 9296, 0}, {9206, 9216, 1633, 9227, 9236, 9242, 9250, 9258, 9266, 9277, 9286, 9296, 0}, {3566, 857, 1633, 1717, 9236, 9306, 9312, 1727, 2986, 1737, 887, 1742, 0}, {3566, 857, 1633, 1717, 9236, 9306, 9312, 1727, 2986, 1737, 887, 1742, 0}, 0, 1, 11, 3, {681,2583,0,0,0,0,0,0,0,0,0,0,0,0},{2603,2630,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2651,0,0,0,0,0,0,0}},
+       {925, 241, 252, {9318, 9330, 9342, 9354, 9368, 9383, 9396}, {9410, 9413, 9416, 9419, 9422, 9425, 6790}, {1285, 1280, 9428, 1610, 3099, 1280, 9430}, {9433, 9440, 9448, 9454, 9463, 9472, 9482, 9488, 9499, 9509, 9516, 9526, 0}, {9534, 9541, 9549, 9554, 9565, 9575, 9585, 9592, 9604, 9613, 9620, 9631, 0}, {9641, 9647, 9652, 9657, 9662, 9667, 9674, 9680, 9686, 9692, 9698, 9705, 0}, {9641, 9647, 9652, 9657, 9662, 9667, 9674, 9680, 9686, 9692, 9698, 9705, 0}, 2, 1, 55, 3, {417,0,0,0,0,0,0,0,0,0,0,0,0,0},{2667,2695,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 259, 271, {9712, 9727, 9742, 9757, 9774, 9793, 9804}, {9815, 9822, 9829, 9836, 9843, 9850, 9857}, {0, 0, 0, 0, 0, 0, 0}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 0, 11, 3, {681,775,2098,744,9,0,0,0,0,0,0,0,0,0},{2727,2745,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 283, 290, {10057, 10070, 10083, 10099, 10116, 10131, 10140}, {10057, 10070, 10083, 10099, 10116, 10131, 10140}, {10149, 10152, 10155, 10158, 10161, 10164, 10167}, {10170, 10183, 10194, 10203, 10214, 10219, 10228, 10239, 10246, 10261, 10272, 10285, 0}, {10298, 10313, 10194, 10203, 10326, 10219, 10333, 10239, 10246, 10261, 10272, 10285, 0}, {10170, 10183, 10194, 10203, 10214, 10219, 10228, 10239, 10246, 10261, 10272, 10285, 0}, {10170, 10183, 10194, 10203, 10214, 10219, 10228, 10239, 10246, 10261, 10272, 10285, 0}, 0, 6, 1, 3, {18,9,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 297, 300, {10346, 10359, 10369, 10378, 10388, 10399, 10410}, {10422, 10425, 10430, 10435, 10440, 10445, 10450}, {10422, 10455, 10458, 10461, 10464, 10467, 10470}, {10473, 10482, 10491, 10500, 10509, 10518, 10527, 10536, 10545, 10554, 10564, 10574, 0}, {10584, 10593, 10602, 10611, 10620, 10629, 10638, 10647, 10656, 10665, 10675, 10685, 0}, {10695, 10701, 10707, 10713, 10719, 10725, 10731, 10737, 10743, 10749, 10756, 10763, 0}, {10695, 10701, 10707, 10713, 10719, 10725, 10731, 10737, 10743, 10749, 10756, 10763, 0}, 0, 1, 1, 3, {18,9,755,744,417,0,0,0,0,0,0,0,0,0},{1261,0,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 303, 308, {10770, 10783, 10804, 10823, 10844, 10863, 10876}, {10887, 10894, 10901, 10908, 10915, 10922, 10929}, {10936, 10939, 10939, 10942, 10945, 10948, 10951}, {10954, 10969, 10984, 10993, 11004, 11015, 11028, 11041, 11056, 11075, 11094, 11111, 0}, {11130, 11147, 11164, 11175, 11188, 11201, 11216, 11231, 11248, 11269, 11290, 11309, 0}, {11330, 11337, 11344, 11351, 11358, 11365, 11372, 11379, 11386, 11393, 11400, 11407, 0}, {11330, 11337, 11344, 11351, 11358, 11365, 11372, 11379, 11386, 11393, 11400, 11407, 0}, 0, 1, 11, 3, {681,775,2764,18,2774,864,417,0,0,0,0,0,0,0},{1029,876,2462,1261,2785,2796,2808,2825,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {11414, 11420, 11434, 11457, 11471, 11487, 11494}, {11503, 11506, 11511, 11517, 11521, 11526, 11529}, {4756, 4744, 4746, 4748, 4750, 4752, 4754}, {11533, 11540, 7354, 11547, 2760, 11553, 11559, 11565, 11572, 11581, 11589, 11596, 0}, {11603, 11610, 11617, 11622, 11628, 11632, 11637, 11642, 11649, 11658, 11666, 11673, 0}, {11680, 5609, 4512, 4614, 11628, 11684, 11688, 11692, 11696, 5109, 11700, 11704, 0}, {11680, 5609, 4512, 4614, 11628, 11684, 11688, 11692, 11696, 5109, 11700, 11704, 0}, 0, 0, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{2843,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {11708, 11716, 11727, 11737, 11748, 11757, 11766}, {11776, 11780, 11784, 11788, 11792, 11796, 11800}, {11804, 9428, 9428, 9428, 1612, 1612, 1616}, {11806, 11816, 11824, 11832, 11840, 11848, 11855, 11863, 11871, 11878, 11884, 11891, 0}, {11806, 11899, 11907, 11915, 11923, 11931, 11938, 11946, 11954, 11961, 11967, 11974, 0}, {11982, 11987, 1712, 11992, 11997, 12002, 12007, 12012, 12017, 12022, 12027, 12032, 0}, {11982, 11987, 1712, 11992, 11997, 12002, 12007, 12012, 12017, 12022, 12027, 12032, 0}, 2, 1, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2872,2899,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2920,0,0,0,0,0,0,0}},
+       {673, 313, 324, {12037, 12047, 12058, 12065, 12072, 12082, 1247}, {12088, 12092, 12097, 12101, 12105, 12110, 12114}, {6516, 6518, 12118, 6522, 6797, 6518, 6522}, {1618, 1625, 12120, 12126, 12132, 8902, 8908, 12137, 1666, 1676, 12144, 1693, 0}, {12153, 12161, 12170, 12177, 12184, 12189, 12196, 12203, 6874, 12211, 12219, 6902, 0}, {5089, 4610, 12228, 4614, 12233, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, {5089, 4610, 12228, 4614, 12233, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, 2, 1, 11, 3, {1208,0,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{2939,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 335, 349, {12245, 190, 211, 6014, 12258, 12275, 12286}, {12299, 12307, 12315, 12323, 12331, 12339, 12347}, {315, 318, 321, 324, 327, 318, 324}, {12355, 343, 360, 369, 12370, 12377, 12386, 401, 414, 433, 450, 465, 0}, {12355, 343, 360, 369, 12370, 12377, 12386, 401, 414, 433, 450, 465, 0}, {12395, 12403, 12411, 6376, 12370, 12419, 12427, 6384, 12435, 6402, 12445, 6420, 0}, {12395, 12403, 12411, 6376, 12370, 12419, 12427, 6384, 12435, 6402, 12445, 6420, 0}, 0, 1, 11, 3, {2953,0,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2963,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12455, 12463, 12472, 12481, 12490, 12497, 12507}, {12516, 12520, 12524, 12528, 12532, 12535, 12539}, {0, 0, 0, 0, 0, 0, 0}, {12543, 12554, 12562, 12572, 12578, 12590, 12599, 12605, 12611, 12619, 12628, 12640, 0}, {12543, 12554, 12562, 12572, 12578, 12590, 12599, 12605, 12611, 12619, 12628, 12640, 0}, {12648, 12652, 12656, 12660, 12664, 1914, 12668, 12672, 12676, 12680, 12684, 12688, 0}, {12648, 12652, 12656, 12660, 12664, 1914, 12668, 12672, 12676, 12680, 12684, 12688, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12692, 12698, 12711, 12722, 12733, 12742, 12754}, {12516, 12764, 12768, 12772, 12532, 12776, 12780}, {0, 0, 0, 0, 0, 0, 0}, {12784, 12792, 12804, 12816, 12828, 12838, 12850, 12859, 12867, 12875, 12885, 12892, 0}, {12784, 12792, 12804, 12816, 12828, 12838, 12850, 12859, 12867, 12875, 12885, 12892, 0}, {2707, 12906, 12910, 12914, 12918, 12922, 12926, 12930, 12934, 12938, 12942, 12946, 0}, {2707, 12906, 12910, 12914, 12918, 12922, 12926, 12930, 12934, 12938, 12942, 12946, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12950, 12957, 12472, 12968, 12490, 12977, 12988}, {12688, 12998, 12524, 12528, 12532, 13002, 13006}, {0, 0, 0, 0, 0, 0, 0}, {13010, 13020, 13029, 13037, 13046, 13059, 13071, 13078, 13085, 13092, 13102, 13114, 0}, {13010, 13020, 13029, 13037, 13046, 13059, 13071, 13078, 13085, 13092, 13102, 13114, 0}, {13127, 12776, 13131, 13135, 12664, 13139, 13143, 12672, 13147, 13151, 13155, 13159, 0}, {13127, 12776, 13131, 13135, 12664, 13139, 13143, 12672, 13147, 13151, 13155, 13159, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 0, 0, {13163, 13168, 13174, 13184, 13196, 13204, 13215}, {13224, 13228, 13232, 13236, 13240, 12535, 13244}, {0, 0, 0, 0, 0, 0, 0}, {13248, 13258, 13268, 13275, 13282, 1861, 13287, 13294, 13301, 13310, 13318, 13326, 0}, {13248, 13258, 13268, 13275, 13282, 1861, 13287, 13294, 13301, 13310, 13318, 13326, 0}, {1914, 1918, 13006, 13334, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 13006, 13334, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 49, 52, {13350, 13357, 13369, 13380, 13393, 13402, 13414}, {12516, 13424, 13428, 13236, 13240, 12535, 13244}, {1285, 1608, 13432, 1610, 1285, 4089, 1608}, {13434, 13258, 13443, 13449, 13282, 1861, 13287, 13294, 13457, 13310, 13318, 13326, 0}, {13467, 13258, 13443, 13449, 13282, 1861, 13287, 13294, 13457, 13310, 13318, 13326, 0}, {1914, 1918, 13478, 13482, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 13478, 13482, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, 0, 0, 1, 3, {932,3009,0,0,0,0,0,0,0,0,0,0,0,0},{978,997,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 359, 363, {13486, 13493, 13501, 13509, 13518, 13528, 13535}, {13544, 13548, 13552, 13556, 13560, 13564, 13568}, {1285, 1608, 1828, 2735, 1828, 2894, 1285}, {13572, 13581, 13591, 1851, 7756, 13597, 13603, 13609, 1878, 1888, 1896, 7768, 0}, {13572, 13581, 13591, 1851, 7756, 13597, 13603, 13609, 1878, 1888, 1896, 7768, 0}, {13618, 13623, 13628, 13633, 7756, 13638, 13643, 13648, 13653, 13658, 13663, 13668, 0}, {13618, 13623, 13628, 13633, 7756, 13638, 13643, 13648, 13653, 13658, 13663, 13668, 0}, 0, 0, 55, 3, {417,2351,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {13673, 13689, 13714, 13742, 13770, 13798, 13826}, {13845, 13855, 13865, 13875, 13885, 13895, 13905}, {13915, 13919, 13923, 13919, 13927, 13931, 13935}, {13939, 13961, 13989, 14005, 14024, 14040, 14059, 14078, 14100, 14131, 14159, 14184, 0}, {13939, 13961, 13989, 14005, 14024, 14040, 14059, 14078, 14100, 14131, 14159, 14184, 0}, {14212, 14222, 14232, 14242, 14252, 14262, 14272, 14282, 14292, 14302, 14312, 14322, 0}, {14212, 14222, 14232, 14242, 14252, 14262, 14272, 14282, 14292, 14302, 14312, 14322, 0}, 0, 1, 11, 3, {681,3021,0,0,0,0,0,0,0,0,0,0,0,0},{42,1029,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 49, 52, {4231, 14332, 14343, 14353, 14363, 14373, 14387}, {14399, 14403, 14408, 14413, 14417, 14422, 14427}, {1285, 1608, 1610, 1608, 4089, 1614, 1616}, {1618, 1625, 3504, 4376, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 4376, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 2, 1, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{1314,1455,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 367, 395, {14431, 14450, 14469, 14491, 14510, 14532, 14557}, {14576, 14586, 14596, 14609, 14619, 14632, 14648}, {14658, 14662, 14669, 14676, 14683, 14690, 14697}, {14701, 14717, 14736, 14752, 14771, 14778, 14788, 14804, 14820, 14839, 14861, 14877, 0}, {14701, 14717, 14736, 14752, 14771, 14778, 14788, 14804, 14820, 14839, 14861, 14877, 0}, {14896, 14906, 14736, 14752, 14771, 14778, 14919, 14932, 14942, 14955, 14974, 14984, 0}, {14896, 14906, 14736, 14752, 14771, 14778, 14919, 14932, 14942, 14955, 14974, 14984, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {3033, 49, 52, {14997, 15006, 15015, 15025, 15035, 15045, 15057}, {15065, 15070, 15074, 15078, 15082, 15087, 15092}, {15096, 15100, 15103, 15106, 15109, 15113, 15117}, {15120, 15127, 15132, 1851, 15138, 15144, 15151, 15157, 15165, 15175, 15183, 15192, 0}, {15120, 15127, 15132, 1851, 15138, 15144, 15151, 15157, 15165, 15175, 15183, 15192, 0}, {1914, 15202, 2791, 1927, 15206, 15210, 15215, 15219, 15223, 15227, 1951, 15231, 0}, {1914, 15202, 2791, 1927, 15206, 15210, 15215, 15219, 15223, 15227, 1951, 15231, 0}, 0, 0, 1, 3, {18,2351,0,0,0,0,0,0,0,0,0,0,0,0},{3048,3074,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{3094,0,0,0,0,0,0,0}},
+       {925, 417, 422, {15236, 15248, 15259, 15273, 15285, 15295, 15305}, {15316, 15321, 15326, 15331, 15336, 15341, 15346}, {1285, 2894, 1608, 4532, 1828, 13432, 1616}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, 2, 1, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {109, 151, 156, {15579, 15593, 15603, 15614, 15628, 15639, 15650}, {15663, 15668, 15673, 15680, 15686, 15692, 15698}, {1828, 1616, 1608, 5210, 1828, 9428, 1285}, {15703, 15711, 15719, 15726, 15735, 15745, 15755, 15761, 15769, 15784, 15802, 15810, 0}, {15703, 15711, 15719, 15726, 15735, 15745, 15755, 15761, 15769, 15784, 15802, 15810, 0}, {15818, 15822, 15719, 15828, 15832, 15837, 15755, 15843, 15848, 15855, 15862, 15867, 0}, {15818, 15822, 15719, 15828, 15832, 15837, 15755, 15843, 15848, 15855, 15862, 15867, 0}, 2, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 427, 430, {15872, 15877, 7673, 7680, 15883, 15890, 7697}, {15897, 15901, 7711, 7715, 15905, 7723, 7727}, {9428, 11804, 1285, 7731, 3099, 2892, 1285}, {7733, 7741, 15909, 1851, 7756, 1931, 15913, 15919, 1878, 1888, 1896, 15924, 0}, {7733, 7741, 15909, 1851, 7756, 1931, 15913, 15919, 1878, 1888, 1896, 15924, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 15933, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 15933, 1943, 1947, 1951, 13346, 0}, 0, 1, 1, 3, {2764,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {15937, 15954, 15971, 15988, 16005, 16022, 16031}, {16042, 16047, 16052, 16057, 16062, 16067, 16072}, {16077, 16080, 6081, 6081, 16083, 16077, 6081}, {16086, 16099, 16110, 16123, 16134, 16145, 16158, 16169, 16180, 16197, 16208, 16221, 0}, {16240, 16253, 16264, 16277, 16288, 16299, 16312, 16323, 16334, 16351, 16362, 16375, 0}, {16394, 16402, 16410, 16418, 16426, 16434, 16442, 16450, 16458, 16466, 16474, 16482, 0}, {16394, 16402, 16410, 16418, 16426, 16434, 16442, 16450, 16458, 16466, 16474, 16482, 0}, 0, 1, 1, 3, {18,3112,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3125, 434, 439, {16490, 16507, 16524, 16541, 16558, 16575, 16584}, {16597, 16605, 16613, 16623, 16633, 16575, 16643}, {16077, 16080, 16651, 16651, 16083, 16077, 16654}, {16657, 16670, 9888, 16685, 9908, 16698, 16707, 9929, 16716, 16733, 16748, 16761, 0}, {6087, 6100, 360, 6115, 380, 6128, 6137, 401, 6146, 6163, 6178, 6191, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 1, 55, 3, {3132,0,0,0,0,0,0,0,0,0,0,0,0,0},{3141,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{3160,0,0,0,0,0,0,0}},
+       {109, 49, 52, {16776, 16785, 16794, 16802, 16811, 16820, 16827}, {16776, 16785, 16794, 16802, 16811, 16820, 16827}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {7733, 7741, 16836, 16842, 7756, 1861, 15913, 16849, 13301, 16856, 13318, 16863, 0}, {7733, 7741, 16836, 16842, 7756, 1861, 15913, 16849, 13301, 16856, 13318, 16863, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 16871, 1943, 1947, 1951, 7781, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 16871, 1943, 1947, 1951, 7781, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 0, 0, {16875, 16886, 16895, 16904, 16915, 16925, 16930}, {16937, 16941, 16944, 16947, 16951, 9416, 16954}, {16958, 1828, 1285, 7339, 1280, 9428, 16961}, {16964, 16972, 11617, 11622, 16979, 16984, 16990, 12137, 16996, 17006, 17015, 11673, 0}, {16964, 16972, 11617, 11622, 16979, 16984, 16990, 12137, 16996, 17006, 17015, 11673, 0}, {17023, 17028, 11617, 4614, 16979, 16984, 16990, 12237, 11696, 5109, 17032, 11704, 0}, {17023, 17028, 11617, 4614, 16979, 16984, 16990, 12237, 11696, 5109, 17032, 11704, 0}, 0, 1, 11, 3, {3176,681,0,0,0,0,0,0,0,0,0,0,0,0},{3191,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{3223,0,0,0,0,0,0,0}},
+       {925, 444, 447, {17037, 17047, 17056, 17065, 17076, 17086, 17091}, {17098, 17102, 17107, 17112, 17117, 7723, 17121}, {17126, 1828, 1285, 5210, 1280, 2892, 1285}, {11533, 11540, 7354, 11547, 2760, 17128, 17133, 17138, 17145, 17153, 11589, 11596, 0}, {11603, 11610, 11617, 11622, 11628, 11632, 11637, 8914, 17160, 17168, 11666, 11673, 0}, {12906, 17175, 2791, 1927, 2760, 17179, 17183, 17187, 7707, 1947, 17191, 17195, 0}, {12906, 17175, 2791, 1927, 2760, 17179, 17183, 17187, 7707, 1947, 17191, 17195, 0}, 0, 0, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {109, 49, 52, {17199, 17218, 17237, 17262, 17281, 17315, 17340}, {17359, 17369, 17379, 17395, 17405, 17430, 17446}, {17456, 17460, 17467, 17471, 17478, 17485, 17492}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, 0, 1, 55, 11, {755,1062,744,755,744,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{1151,1146,3258,3267,0,0,0,0,0,0,0,0},{1173,1165,3275,3287,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 450, 465, {17742, 17758, 17777, 17799, 17821, 17840, 17868}, {17899, 17906, 17916, 17929, 17942, 17952, 17971}, {17993, 17997, 18004, 18011, 18021, 18028, 18041}, {18048, 18064, 18083, 18096, 18115, 18122, 18132, 18148, 18161, 18177, 18196, 18212, 0}, {18048, 18064, 18083, 18096, 18115, 18122, 18132, 18148, 18161, 18177, 18196, 18212, 0}, {18228, 18235, 18083, 18245, 18115, 18122, 18261, 18274, 18281, 18291, 18304, 18314, 0}, {18228, 18235, 18083, 18245, 18115, 18122, 18261, 18274, 18281, 18291, 18304, 18314, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{3298,894,0,0,0,0,0,0,0,0},{591,583,266,71,0,0,0,0,0,0,0,0},{611,600,271,89,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 49, 52, {18324, 18343, 18362, 18384, 18403, 18425, 18450}, {18469, 18479, 18489, 18502, 18512, 18525, 18541}, {18551, 18555, 18562, 18569, 18576, 18583, 18590}, {18594, 18622, 18650, 18666, 18685, 18692, 18702, 18718, 18734, 18762, 18784, 18806, 0}, {18594, 18622, 18650, 18666, 18685, 18692, 18702, 18718, 18734, 18762, 18784, 18806, 0}, {18831, 18850, 18650, 18666, 18685, 18692, 18702, 18718, 18869, 18885, 18901, 18911, 0}, {18831, 18850, 18650, 18666, 18685, 18692, 18702, 18718, 18869, 18885, 18901, 18911, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 5, 8, {18924, 18943, 18962, 18987, 19006, 19028, 19053}, {19072, 19082, 19092, 19108, 19118, 19131, 19147}, {19157, 19161, 19168, 19172, 19179, 19186, 19193}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 480, 505, {19431, 19450, 19472, 19497, 19513, 19535, 19554}, {19564, 19578, 19592, 19606, 19617, 19631, 19554}, {19645, 19652, 19659, 19666, 19673, 19680, 19687}, {19691, 19707, 19732, 19751, 19770, 19777, 19790, 19803, 19822, 19853, 19878, 19900, 0}, {19691, 19707, 19732, 19751, 19770, 19777, 19790, 19803, 19822, 19853, 19878, 19900, 0}, {19925, 19933, 19947, 19961, 19770, 19777, 19790, 19972, 19980, 19994, 20005, 20013, 0}, {19925, 19933, 19947, 19961, 19770, 19777, 19790, 19972, 19980, 19994, 20005, 20013, 0}, 0, 1, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {20024, 20046, 20068, 20093, 20115, 20140, 20168}, {20190, 20200, 20210, 20223, 20233, 20246, 20262}, {20272, 20276, 20283, 20287, 20294, 20301, 20308}, {20312, 20328, 20353, 20372, 20394, 20401, 20414, 20427, 20446, 20477, 20502, 20521, 0}, {20312, 20328, 20353, 20372, 20394, 20401, 20414, 20427, 20446, 20477, 20502, 20521, 0}, {20546, 20553, 20353, 20569, 20394, 20401, 20414, 20427, 20585, 20607, 20623, 20633, 0}, {20546, 20553, 20353, 20569, 20394, 20401, 20414, 20427, 20585, 20607, 20623, 20633, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 530, 558, {20649, 20671, 20690, 20712, 20731, 20753, 20778}, {20797, 20810, 20820, 20833, 20843, 20856, 20872}, {20882, 20889, 20896, 20903, 20910, 20917, 20924}, {20928, 20944, 20969, 20988, 21010, 21017, 21030, 21043, 21062, 21093, 21118, 21140, 0}, {20928, 20944, 20969, 20988, 21010, 21017, 21030, 21043, 21062, 21093, 21118, 21140, 0}, {21165, 21172, 20969, 21188, 21010, 21017, 21030, 21204, 21211, 21233, 21249, 21262, 0}, {21165, 21172, 20969, 21188, 21010, 21017, 21030, 21204, 21211, 21233, 21249, 21262, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {3316, 49, 52, {21278, 21306, 21340, 21368, 21396, 21427, 21464}, {21492, 21505, 21524, 21540, 21553, 21572, 21591}, {21601, 21608, 21615, 21622, 21629, 21642, 21649}, {21653, 21672, 21700, 21722, 21741, 21754, 21764, 21777, 21802, 21833, 21858, 21874, 0}, {21653, 21672, 21700, 21722, 21741, 21754, 21764, 21777, 21802, 21833, 21858, 21874, 0}, {21893, 21903, 21922, 21932, 21741, 21754, 21764, 21948, 21955, 21980, 21996, 22006, 0}, {21893, 21903, 21922, 21932, 21741, 21754, 21764, 21948, 21955, 21980, 21996, 22006, 0}, 0, 0, 55, 11, {755,1062,775,2098,0,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{1151,1146,3258,3267,0,0,0,0,0,0,0,0},{1173,1165,3275,3287,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 580, 608, {22019, 22038, 22057, 22082, 22101, 22135, 22160}, {22179, 17369, 17379, 17395, 22189, 22214, 17446}, {0, 0, 0, 0, 0, 0, 0}, {22230, 22255, 22286, 22302, 17593, 17600, 17610, 22321, 22337, 22368, 22390, 22412, 0}, {22230, 22255, 22286, 22302, 17593, 17600, 17610, 22321, 22337, 22368, 22390, 22412, 0}, {22437, 22450, 22286, 22302, 17593, 17600, 17610, 22469, 22476, 22492, 22508, 22518, 0}, {22437, 22450, 22286, 22302, 17593, 17600, 17610, 22469, 22476, 22492, 22508, 22518, 0}, 0, 0, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{3324,0,0,0,0,0,0,0,0,0},{583,591,266,0,0,0,0,0,0,0,0,0},{600,611,271,0,0,0,0,0,0},{3343,3351,0,0,0,0,0,0}},
+       {1, 630, 642, {14431, 14450, 22531, 14491, 14510, 14532, 14557}, {14576, 14586, 22553, 14609, 14619, 14632, 14648}, {14658, 14662, 14669, 14676, 14683, 14690, 14697}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 22661, 22677, 22702, 22724, 22752, 0}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 22661, 22677, 22702, 22724, 22752, 0}, {22774, 22787, 14736, 22806, 22641, 14778, 22648, 22822, 22829, 22848, 22864, 22886, 0}, {22774, 22787, 14736, 22806, 22641, 14778, 22648, 22822, 22829, 22848, 22864, 22886, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 651, 656, {22902, 22909, 22920, 22933, 22946, 22957, 22970}, {22981, 22986, 22991, 22996, 23001, 23006, 23011}, {22981, 22986, 22991, 22996, 23001, 23006, 23011}, {23016, 23042, 23070, 23100, 23130, 23156, 23186, 23212, 23240, 23264, 23292, 23329, 0}, {23016, 23042, 23070, 23100, 23130, 23156, 23186, 23212, 23240, 23264, 23292, 23329, 0}, {23368, 23380, 23392, 23404, 23416, 23428, 23440, 23452, 23464, 23476, 23489, 23502, 0}, {23368, 23380, 23392, 23404, 23416, 23428, 23440, 23452, 23464, 23476, 23489, 23502, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3361,3399,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {3431, 661, 683, {23515, 23543, 23571, 23608, 23639, 23673, 23704}, {23738, 23754, 23770, 23795, 23814, 23836, 23855}, {23877, 23884, 23891, 23901, 23911, 23921, 23931}, {23944, 23978, 24015, 24052, 24086, 24117, 24154, 24191, 24231, 24265, 24299, 24348, 0}, {24397, 24428, 24462, 24496, 24527, 24555, 24589, 24623, 24660, 24691, 24722, 24768, 0}, {24814, 24827, 24840, 24853, 24866, 24879, 24892, 24905, 24918, 24931, 24947, 24963, 0}, {24814, 24827, 24840, 24853, 24866, 24879, 24892, 24905, 24918, 24931, 24947, 24963, 0}, 0, 0, 1, 3, {379,388,397,428,417,406,446,439,453,0,0,0,0,0},{3455,3498,3546,3578,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{3615,666,0,0,0,0,0,0}},
+       {109, 708, 711, {24979, 24988, 24998, 25010, 25023, 25032, 25044}, {25056, 25060, 12926, 25065, 25069, 25073, 25077}, {1285, 25081, 1608, 1608, 11804, 4532, 1285}, {25084, 25091, 25100, 25107, 1857, 25114, 25122, 25133, 25138, 25143, 25150, 25159, 0}, {25084, 25091, 25100, 25107, 1857, 25114, 25122, 25133, 25138, 25143, 25150, 25159, 0}, {25167, 25171, 12926, 25175, 1857, 25179, 25183, 25133, 25138, 25187, 25191, 25196, 0}, {25167, 25171, 12926, 25175, 1857, 25179, 25183, 25133, 25138, 25187, 25191, 25196, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {25201, 25223, 25239, 25258, 25268, 25299, 25315}, {25201, 25223, 25239, 25258, 25268, 25299, 25315}, {25328, 25332, 25328, 25336, 25336, 25340, 25340}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, 0, 0, 1, 3, {9,417,0,0,0,0,0,0,0,0,0,0,0,0},{894,2363,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{3648,0,0,0,0,0,0,0}},
+       {109, 714, 739, {25533, 25558, 25577, 25605, 25624, 25649, 25668}, {25690, 25706, 25716, 25735, 25745, 25761, 25771}, {25784, 25791, 25795, 25799, 25803, 25810, 25817}, {25821, 25840, 25856, 25869, 25882, 25904, 25923, 25945, 25961, 25977, 25990, 26006, 0}, {25821, 25840, 25856, 25869, 25882, 25904, 25923, 25945, 25961, 25977, 25990, 26006, 0}, {26022, 26031, 26040, 26049, 26058, 26067, 26079, 26088, 26097, 26106, 26115, 26124, 0}, {26022, 26031, 26040, 26049, 26058, 26067, 26079, 26088, 26097, 26106, 26115, 26124, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{3683,894,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 764, 780, {26133, 26161, 26183, 26202, 26227, 26252, 26271}, {26133, 26161, 26183, 26202, 26227, 26252, 26271}, {26281, 26281, 26285, 26289, 26293, 26297, 26301}, {26305, 26330, 26361, 26371, 26384, 26391, 26404, 26426, 26442, 26467, 26498, 26523, 0}, {26305, 26330, 26361, 26371, 26384, 26391, 26404, 26426, 26442, 26467, 26498, 26523, 0}, {26545, 26555, 26361, 26562, 26384, 26391, 26566, 26573, 26577, 26587, 26603, 26613, 0}, {26545, 26555, 26361, 26562, 26384, 26391, 26566, 26573, 26577, 26587, 26603, 26613, 0}, 0, 0, 55, 3, {744,304,0,0,0,0,0,0,0,0,0,0,0,0},{3710,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 151, 156, {2803, 26620, 2817, 26625, 26635, 26641, 2850}, {26648, 26653, 26658, 26663, 26669, 26674, 26679}, {1828, 1616, 1608, 1608, 2890, 2894, 1285}, {26685, 26693, 26702, 26708, 26714, 26719, 26725, 26731, 26738, 26747, 26755, 26764, 0}, {26773, 26781, 2910, 666, 5557, 26790, 26796, 2933, 5574, 5583, 5591, 26802, 0}, {26811, 13623, 26658, 26816, 26714, 26719, 26821, 26826, 26831, 26836, 13663, 26841, 0}, {26811, 13623, 26658, 26816, 26714, 26719, 26821, 26826, 26831, 26836, 13663, 26841, 0}, 2, 1, 1, 3, {18,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1314,1261,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 630, 790, {26846, 14450, 26874, 14491, 14510, 14532, 14557}, {14576, 14586, 22553, 14609, 14619, 14632, 14648}, {0, 0, 0, 0, 0, 0, 0}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 26893, 26909, 26937, 22724, 22752, 0}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 26893, 26909, 26937, 22724, 22752, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 802, 814, {26959, 26975, 26991, 27019, 27035, 27078, 27103}, {26959, 26975, 27131, 27019, 27141, 27163, 27176}, {27186, 27190, 27194, 27198, 27202, 27215, 27222}, {27229, 27248, 27273, 27292, 27317, 27330, 27343, 27356, 27378, 27412, 27437, 27465, 0}, {27229, 27248, 27273, 27292, 27317, 27330, 27343, 27356, 27378, 27412, 27437, 27465, 0}, {27493, 27500, 27510, 27292, 27317, 27330, 27343, 27523, 27533, 27546, 27556, 27569, 0}, {27493, 27500, 27510, 27292, 27317, 27330, 27343, 27523, 27533, 27546, 27556, 27569, 0}, 0, 1, 55, 11, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{3267,71,0,0,0,0,0,0,0,0,0,0},{3287,89,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 823, 833, {27582, 27604, 27626, 27642, 27658, 27674, 27693}, {27715, 27725, 27735, 27745, 27755, 27765, 27775}, {27785, 27789, 27793, 27797, 27801, 27805, 27809}, {27813, 27829, 27839, 27849, 27859, 27875, 27888, 27901, 27911, 27924, 27937, 27950, 0}, {27813, 27829, 27839, 27849, 27859, 27875, 27888, 27901, 27911, 27924, 27937, 27950, 0}, {27963, 27970, 27977, 27984, 27991, 27998, 28005, 28012, 28019, 28026, 28033, 28040, 0}, {27963, 27970, 27977, 27984, 27991, 27998, 28005, 28012, 28019, 28026, 28033, 28040, 0}, 0, 0, 1, 3, {932,941,948,957,460,417,968,0,0,0,0,0,0,0},{3731,3750,42,2448,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 852, 862, {28047, 28057, 28064, 28077, 28087, 28097, 28107}, {28047, 28057, 28117, 28077, 28087, 28097, 28107}, {28127, 28131, 28135, 28139, 28143, 28147, 28151}, {28155, 28171, 28187, 28197, 28210, 28217, 28224, 28234, 28247, 28266, 28282, 28298, 0}, {28155, 28171, 28187, 28197, 28210, 28217, 28224, 28234, 28247, 28266, 28282, 28298, 0}, {28314, 28324, 28187, 28334, 28210, 28217, 28224, 28344, 28354, 28364, 28374, 28384, 0}, {28314, 28324, 28187, 28334, 28210, 28217, 28224, 28344, 28354, 28364, 28374, 28384, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 875, 885, {28394, 28401, 28407, 28414, 28420, 28426, 28434}, {28444, 28448, 28452, 28456, 28460, 28464, 28468}, {9428, 9428, 9428, 9428, 9428, 9428, 9428}, {28474, 28483, 7020, 28492, 28498, 28504, 28510, 28517, 28523, 28532, 28541, 28549, 0}, {28474, 28483, 7020, 28492, 28498, 28504, 28510, 28517, 28523, 28532, 28541, 28549, 0}, {28558, 28562, 2791, 28566, 2760, 28570, 28574, 28578, 28583, 28587, 28593, 28597, 0}, {28558, 28562, 2791, 28566, 2760, 28570, 28574, 28578, 28583, 28587, 28593, 28597, 0}, 0, 0, 55, 3, {744,755,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 367, 395, {28601, 28620, 28639, 28664, 28683, 28705, 28730}, {28749, 14586, 28759, 14609, 28775, 14632, 14648}, {28788, 14662, 28792, 14676, 28796, 14690, 14697}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 14771, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, 0, 0, 1, 3, {932,941,948,957,460,417,968,0,0,0,0,0,0,0},{3763,3783,42,2448,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{3351,0,0,0,0,0,0,0}},
+       {109, 49, 52, {28979, 28985, 28993, 29001, 29010, 29021, 29027}, {29033, 29036, 3084, 4997, 3090, 29039, 1275}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {29042, 29053, 13591, 1851, 29064, 29070, 2769, 13609, 29075, 1888, 29085, 29094, 0}, {29042, 29053, 13591, 1851, 29064, 29070, 2769, 13609, 29075, 1888, 29085, 29094, 0}, {1914, 1918, 29103, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 7781, 0}, {1914, 1918, 29103, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 7781, 0}, 2, 1, 55, 3, {744,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, 0, 6, 1, 3, {379,417,0,0,0,0,0,0,0,0,0,0,0,0},{894,1217,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {29221, 29228, 29234, 29241, 29252, 29260, 29269}, {29276, 29280, 2791, 29284, 29288, 29292, 7727}, {29276, 29280, 2791, 29284, 29288, 29292, 7727}, {29296, 29302, 29310, 26708, 29316, 29321, 29327, 26731, 29333, 29343, 29351, 29361, 0}, {29296, 29302, 29310, 26708, 29316, 29321, 29327, 26731, 29333, 29343, 29351, 29361, 0}, {29371, 29375, 2791, 29379, 2760, 29383, 29387, 16871, 15223, 1947, 29391, 13346, 0}, {29371, 29375, 2791, 29379, 2760, 29383, 29387, 16871, 15223, 1947, 29391, 13346, 0}, 0, 0, 1, 3, {932,3009,0,0,0,0,0,0,0,0,0,0,0,0},{978,997,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 898, 905, {29395, 29400, 29408, 29417, 29427, 29437, 29444}, {29455, 29459, 29464, 12088, 29468, 29472, 29476}, {29480, 29482, 29484, 6516, 6516, 29484, 29486}, {29488, 29494, 29500, 29506, 29514, 29521, 29527, 29533, 29538, 29545, 29554, 29560, 0}, {29488, 29494, 29500, 29506, 29514, 29521, 29527, 29533, 29538, 29545, 29554, 29560, 0}, {29566, 29570, 29574, 29578, 29582, 29586, 29590, 29594, 29598, 29602, 29606, 29610, 0}, {29566, 29570, 29574, 29578, 29582, 29586, 29590, 29594, 29598, 29602, 29606, 29610, 0}, 0, 0, 1, 3, {18,9,775,755,417,0,0,0,0,0,0,0,0,0},{1217,1234,894,0,0,0,0,0,0,0},{71,266,1151,1243,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {29614, 29621, 29629, 29636, 29643, 29651, 29660}, {29667, 29671, 29675, 29679, 29683, 7723, 28444}, {1616, 1616, 1610, 1616, 9428, 2892, 9428}, {29687, 29695, 29705, 29711, 29719, 29724, 29729, 29734, 29741, 16856, 29749, 29757, 0}, {29687, 29695, 29705, 29711, 29719, 29724, 29729, 29734, 29741, 16856, 29749, 29757, 0}, {1914, 29765, 2791, 29769, 2760, 28570, 28574, 29773, 2731, 1947, 29777, 13346, 0}, {1914, 29765, 2791, 29769, 2760, 28570, 28574, 29773, 2731, 1947, 29777, 13346, 0}, 0, 0, 1, 3, {295,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1010,1029,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 914, 925, {29781, 29799, 29814, 29836, 29849, 29863, 29880}, {29904, 29912, 29917, 29836, 29849, 29929, 29936}, {0, 0, 0, 0, 0, 0, 0}, {29950, 29972, 29988, 30008, 30022, 30039, 30054, 30071, 30085, 30098, 30117, 30131, 0}, {29950, 29972, 29988, 30008, 30022, 30039, 30054, 30071, 30085, 30098, 30117, 30131, 0}, {30150, 30165, 30174, 30187, 30194, 30204, 30212, 30222, 30229, 30235, 30247, 30254, 0}, {30150, 30165, 30174, 30187, 30194, 30204, 30212, 30222, 30229, 30235, 30247, 30254, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 0, 0, {30266, 30274, 12472, 12968, 12490, 30285, 30295}, {12516, 12998, 12524, 12528, 12532, 12535, 30304}, {0, 0, 0, 0, 0, 0, 0}, {30308, 30317, 30327, 30335, 7756, 2764, 30343, 30349, 30358, 30367, 30376, 30385, 0}, {30308, 30317, 30327, 30335, 7756, 2764, 30343, 30349, 30358, 30367, 30376, 30385, 0}, {1914, 1918, 13006, 30394, 7756, 1931, 1935, 16871, 15223, 1947, 30398, 13346, 0}, {1914, 1918, 13006, 30394, 7756, 1931, 1935, 16871, 15223, 1947, 30398, 13346, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {3797, 935, 941, {30402, 30410, 30419, 30430, 30440, 30452, 30460}, {12516, 30470, 30475, 30480, 30485, 30489, 30493}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 30497, 30504, 30512, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 30497, 30504, 30512, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 30516, 29379, 30512, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 30516, 29379, 30512, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {775,9,755,0,0,0,0,0,0,0,0,0,0,0},{721,3806,798,2541,3819,3844,0,0,0,0},{71,266,1146,3870,0,0,0,0,0,0,0,0},{89,3882,3897,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3913, 951, 956, {30521, 30528, 30543, 30557, 30573, 30588, 30604}, {4528, 30619, 4512, 30623, 30627, 30631, 30635}, {1285, 9428, 1608, 1280, 1285, 1610, 9428}, {5011, 5019, 30639, 30646, 30653, 1649, 1654, 30658, 30668, 30679, 30688, 30698, 0}, {5011, 5019, 30639, 30646, 30653, 1649, 1654, 30658, 30668, 30679, 30688, 30698, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 5101, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 5101, 5105, 5109, 4642, 6911, 0}, 0, 0, 55, 3, {744,755,417,764,0,0,0,0,0,0,0,0,0,0},{3926,721,2561,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 961, 966, {30708, 30724, 30732, 30740, 30749, 30761, 30771}, {30781, 30787, 30793, 30797, 30801, 30809, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {30816, 30829, 30843, 30852, 30512, 30858, 30863, 30871, 13301, 30884, 13318, 13326, 0}, {30816, 30829, 30843, 30852, 30512, 30858, 30863, 30871, 13301, 30884, 13318, 13326, 0}, {30893, 1918, 30897, 13334, 30512, 30901, 1935, 30905, 1943, 30913, 1951, 13346, 0}, {30893, 1918, 30897, 13334, 30512, 30901, 1935, 30905, 1943, 30913, 1951, 13346, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 971, 974, {30919, 30927, 30935, 30943, 30950, 30958, 30966}, {30974, 30978, 30982, 30986, 7719, 30990, 30994}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {30998, 31006, 31018, 31030, 31035, 31042, 31053, 31064, 31072, 31081, 31094, 31102, 0}, {30998, 31006, 31018, 31030, 31035, 31042, 31053, 31064, 31072, 31081, 31094, 31102, 0}, {31109, 31113, 31117, 31121, 31125, 31129, 31133, 31137, 31141, 31145, 25077, 12918, 0}, {31109, 31113, 31117, 31121, 31125, 31129, 31133, 31137, 31141, 31145, 25077, 12918, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{978,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 977, 997, {31149, 31162, 31172, 28077, 31182, 31192, 31202}, {31212, 31219, 31226, 31233, 31240, 31247, 31254}, {28131, 28131, 31261, 28139, 31265, 28147, 31269}, {31273, 31280, 31293, 31306, 31319, 31332, 31339, 31349, 31359, 31375, 31388, 31398, 0}, {31273, 31280, 31293, 31306, 31319, 31332, 31339, 31349, 31359, 31375, 31388, 31398, 0}, {31273, 31411, 31418, 31425, 31432, 31332, 31439, 31446, 31453, 31460, 31467, 31474, 0}, {31273, 31411, 31418, 31425, 31432, 31332, 31439, 31446, 31453, 31460, 31467, 31474, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{3945,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {31481, 31489, 31499, 31508, 31518, 31527, 31537}, {31546, 31549, 31552, 31555, 31558, 31561, 31564}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {31567, 31575, 31585, 31592, 7756, 31602, 31607, 31613, 31622, 31633, 31643, 31652, 0}, {31567, 31575, 31585, 31592, 7756, 31602, 31607, 31613, 31622, 31633, 31643, 31652, 0}, {31661, 31666, 31671, 31676, 7756, 31682, 31687, 31692, 31698, 31703, 31709, 31714, 0}, {31661, 31666, 31671, 31676, 7756, 31682, 31687, 31692, 31698, 31703, 31709, 31714, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 1017, 1021, {31719, 31724, 31731, 31739, 31746, 31754, 31760}, {31766, 15901, 29675, 31770, 15905, 30990, 7727}, {9428, 11804, 1610, 9428, 31774, 2892, 1285}, {31777, 31791, 31804, 31820, 31833, 31847, 31860, 31875, 31891, 31907, 31921, 31943, 0}, {31777, 31791, 31804, 31820, 31833, 31847, 31860, 31875, 31891, 31907, 31921, 31943, 0}, {31966, 31970, 25077, 31974, 31978, 31982, 31986, 31990, 31994, 31998, 32002, 32006, 0}, {31966, 31970, 25077, 31974, 31978, 31982, 31986, 31990, 31994, 31998, 32002, 32006, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{3763,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3982, 1025, 1032, {32010, 32020, 32030, 32040, 32050, 32060, 32070}, {32080, 32087, 32094, 32101, 32108, 32115, 32122}, {32129, 32133, 32137, 32141, 32145, 32149, 32153}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, 0, 0, 1, 3, {379,388,397,428,417,406,0,0,0,0,0,0,0,0},{4005,4029,4059,4089,4106,0,0,0,0,0},{583,266,71,0,0,0,0,0,0,0,0,0},{600,271,89,0,0,0,0,0,0},{4129,666,0,0,0,0,0,0}},
+       {109, 961, 1039, {25056, 29280, 32247, 32254, 32264, 32269, 32276}, {25056, 29280, 32283, 32288, 32264, 32293, 32298}, {32303, 1616, 32306, 32309, 17126, 4532, 1825}, {32312, 32319, 32247, 32330, 32336, 32340, 32349, 32356, 32361, 32370, 32375, 32378, 0}, {32312, 32319, 32247, 32330, 32336, 32340, 32349, 32356, 32361, 32370, 32375, 32378, 0}, {32384, 32389, 32397, 32403, 32336, 32408, 32414, 32356, 32420, 32370, 32375, 32426, 0}, {32384, 32389, 32397, 32403, 32336, 32408, 32414, 32356, 32420, 32370, 32375, 32426, 0}, 2, 1, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3125, 1044, 1050, {32431, 32448, 32463, 32480, 32497, 32514, 32523}, {32534, 32539, 32544, 32549, 32554, 32559, 32564}, {32569, 10152, 10155, 10158, 10161, 10164, 10167}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, 0, 0, 55, 3, {388,397,417,428,0,0,0,0,0,0,0,0,0,0},{4146,4167,4193,4234,4280,0,0,0,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{4294,2717,666,0,0,0,0,0}},
+       {673, 1056, 1061, {32728, 32736, 32746, 32756, 32765, 32775, 32783}, {32793, 32797, 32802, 32806, 32810, 32814, 13568}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 32818, 32827, 32838, 32847, 32857, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 32818, 32827, 32838, 32847, 32857, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 1, 3, {18,9,775,755,417,0,0,0,0,0,0,0,0,0},{1217,1234,894,0,0,0,0,0,0,0},{71,266,1151,1243,1253,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {4315, 1066, 1071, {32867, 32892, 32917, 32942, 32955, 32970, 32987}, {33002, 33007, 33012, 33017, 33022, 33027, 310}, {16083, 16083, 33032, 6081, 6084, 16083, 6081}, {33035, 33054, 33069, 33091, 33111, 33125, 33139, 33151, 33175, 33197, 33214, 33231, 0}, {33248, 33267, 33282, 33304, 33324, 33340, 33356, 33370, 33396, 33420, 33437, 33231, 0}, {33454, 33463, 33472, 33479, 33486, 33493, 33500, 33507, 33514, 33521, 33528, 33535, 0}, {33454, 33463, 33472, 33479, 33486, 33493, 33500, 33507, 33514, 33521, 33528, 33535, 0}, 0, 1, 11, 3, {681,1208,417,4331,4341,0,0,0,0,0,0,0,0,0},{4354,4389,4418,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{4453,0,0,0,0,0,0,0}},
+       {925, 49, 52, {33542, 33554, 33565, 33577, 33589, 33599, 33611}, {33626, 33631, 33636, 33641, 33646, 33651, 33656}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {33661, 33670, 33682, 33690, 33695, 33705, 33712, 33721, 33728, 33734, 33743, 33754, 0}, {33661, 33670, 33682, 33690, 33695, 33705, 33712, 33721, 33728, 33734, 33743, 33754, 0}, {33762, 33767, 33772, 33777, 33782, 33787, 33792, 33646, 33797, 33802, 33807, 33812, 0}, {33762, 33767, 33772, 33777, 33782, 33787, 33792, 33646, 33797, 33802, 33807, 33812, 0}, 0, 0, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {4469, 1076, 1078, {33817, 33830, 33838, 33847, 33857, 33867, 33876}, {33888, 33892, 33896, 33900, 33904, 33908, 33912}, {1828, 1616, 1608, 5210, 9428, 4089, 1285}, {33916, 33930, 33941, 33950, 33961, 33973, 33987, 33999, 34012, 34025, 34037, 34050, 0}, {34064, 34081, 34095, 34107, 34121, 34136, 34150, 34162, 34177, 34192, 34206, 34221, 0}, {34237, 34242, 34248, 34254, 34259, 34265, 34271, 34276, 34282, 34287, 15862, 34293, 0}, {34237, 34242, 34248, 34254, 34259, 34265, 34271, 34276, 34282, 34287, 15862, 34293, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{4480,4502,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, {1, 10, 17, 37, 57, 81, 105, 112, 123, 134, 143, 161, 0}, 0, 0, 1, 3, {9,18,0,0,0,0,0,0,0,0,0,0,0,0},{29,42,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 5, 8, {177, 190, 211, 226, 237, 256, 267}, {280, 285, 290, 295, 300, 305, 310}, {315, 318, 321, 324, 327, 318, 324}, {330, 343, 360, 369, 380, 387, 394, 401, 414, 433, 450, 465, 0}, {330, 343, 360, 369, 380, 387, 394, 401, 414, 433, 450, 465, 0}, {482, 489, 360, 496, 380, 387, 394, 503, 510, 517, 524, 531, 0}, {482, 489, 360, 496, 380, 387, 394, 503, 510, 517, 524, 531, 0}, 2, 1, 11, 3, {116,131,147,163,0,0,0,0,0,0,0,0,0,0},{180,199,217,242,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{279,0,0,0,0,0,0,0}},
+       {109, 13, 19, {538, 547, 555, 563, 572, 579, 589}, {598, 602, 606, 610, 614, 618, 622}, {626, 629, 632, 635, 638, 641, 644}, {647, 653, 660, 666, 672, 677, 682, 689, 695, 704, 712, 721, 0}, {730, 739, 749, 758, 768, 776, 784, 794, 804, 816, 828, 840, 0}, {852, 857, 660, 863, 672, 677, 868, 873, 877, 882, 887, 892, 0}, {852, 857, 660, 863, 672, 677, 868, 873, 877, 882, 887, 892, 0}, 2, 1, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{315,338,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {34299, 34306, 34313, 34320, 34327, 34334, 34341}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {379,406,417,0,0,0,0,0,0,0,0,0,0,0},{469,1484,547,4518,0,0,0,0,0,0},{591,583,71,266,0,0,0,0,0,0,0,0},{611,600,89,271,0,0,0,0,0},{623,639,652,0,0,0,0,0}},
+       {673, 39, 44, {1197, 1205, 1215, 1223, 1231, 1240, 1247}, {1254, 1257, 1260, 1264, 1267, 1271, 1275}, {1278, 1280, 1282, 1285, 1287, 1280, 1285}, {1290, 1296, 1302, 1310, 1316, 1324, 1332, 1342, 1348, 1356, 1364, 1373, 0}, {1382, 1388, 1395, 1403, 1409, 1417, 1425, 1435, 1348, 1441, 1449, 1459, 0}, {1468, 1472, 1477, 1482, 1486, 1491, 1496, 1501, 1505, 1511, 1517, 1521, 0}, {1468, 1472, 1477, 1482, 1486, 1491, 1496, 1501, 1505, 1511, 1517, 1521, 0}, 2, 1, 11, 3, {681,692,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 49, 52, {1525, 1533, 1540, 1548, 1555, 1563, 1570}, {1578, 1583, 1587, 1591, 1595, 1599, 1603}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 1633, 1639, 1645, 1649, 1654, 1659, 1666, 1676, 1684, 1693, 0}, {1618, 1625, 1633, 1639, 1645, 1649, 1654, 1659, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {744,755,417,764,0,0,0,0,0,0,0,0,0,0},{721,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 57, 63, {1747, 1755, 1762, 1771, 1780, 1791, 1799}, {1807, 1810, 1813, 1816, 1819, 1822, 1825}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {681,775,417,784,0,0,0,0,0,0,0,0,0,0},{798,721,817,0,0,0,0,0,0,0},{71,830,0,0,0,0,0,0,0,0,0,0},{89,842,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 70, 77, {1959, 1974, 1989, 2000, 2015, 2028, 2047}, {2062, 2069, 2076, 2083, 2090, 2097, 2104}, {2111, 2114, 2117, 2117, 2120, 2120, 2123}, {2126, 2147, 2170, 2185, 2202, 2213, 2228, 2243, 2262, 2285, 2304, 2323, 0}, {2344, 2365, 2388, 2403, 2420, 2431, 2446, 2461, 2480, 2503, 2522, 2541, 0}, {2562, 2569, 2576, 2583, 2590, 2597, 2606, 2615, 2622, 2629, 2636, 2643, 0}, {2562, 2569, 2576, 2583, 2590, 2597, 2606, 2615, 2622, 2629, 2636, 2643, 0}, 2, 1, 1, 3, {295,18,857,9,864,417,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {932,941,948,957,460,417,968,0,0,0,0,0,0,0},{978,997,1010,1029,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 84, 88, {2997, 3009, 3021, 3031, 3045, 3055, 3067}, {3078, 3081, 3084, 3087, 3090, 3093, 3096}, {1285, 1608, 1610, 3099, 1610, 1280, 1616}, {3101, 3110, 3119, 3129, 3138, 3147, 3156, 3166, 3173, 3181, 3189, 3199, 0}, {3208, 3219, 3230, 3242, 3253, 3264, 3275, 3287, 3296, 3306, 3316, 3328, 0}, {3339, 3345, 3351, 3358, 3364, 3370, 3376, 3383, 3387, 3392, 3397, 3404, 0}, {3339, 3345, 3351, 3358, 3364, 3370, 3376, 3383, 3387, 3392, 3397, 3404, 0}, 2, 1, 11, 11, {1208,0,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{1146,0,0,0,0,0,0,0,0,0,0,0},{1165,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 2, 1, 1, 3, {18,9,775,755,417,0,0,0,0,0,0,0,0,0},{1217,894,1234,0,0,0,0,0,0,0},{71,266,1151,1243,1253,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 92, 105, {3596, 3614, 3628, 3646, 3664, 3682, 3698}, {3712, 3724, 3736, 3748, 3760, 3772, 3784}, {3791, 3796, 3801, 3806, 3811, 3816, 3821}, {3826, 3837, 3850, 3857, 3868, 3875, 3884, 3893, 3906, 3919, 3934, 3947, 0}, {3826, 3837, 3850, 3857, 3868, 3875, 3884, 3893, 3906, 3919, 3934, 3947, 0}, {3958, 3967, 3850, 3976, 3868, 3875, 3884, 3985, 3994, 4003, 4012, 4021, 0}, {3958, 3967, 3850, 3976, 3868, 3875, 3884, 3985, 3994, 4003, 4012, 4021, 0}, 0, 0, 1, 3, {18,1261,9,29,755,744,1274,417,1287,1304,0,0,0,0},{1314,1261,1332,1354,1287,0,0,0,0,0},{71,62,0,0,0,0,0,0,0,0,0,0},{89,77,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1375, 116, 120, {4030, 4040, 4048, 4053, 4060, 4073, 4081}, {2894, 4089, 3099, 4091, 4095, 1280, 4098}, {2894, 4089, 3099, 4102, 4095, 1280, 4102}, {4105, 4113, 4122, 4131, 4140, 4147, 4155, 4163, 4173, 4184, 1684, 1693, 0}, {4105, 4113, 4122, 4131, 4140, 4147, 4155, 4163, 4173, 4184, 1684, 1693, 0}, {1702, 857, 4193, 4200, 4206, 4212, 4218, 1727, 4224, 1737, 887, 1742, 0}, {1702, 857, 4193, 4200, 4206, 4212, 4218, 1727, 4224, 1737, 887, 1742, 0}, 2, 1, 124, 3, {1383,1397,0,0,0,0,0,0,0,0,0,0,0,0},{1410,1430,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{1444,0,0,0,0,0,0,0}},
+       {673, 127, 132, {4231, 4242, 4253, 4267, 4281, 4293, 4305}, {4317, 4322, 4328, 4334, 4340, 4345, 4351}, {1285, 1608, 4356, 1608, 1614, 1614, 1616}, {4359, 4367, 3504, 4376, 4383, 4388, 4395, 4402, 1666, 4184, 4410, 4420, 0}, {4359, 4367, 3504, 4376, 4383, 4388, 4395, 4402, 1666, 4184, 4410, 4420, 0}, {1702, 1707, 1712, 1717, 4383, 4212, 4218, 4429, 1732, 1737, 4436, 892, 0}, {1702, 1707, 1712, 1717, 4383, 4212, 4218, 4429, 1732, 1737, 4436, 892, 0}, 2, 1, 11, 3, {1208,1455,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {4442, 4451, 4459, 4468, 4479, 4488, 4497}, {4504, 4508, 4512, 4516, 4520, 4524, 4528}, {1828, 1616, 1608, 1608, 4532, 2894, 1285}, {4534, 4542, 2910, 4551, 4558, 4565, 4572, 2933, 4579, 4589, 712, 4597, 0}, {4534, 4542, 2910, 4551, 4558, 4565, 4572, 2933, 4579, 4589, 712, 4597, 0}, {4606, 4610, 4512, 4614, 4618, 4622, 4626, 4630, 4634, 4638, 4642, 4646, 0}, {4606, 4610, 4512, 4614, 4618, 4622, 4626, 4630, 4634, 4638, 4642, 4646, 0}, 2, 1, 1, 3, {18,864,9,1467,857,0,0,0,0,0,0,0,0,0},{1217,1475,894,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {370, 137, 144, {4650, 4660, 4670, 4680, 4690, 4700, 4710}, {1016, 4720, 4724, 4728, 4732, 4736, 4740}, {1016, 4720, 4724, 4728, 4732, 4736, 4740}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, 0, 0, 1, 3, {406,460,439,379,417,0,0,0,0,0,0,0,0,0},{469,1484,1508,1535,1564,1588,1617,1637,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{623,1662,652,0,0,0,0,0}},
+       {1680, 49, 52, {4771, 4781, 4791, 4801, 4811, 4821, 4831}, {4841, 4845, 4849, 4853, 4857, 4861, 4865}, {4841, 4845, 4849, 4853, 4857, 4861, 4865}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, {4869, 4874, 4879, 4884, 4889, 4894, 4899, 4904, 4909, 4914, 4920, 4926, 0}, 0, 0, 55, 3, {417,1690,446,388,0,0,0,0,0,0,0,0,0,0},{1699,1728,1752,1779,1801,1832,1858,1889,1915,1942},{583,591,266,71,0,0,0,0,0,0,0,0},{600,611,271,89,0,0,0,0,0},{1964,1981,2000,0,0,0,0,0}},
+       {109, 151, 156, {4932, 4939, 4947, 4955, 4964, 4974, 4982}, {4991, 3081, 4994, 4997, 5000, 5003, 5006}, {5009, 1608, 1828, 2735, 1828, 2894, 5009}, {5011, 5019, 5028, 1639, 5034, 1649, 1654, 5038, 1666, 1676, 1684, 1693, 0}, {5011, 5019, 5028, 1639, 5034, 1649, 1654, 5038, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 5047, 1717, 5034, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 5047, 1717, 5034, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {2015,1062,755,9,775,2024,417,0,0,0,0,0,0,0},{1217,1475,894,1234,0,0,0,0,0,0},{71,266,1146,2036,2048,0,0,0,0,0,0,0},{89,271,2060,2075,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {2090, 151, 156, {1525, 1533, 1540, 1548, 1555, 1563, 1570}, {5052, 5058, 5063, 5068, 5073, 5078, 5083}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 2, 1, 11, 11, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {5117, 5127, 5141, 5148, 5155, 5164, 1247}, {5172, 5179, 5184, 5188, 5193, 5198, 5202}, {1278, 1280, 2735, 5207, 5210, 1280, 1285}, {5212, 5221, 5226, 5233, 1645, 5243, 5252, 5259, 5269, 5279, 1364, 5292, 0}, {5302, 5311, 5318, 5324, 5333, 5338, 5346, 5352, 5361, 5371, 5385, 5395, 0}, {5403, 5407, 4512, 5411, 1645, 5415, 5419, 5423, 5427, 5431, 1517, 5436, 0}, {5403, 5407, 4512, 5411, 1645, 5415, 5419, 5423, 5427, 5431, 1517, 5436, 0}, 2, 1, 11, 3, {681,0,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1042, 49, 52, {2803, 5440, 5454, 5467, 5480, 5493, 2850}, {4504, 5505, 5509, 5513, 5517, 5521, 5525}, {1828, 1285, 1610, 5530, 5530, 1285, 1285}, {5532, 5540, 5550, 666, 5557, 5562, 5568, 2933, 5574, 5583, 5591, 5600, 0}, {5532, 5540, 5550, 666, 5557, 5562, 5568, 2933, 5574, 5583, 5591, 5600, 0}, {5089, 5609, 4512, 5613, 3515, 5093, 5097, 4630, 4634, 5617, 4642, 5621, 0}, {5089, 5609, 4512, 5613, 3515, 5093, 5097, 4630, 4634, 5617, 4642, 5621, 0}, 0, 0, 1, 3, {18,9,295,857,755,744,1062,2015,775,681,2024,2098,1208,417},{1069,1124,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {673, 49, 52, {5625, 5634, 3425, 5644, 5652, 5660, 5669}, {5675, 5678, 3081, 5682, 5685, 5689, 1275}, {1828, 4532, 1608, 1608, 4532, 2894, 1285}, {5692, 5700, 3504, 5707, 5714, 5719, 5729, 5737, 5743, 5753, 1684, 1693, 0}, {5692, 5700, 3504, 5707, 5714, 5719, 5729, 5737, 5743, 5753, 1684, 1693, 0}, {5761, 5768, 3504, 3579, 5714, 5774, 5781, 5737, 5786, 882, 887, 1742, 0}, {5761, 5768, 3504, 3579, 5714, 5774, 5781, 5737, 5786, 882, 887, 1742, 0}, 2, 1, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{2105,2134,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 151, 156, {5792, 5802, 5807, 5814, 5823, 5827, 5834}, {5845, 2863, 1712, 5850, 5823, 5855, 5860}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {5866, 5875, 5885, 5892, 3515, 5900, 5906, 1659, 5912, 5923, 5933, 5943, 0}, {5866, 5875, 5885, 5892, 3515, 5900, 5906, 1659, 5912, 5923, 5933, 5943, 0}, {5953, 1707, 1712, 1717, 3515, 5958, 5963, 1727, 2986, 882, 887, 1742, 0}, {5953, 1707, 1712, 1717, 3515, 5958, 5963, 1727, 2986, 882, 887, 1742, 0}, 0, 1, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 161, 166, {5968, 5991, 211, 6014, 6025, 6040, 6055}, {6070, 285, 290, 295, 300, 305, 310}, {6075, 6078, 6075, 6081, 6084, 6078, 6081}, {6087, 6100, 360, 6115, 380, 6128, 6137, 401, 6146, 6163, 6178, 6191, 0}, {6206, 6219, 6234, 6245, 6258, 6265, 6274, 6283, 6298, 6315, 6330, 6343, 0}, {6358, 6366, 360, 6376, 380, 6128, 6137, 6384, 6392, 6402, 6410, 6420, 0}, {6358, 6366, 360, 6376, 380, 6128, 6137, 6384, 6392, 6402, 6410, 6420, 0}, 0, 1, 11, 3, {681,775,2098,744,9,0,0,0,0,0,0,0,0,0},{199,180,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 49, 52, {6428, 6437, 6449, 6456, 6464, 6474, 6480}, {6487, 6491, 6495, 6499, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {6527, 6537, 6546, 6554, 6562, 6570, 6577, 6584, 6592, 1364, 6598, 6606, 0}, {6615, 6625, 6634, 6642, 6650, 6658, 6665, 6672, 6681, 5385, 6687, 6697, 0}, {6706, 6710, 6715, 6720, 6724, 5419, 1501, 6728, 6732, 1517, 6736, 1521, 0}, {6706, 6710, 6715, 6720, 6724, 5419, 1501, 6728, 6732, 1517, 6736, 1521, 0}, 0, 1, 11, 3, {2151,2161,2169,2181,2193,2203,2213,417,0,0,0,0,0,0},{2225,2239,2254,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {673, 49, 52, {6740, 6748, 6757, 6764, 6771, 6780, 1247}, {1254, 1257, 6787, 1264, 6790, 6794, 1275}, {6516, 6518, 6520, 6522, 6797, 6518, 6522}, {4105, 4113, 6800, 4376, 6806, 6811, 6816, 1659, 1666, 4184, 1684, 1693, 0}, {6821, 6830, 5318, 6840, 6848, 6854, 6860, 6866, 6874, 6884, 6893, 6902, 0}, {5089, 4610, 4512, 4614, 6806, 6811, 6816, 5101, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 6806, 6811, 6816, 5101, 5105, 5109, 4642, 6911, 0}, 2, 1, 11, 3, {681,692,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 171, 183, {6915, 6922, 6931, 6940, 6952, 6960, 6969}, {6979, 6983, 2791, 6988, 6993, 6997, 7001}, {1828, 4089, 1608, 1608, 7005, 1280, 1285}, {7007, 7013, 7020, 7025, 7031, 7035, 7043, 7050, 7056, 7064, 7070, 7078, 0}, {7086, 7092, 3504, 7099, 1645, 7105, 7113, 7120, 7126, 7134, 7140, 7148, 0}, {1914, 7156, 2791, 7160, 7031, 7164, 7168, 7172, 7001, 7176, 7180, 7185, 0}, {1914, 7156, 2791, 7160, 7031, 7164, 7168, 7172, 7001, 7176, 7180, 7185, 0}, 0, 1, 11, 3, {1208,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {2274, 194, 197, {7189, 7197, 7205, 1548, 1555, 1563, 7212}, {7220, 7225, 7230, 1591, 7234, 1599, 7239}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {5011, 5019, 3504, 1639, 1645, 1649, 1654, 7244, 1666, 1676, 1684, 1693, 0}, {5011, 5019, 3504, 1639, 1645, 1649, 1654, 7244, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 3504, 1717, 1645, 1649, 1654, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 3504, 1717, 1645, 1649, 1654, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {417,1690,0,0,0,0,0,0,0,0,0,0,0,0},{2287,2305,0,0,0,0,0,0,0,0},{71,266,2328,0,0,0,0,0,0,0,0,0},{89,271,2338,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, 0, 0, 1, 3, {295,857,9,18,304,2351,417,0,0,0,0,0,0,0},{894,2363,2379,0,0,0,0,0,0,0},{266,71,906,62,0,0,0,0,0,0,0,0},{271,89,914,77,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 200, 205, {7252, 7258, 7268, 7274, 7285, 7295, 7300}, {7310, 7314, 7318, 7322, 7327, 7331, 7335}, {1280, 1280, 1285, 7339, 1280, 5210, 5210}, {7342, 7347, 7354, 7359, 7365, 7372, 7380, 7387, 7396, 7403, 7408, 7415, 0}, {7342, 7347, 7354, 7359, 7365, 7372, 7380, 7387, 7396, 7403, 7408, 7415, 0}, {7423, 7427, 2791, 7432, 2760, 7436, 7440, 7444, 7449, 7453, 7457, 7461, 0}, {7423, 7427, 2791, 7432, 2760, 7436, 7440, 7444, 7449, 7453, 7457, 7461, 0}, 0, 1, 11, 3, {2421,304,0,0,0,0,0,0,0,0,0,0,0,0},{2431,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 49, 52, {7465, 7476, 7489, 7498, 7505, 7518, 7527}, {7465, 7476, 7489, 7498, 7505, 7518, 7527}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, 0, 0, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {7660, 7667, 7673, 7680, 7685, 7691, 7697}, {7703, 7707, 7711, 7715, 7719, 7723, 7727}, {1608, 1285, 1285, 7731, 3099, 2892, 1285}, {7733, 7741, 7750, 1851, 7756, 1861, 1866, 7760, 1878, 1888, 1896, 7768, 0}, {7733, 7741, 7750, 1851, 7756, 1861, 1866, 7760, 1878, 1888, 1896, 7768, 0}, {1914, 1918, 2791, 1927, 7756, 1931, 1935, 7777, 1943, 1947, 1951, 7781, 0}, {1914, 1918, 2791, 1927, 7756, 1931, 1935, 7777, 1943, 1947, 1951, 7781, 0}, 0, 0, 1, 11, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{2462,894,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 209, 214, {7785, 7798, 7817, 7834, 7847, 7860, 7877}, {280, 285, 290, 295, 300, 305, 310}, {7890, 6078, 6075, 6081, 6084, 6078, 6081}, {7893, 7906, 7917, 7934, 7949, 7964, 7979, 7992, 8007, 8024, 8039, 8056, 0}, {8071, 8082, 8095, 8110, 8123, 8136, 8149, 8160, 8173, 8188, 8201, 8220, 0}, {8233, 8240, 8247, 8254, 8261, 8268, 8275, 8282, 8289, 8296, 8303, 8310, 0}, {8233, 8240, 8247, 8254, 8261, 8268, 8275, 8282, 8289, 8296, 8303, 8310, 0}, 0, 1, 11, 3, {681,775,417,0,0,0,0,0,0,0,0,0,0,0},{2481,0,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{2499,0,0,0,0,0,0,0}},
+       {109, 49, 52, {8317, 8332, 8353, 8368, 8381, 8394, 7877}, {280, 285, 8409, 295, 8414, 305, 310}, {315, 318, 8419, 324, 327, 318, 324}, {8422, 8439, 8448, 8463, 380, 8480, 8495, 8508, 8523, 8540, 8561, 8578, 0}, {8593, 8610, 8623, 8640, 6258, 8659, 8674, 8687, 8700, 8715, 8738, 8757, 0}, {8770, 8240, 8777, 8784, 380, 8791, 8798, 8805, 8289, 8812, 8819, 8826, 0}, {8770, 8240, 8777, 8784, 380, 8791, 8798, 8805, 8289, 8812, 8819, 8826, 0}, 0, 1, 11, 3, {775,0,0,0,0,0,0,0,0,0,0,0,0,0},{894,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{2515,0,0,0,0,0,0,0}},
+       {673, 39, 219, {8833, 8841, 8852, 8858, 8864, 8873, 1247}, {8879, 5179, 5073, 8884, 8889, 8895, 5202}, {6516, 6518, 8900, 6522, 6524, 6518, 6522}, {1618, 1625, 6800, 1639, 1645, 8902, 8908, 8914, 1666, 1676, 1684, 1693, 0}, {1618, 1625, 6800, 1639, 1645, 8902, 8908, 8914, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 8921, 1732, 1737, 887, 1742, 0}, {1702, 1707, 1712, 1717, 1645, 1722, 868, 8921, 1732, 1737, 887, 1742, 0}, 0, 1, 124, 3, {2529,1455,0,0,0,0,0,0,0,0,0,0,0,0},{2541,2561,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 49, 52, {8926, 8937, 8948, 8959, 8970, 8981, 8987}, {1280, 7005, 1610, 3099, 1278, 7731, 1616}, {1280, 7005, 1610, 3099, 1278, 7731, 1616}, {8996, 9004, 9013, 9020, 3515, 9027, 9033, 1659, 1666, 9039, 1684, 9048, 0}, {8996, 9004, 9013, 9020, 3515, 9027, 9033, 1659, 1666, 9039, 1684, 9048, 0}, {9058, 9063, 9013, 4614, 3515, 9027, 9033, 5101, 9069, 5109, 4642, 9074, 0}, {9058, 9063, 9013, 4614, 3515, 9027, 9033, 5101, 9069, 5109, 4642, 9074, 0}, 2, 1, 11, 3, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{2575,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 224, 234, {9079, 9090, 9100, 9109, 9120, 9132, 9143}, {9153, 9161, 9168, 9174, 9182, 9191, 9199}, {1285, 1280, 1612, 1610, 5210, 1280, 1285}, {9206, 9216, 1633, 9227, 9236, 9242, 9250, 9258, 9266, 9277, 9286, 9296, 0}, {9206, 9216, 1633, 9227, 9236, 9242, 9250, 9258, 9266, 9277, 9286, 9296, 0}, {3566, 857, 1633, 1717, 9236, 9306, 9312, 1727, 2986, 1737, 887, 1742, 0}, {3566, 857, 1633, 1717, 9236, 9306, 9312, 1727, 2986, 1737, 887, 1742, 0}, 0, 1, 11, 3, {681,2583,0,0,0,0,0,0,0,0,0,0,0,0},{2603,2630,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2651,0,0,0,0,0,0,0}},
+       {925, 241, 252, {9318, 9330, 9342, 9354, 9368, 9383, 9396}, {9410, 9413, 9416, 9419, 9422, 9425, 6790}, {1285, 1280, 9428, 1610, 3099, 1280, 9430}, {9433, 9440, 9448, 9454, 9463, 9472, 9482, 9488, 9499, 9509, 9516, 9526, 0}, {9534, 9541, 9549, 9554, 9565, 9575, 9585, 9592, 9604, 9613, 9620, 9631, 0}, {9641, 9647, 9652, 9657, 9662, 9667, 9674, 9680, 9686, 9692, 9698, 9705, 0}, {9641, 9647, 9652, 9657, 9662, 9667, 9674, 9680, 9686, 9692, 9698, 9705, 0}, 2, 1, 55, 3, {417,0,0,0,0,0,0,0,0,0,0,0,0,0},{2667,2695,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 259, 271, {9712, 9727, 9742, 9757, 9774, 9793, 9804}, {9815, 9822, 9829, 9836, 9843, 9850, 9857}, {0, 0, 0, 0, 0, 0, 0}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 1, 11, 3, {681,775,2098,744,9,0,0,0,0,0,0,0,0,0},{2727,2745,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 283, 290, {10057, 10070, 10083, 10099, 10116, 10131, 10140}, {10057, 10070, 10083, 10099, 10116, 10131, 10140}, {10149, 10152, 10155, 10158, 10161, 10164, 10167}, {10170, 10183, 10194, 10203, 10214, 10219, 10228, 10239, 10246, 10261, 10272, 10285, 0}, {10298, 10313, 10194, 10203, 10326, 10219, 10333, 10239, 10246, 10261, 10272, 10285, 0}, {10170, 10183, 10194, 10203, 10214, 10219, 10228, 10239, 10246, 10261, 10272, 10285, 0}, {10170, 10183, 10194, 10203, 10214, 10219, 10228, 10239, 10246, 10261, 10272, 10285, 0}, 0, 6, 1, 3, {18,9,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 297, 300, {10346, 10359, 10369, 10378, 10388, 10399, 10410}, {10422, 10425, 10430, 10435, 10440, 10445, 10450}, {10422, 10455, 10458, 10461, 10464, 10467, 10470}, {10473, 10482, 10491, 10500, 10509, 10518, 10527, 10536, 10545, 10554, 10564, 10574, 0}, {10584, 10593, 10602, 10611, 10620, 10629, 10638, 10647, 10656, 10665, 10675, 10685, 0}, {10695, 10701, 10707, 10713, 10719, 10725, 10731, 10737, 10743, 10749, 10756, 10763, 0}, {10695, 10701, 10707, 10713, 10719, 10725, 10731, 10737, 10743, 10749, 10756, 10763, 0}, 0, 1, 1, 3, {18,9,755,744,417,0,0,0,0,0,0,0,0,0},{1261,0,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 303, 308, {10770, 10783, 10804, 10823, 10844, 10863, 10876}, {10887, 10894, 10901, 10908, 10915, 10922, 10929}, {10936, 10939, 10939, 10942, 10945, 10948, 10951}, {10954, 10969, 10984, 10993, 11004, 11015, 11028, 11041, 11056, 11075, 11094, 11111, 0}, {11130, 11147, 11164, 11175, 11188, 11201, 11216, 11231, 11248, 11269, 11290, 11309, 0}, {11330, 11337, 11344, 11351, 11358, 11365, 11372, 11379, 11386, 11393, 11400, 11407, 0}, {11330, 11337, 11344, 11351, 11358, 11365, 11372, 11379, 11386, 11393, 11400, 11407, 0}, 0, 1, 11, 3, {681,775,2764,18,2774,864,417,0,0,0,0,0,0,0},{1029,876,2462,1261,2785,2796,2808,2825,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {11414, 11420, 11434, 11457, 11471, 11487, 11494}, {11503, 11506, 11511, 11517, 11521, 11526, 11529}, {4756, 4744, 4746, 4748, 4750, 4752, 4754}, {11533, 11540, 7354, 11547, 2760, 11553, 11559, 11565, 11572, 11581, 11589, 11596, 0}, {11603, 11610, 11617, 11622, 11628, 11632, 11637, 11642, 11649, 11658, 11666, 11673, 0}, {11680, 5609, 4512, 4614, 11628, 11684, 11688, 11692, 11696, 5109, 11700, 11704, 0}, {11680, 5609, 4512, 4614, 11628, 11684, 11688, 11692, 11696, 5109, 11700, 11704, 0}, 0, 1, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{2843,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {11708, 11716, 11727, 11737, 11748, 11757, 11766}, {11776, 11780, 11784, 11788, 11792, 11796, 11800}, {11804, 9428, 9428, 9428, 1612, 1612, 1616}, {11806, 11816, 11824, 11832, 11840, 11848, 11855, 11863, 11871, 11878, 11884, 11891, 0}, {11806, 11899, 11907, 11915, 11923, 11931, 11938, 11946, 11954, 11961, 11967, 11974, 0}, {11982, 11987, 1712, 11992, 11997, 12002, 12007, 12012, 12017, 12022, 12027, 12032, 0}, {11982, 11987, 1712, 11992, 11997, 12002, 12007, 12012, 12017, 12022, 12027, 12032, 0}, 2, 1, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2872,2899,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2920,0,0,0,0,0,0,0}},
+       {673, 313, 324, {12037, 12047, 12058, 12065, 12072, 12082, 1247}, {12088, 12092, 12097, 12101, 12105, 12110, 12114}, {6516, 6518, 12118, 6522, 6797, 6518, 6522}, {1618, 1625, 12120, 12126, 12132, 8902, 8908, 12137, 1666, 1676, 12144, 1693, 0}, {12153, 12161, 12170, 12177, 12184, 12189, 12196, 12203, 6874, 12211, 12219, 6902, 0}, {5089, 4610, 12228, 4614, 12233, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, {5089, 4610, 12228, 4614, 12233, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, 2, 1, 11, 3, {1208,0,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{2939,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 335, 349, {12245, 190, 211, 6014, 12258, 12275, 12286}, {12299, 12307, 12315, 12323, 12331, 12339, 12347}, {315, 318, 321, 324, 327, 318, 324}, {12355, 343, 360, 369, 12370, 12377, 12386, 401, 414, 433, 450, 465, 0}, {12355, 343, 360, 369, 12370, 12377, 12386, 401, 414, 433, 450, 465, 0}, {12395, 12403, 12411, 6376, 12370, 12419, 12427, 6384, 12435, 6402, 12445, 6420, 0}, {12395, 12403, 12411, 6376, 12370, 12419, 12427, 6384, 12435, 6402, 12445, 6420, 0}, 0, 1, 11, 3, {2953,0,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2963,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12455, 12463, 12472, 12481, 12490, 12497, 12507}, {12516, 12520, 12524, 12528, 12532, 12535, 12539}, {0, 0, 0, 0, 0, 0, 0}, {12543, 12554, 12562, 12572, 12578, 12590, 12599, 12605, 12611, 12619, 12628, 12640, 0}, {12543, 12554, 12562, 12572, 12578, 12590, 12599, 12605, 12611, 12619, 12628, 12640, 0}, {12648, 12652, 12656, 12660, 12664, 1914, 12668, 12672, 12676, 12680, 12684, 12688, 0}, {12648, 12652, 12656, 12660, 12664, 1914, 12668, 12672, 12676, 12680, 12684, 12688, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12692, 12698, 12711, 12722, 12733, 12742, 12754}, {12516, 12764, 12768, 12772, 12532, 12776, 12780}, {0, 0, 0, 0, 0, 0, 0}, {12784, 12792, 12804, 12816, 12828, 12838, 12850, 12859, 12867, 12875, 12885, 12892, 0}, {12784, 12792, 12804, 12816, 12828, 12838, 12850, 12859, 12867, 12875, 12885, 12892, 0}, {2707, 12906, 12910, 12914, 12918, 12922, 12926, 12930, 12934, 12938, 12942, 12946, 0}, {2707, 12906, 12910, 12914, 12918, 12922, 12926, 12930, 12934, 12938, 12942, 12946, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12950, 12957, 12472, 12968, 12490, 12977, 12988}, {12688, 12998, 12524, 12528, 12532, 13002, 13006}, {0, 0, 0, 0, 0, 0, 0}, {13010, 13020, 13029, 13037, 13046, 13059, 13071, 13078, 13085, 13092, 13102, 13114, 0}, {13010, 13020, 13029, 13037, 13046, 13059, 13071, 13078, 13085, 13092, 13102, 13114, 0}, {13127, 12776, 13131, 13135, 12664, 13139, 13143, 12672, 13147, 13151, 13155, 13159, 0}, {13127, 12776, 13131, 13135, 12664, 13139, 13143, 12672, 13147, 13151, 13155, 13159, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 0, 0, {13163, 13168, 13174, 13184, 13196, 13204, 13215}, {13224, 13228, 13232, 13236, 13240, 12535, 13244}, {0, 0, 0, 0, 0, 0, 0}, {13248, 13258, 13268, 13275, 13282, 1861, 13287, 13294, 13301, 13310, 13318, 13326, 0}, {13248, 13258, 13268, 13275, 13282, 1861, 13287, 13294, 13301, 13310, 13318, 13326, 0}, {1914, 1918, 13006, 13334, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 13006, 13334, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 49, 52, {13350, 13357, 13369, 13380, 13393, 13402, 13414}, {12516, 13424, 13428, 13236, 13240, 12535, 13244}, {1285, 1608, 13432, 1610, 1285, 4089, 1608}, {13434, 13258, 13443, 13449, 13282, 1861, 13287, 13294, 13457, 13310, 13318, 13326, 0}, {13467, 13258, 13443, 13449, 13282, 1861, 13287, 13294, 13457, 13310, 13318, 13326, 0}, {1914, 1918, 13478, 13482, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 13478, 13482, 13338, 1931, 1935, 13342, 1943, 1947, 1951, 13346, 0}, 0, 0, 1, 3, {932,3009,0,0,0,0,0,0,0,0,0,0,0,0},{978,997,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 359, 363, {13486, 13493, 13501, 13509, 13518, 13528, 13535}, {13544, 13548, 13552, 13556, 13560, 13564, 13568}, {1285, 1608, 1828, 2735, 1828, 2894, 1285}, {13572, 13581, 13591, 1851, 7756, 13597, 13603, 13609, 1878, 1888, 1896, 7768, 0}, {13572, 13581, 13591, 1851, 7756, 13597, 13603, 13609, 1878, 1888, 1896, 7768, 0}, {13618, 13623, 13628, 13633, 7756, 13638, 13643, 13648, 13653, 13658, 13663, 13668, 0}, {13618, 13623, 13628, 13633, 7756, 13638, 13643, 13648, 13653, 13658, 13663, 13668, 0}, 0, 0, 55, 3, {417,2351,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {13673, 13689, 13714, 13742, 13770, 13798, 13826}, {13845, 13855, 13865, 13875, 13885, 13895, 13905}, {13915, 13919, 13923, 13919, 13927, 13931, 13935}, {13939, 13961, 13989, 14005, 14024, 14040, 14059, 14078, 14100, 14131, 14159, 14184, 0}, {13939, 13961, 13989, 14005, 14024, 14040, 14059, 14078, 14100, 14131, 14159, 14184, 0}, {14212, 14222, 14232, 14242, 14252, 14262, 14272, 14282, 14292, 14302, 14312, 14322, 0}, {14212, 14222, 14232, 14242, 14252, 14262, 14272, 14282, 14292, 14302, 14312, 14322, 0}, 0, 1, 11, 3, {681,3021,0,0,0,0,0,0,0,0,0,0,0,0},{42,1029,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 49, 52, {4231, 14332, 14343, 14353, 14363, 14373, 14387}, {14399, 14403, 14408, 14413, 14417, 14422, 14427}, {1285, 1608, 1610, 1608, 4089, 1614, 1616}, {1618, 1625, 3504, 4376, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 4376, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 2, 1, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{1314,1455,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 367, 395, {14431, 14450, 14469, 14491, 14510, 14532, 14557}, {14576, 14586, 14596, 14609, 14619, 14632, 14648}, {14658, 14662, 14669, 14676, 14683, 14690, 14697}, {14701, 14717, 14736, 14752, 14771, 14778, 14788, 14804, 14820, 14839, 14861, 14877, 0}, {14701, 14717, 14736, 14752, 14771, 14778, 14788, 14804, 14820, 14839, 14861, 14877, 0}, {14896, 14906, 14736, 14752, 14771, 14778, 14919, 14932, 14942, 14955, 14974, 14984, 0}, {14896, 14906, 14736, 14752, 14771, 14778, 14919, 14932, 14942, 14955, 14974, 14984, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {3033, 49, 52, {14997, 15006, 15015, 15025, 15035, 15045, 15057}, {15065, 15070, 15074, 15078, 15082, 15087, 15092}, {15096, 15100, 15103, 15106, 15109, 15113, 15117}, {15120, 15127, 15132, 1851, 15138, 15144, 15151, 15157, 15165, 15175, 15183, 15192, 0}, {15120, 15127, 15132, 1851, 15138, 15144, 15151, 15157, 15165, 15175, 15183, 15192, 0}, {1914, 15202, 2791, 1927, 15206, 15210, 15215, 15219, 15223, 15227, 1951, 15231, 0}, {1914, 15202, 2791, 1927, 15206, 15210, 15215, 15219, 15223, 15227, 1951, 15231, 0}, 0, 0, 1, 3, {18,2351,0,0,0,0,0,0,0,0,0,0,0,0},{3048,3074,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{3094,0,0,0,0,0,0,0}},
+       {925, 417, 422, {15236, 15248, 15259, 15273, 15285, 15295, 15305}, {15316, 15321, 15326, 15331, 15336, 15341, 15346}, {1285, 2894, 1608, 4532, 1828, 13432, 1616}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, 2, 1, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {109, 427, 430, {15872, 15877, 7673, 7680, 15883, 15890, 7697}, {15897, 15901, 7711, 7715, 15905, 7723, 7727}, {9428, 11804, 1285, 7731, 3099, 2892, 1285}, {7733, 7741, 15909, 1851, 7756, 1931, 15913, 15919, 1878, 1888, 1896, 15924, 0}, {7733, 7741, 15909, 1851, 7756, 1931, 15913, 15919, 1878, 1888, 1896, 15924, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 15933, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 15933, 1943, 1947, 1951, 13346, 0}, 0, 1, 1, 3, {2764,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {15937, 15954, 15971, 15988, 16005, 16022, 16031}, {16042, 16047, 16052, 16057, 16062, 16067, 16072}, {16077, 16080, 6081, 6081, 16083, 16077, 6081}, {16086, 16099, 16110, 16123, 16134, 16145, 16158, 16169, 16180, 16197, 16208, 16221, 0}, {16240, 16253, 16264, 16277, 16288, 16299, 16312, 16323, 16334, 16351, 16362, 16375, 0}, {16394, 16402, 16410, 16418, 16426, 16434, 16442, 16450, 16458, 16466, 16474, 16482, 0}, {16394, 16402, 16410, 16418, 16426, 16434, 16442, 16450, 16458, 16466, 16474, 16482, 0}, 0, 1, 1, 3, {18,3112,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3125, 434, 439, {16490, 16507, 16524, 16541, 16558, 16575, 16584}, {16597, 16605, 16613, 16623, 16633, 16575, 16643}, {16077, 16080, 16651, 16651, 16083, 16077, 16654}, {16657, 16670, 9888, 16685, 9908, 16698, 16707, 9929, 16716, 16733, 16748, 16761, 0}, {6087, 6100, 360, 6115, 380, 6128, 6137, 401, 6146, 6163, 6178, 6191, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 1, 55, 3, {3132,0,0,0,0,0,0,0,0,0,0,0,0,0},{3141,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{3160,0,0,0,0,0,0,0}},
+       {109, 49, 52, {16776, 16785, 16794, 16802, 16811, 16820, 16827}, {16776, 16785, 16794, 16802, 16811, 16820, 16827}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {7733, 7741, 16836, 16842, 7756, 1861, 15913, 16849, 13301, 16856, 13318, 16863, 0}, {7733, 7741, 16836, 16842, 7756, 1861, 15913, 16849, 13301, 16856, 13318, 16863, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 16871, 1943, 1947, 1951, 7781, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 16871, 1943, 1947, 1951, 7781, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 0, 0, {16875, 16886, 16895, 16904, 16915, 16925, 16930}, {16937, 16941, 16944, 16947, 16951, 9416, 16954}, {16958, 1828, 1285, 7339, 1280, 9428, 16961}, {16964, 16972, 11617, 11622, 16979, 16984, 16990, 12137, 16996, 17006, 17015, 11673, 0}, {16964, 16972, 11617, 11622, 16979, 16984, 16990, 12137, 16996, 17006, 17015, 11673, 0}, {17023, 17028, 11617, 4614, 16979, 16984, 16990, 12237, 11696, 5109, 17032, 11704, 0}, {17023, 17028, 11617, 4614, 16979, 16984, 16990, 12237, 11696, 5109, 17032, 11704, 0}, 0, 1, 11, 3, {3176,681,0,0,0,0,0,0,0,0,0,0,0,0},{3191,0,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{3223,0,0,0,0,0,0,0}},
+       {925, 444, 447, {17037, 17047, 17056, 17065, 17076, 17086, 17091}, {17098, 17102, 17107, 17112, 17117, 7723, 17121}, {17126, 1828, 1285, 5210, 1280, 2892, 1285}, {11533, 11540, 7354, 11547, 2760, 17128, 17133, 17138, 17145, 17153, 11589, 11596, 0}, {11603, 11610, 11617, 11622, 11628, 11632, 11637, 8914, 17160, 17168, 11666, 11673, 0}, {12906, 17175, 2791, 1927, 2760, 17179, 17183, 17187, 7707, 1947, 17191, 17195, 0}, {12906, 17175, 2791, 1927, 2760, 17179, 17183, 17187, 7707, 1947, 17191, 17195, 0}, 0, 1, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {109, 49, 52, {17199, 17218, 17237, 17262, 17281, 17315, 17340}, {17359, 17369, 17379, 17395, 17405, 17430, 17446}, {17456, 17460, 17467, 17471, 17478, 17485, 17492}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, 0, 0, 55, 11, {755,1062,744,755,744,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{1151,1146,3258,3267,0,0,0,0,0,0,0,0},{1173,1165,3275,3287,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 49, 52, {18324, 18343, 18362, 18384, 18403, 18425, 18450}, {18469, 18479, 18489, 18502, 18512, 18525, 18541}, {18551, 18555, 18562, 18569, 18576, 18583, 18590}, {18594, 18622, 18650, 18666, 18685, 18692, 18702, 18718, 18734, 18762, 18784, 18806, 0}, {18594, 18622, 18650, 18666, 18685, 18692, 18702, 18718, 18734, 18762, 18784, 18806, 0}, {18831, 18850, 18650, 18666, 18685, 18692, 18702, 18718, 18869, 18885, 18901, 18911, 0}, {18831, 18850, 18650, 18666, 18685, 18692, 18702, 18718, 18869, 18885, 18901, 18911, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 5, 8, {18924, 18943, 18962, 18987, 19006, 19028, 19053}, {19072, 19082, 19092, 19108, 19118, 19131, 19147}, {19157, 19161, 19168, 19172, 19179, 19186, 19193}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, {19197, 19219, 19241, 19263, 19282, 19289, 19299, 19315, 19331, 19362, 19384, 19406, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 480, 505, {19431, 19450, 19472, 19497, 19513, 19535, 19554}, {19564, 19578, 19592, 19606, 19617, 19631, 19554}, {19645, 19652, 19659, 19666, 19673, 19680, 19687}, {19691, 19707, 19732, 19751, 19770, 19777, 19790, 19803, 19822, 19853, 19878, 19900, 0}, {19691, 19707, 19732, 19751, 19770, 19777, 19790, 19803, 19822, 19853, 19878, 19900, 0}, {19925, 19933, 19947, 19961, 19770, 19777, 19790, 19972, 19980, 19994, 20005, 20013, 0}, {19925, 19933, 19947, 19961, 19770, 19777, 19790, 19972, 19980, 19994, 20005, 20013, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {20024, 20046, 20068, 20093, 20115, 20140, 20168}, {20190, 20200, 20210, 20223, 20233, 20246, 20262}, {20272, 20276, 20283, 20287, 20294, 20301, 20308}, {20312, 20328, 20353, 20372, 20394, 20401, 20414, 20427, 20446, 20477, 20502, 20521, 0}, {20312, 20328, 20353, 20372, 20394, 20401, 20414, 20427, 20446, 20477, 20502, 20521, 0}, {20546, 20553, 20353, 20569, 20394, 20401, 20414, 20427, 20585, 20607, 20623, 20633, 0}, {20546, 20553, 20353, 20569, 20394, 20401, 20414, 20427, 20585, 20607, 20623, 20633, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 530, 558, {20649, 20671, 20690, 20712, 20731, 20753, 20778}, {20797, 20810, 20820, 20833, 20843, 20856, 20872}, {20882, 20889, 20896, 20903, 20910, 20917, 20924}, {20928, 20944, 20969, 20988, 21010, 21017, 21030, 21043, 21062, 21093, 21118, 21140, 0}, {20928, 20944, 20969, 20988, 21010, 21017, 21030, 21043, 21062, 21093, 21118, 21140, 0}, {21165, 21172, 20969, 21188, 21010, 21017, 21030, 21204, 21211, 21233, 21249, 21262, 0}, {21165, 21172, 20969, 21188, 21010, 21017, 21030, 21204, 21211, 21233, 21249, 21262, 0}, 0, 0, 55, 3, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {3316, 49, 52, {21278, 21306, 21340, 21368, 21396, 21427, 21464}, {21492, 21505, 21524, 21540, 21553, 21572, 21591}, {21601, 21608, 21615, 21622, 21629, 21642, 21649}, {21653, 21672, 21700, 21722, 21741, 21754, 21764, 21777, 21802, 21833, 21858, 21874, 0}, {21653, 21672, 21700, 21722, 21741, 21754, 21764, 21777, 21802, 21833, 21858, 21874, 0}, {21893, 21903, 21922, 21932, 21741, 21754, 21764, 21948, 21955, 21980, 21996, 22006, 0}, {21893, 21903, 21922, 21932, 21741, 21754, 21764, 21948, 21955, 21980, 21996, 22006, 0}, 0, 0, 55, 11, {755,1062,775,2098,0,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{1151,1146,3258,3267,0,0,0,0,0,0,0,0},{1173,1165,3275,3287,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 580, 608, {22019, 22038, 22057, 22082, 22101, 22135, 22160}, {22179, 17369, 17379, 17395, 22189, 22214, 17446}, {0, 0, 0, 0, 0, 0, 0}, {22230, 22255, 22286, 22302, 17593, 17600, 17610, 22321, 22337, 22368, 22390, 22412, 0}, {22230, 22255, 22286, 22302, 17593, 17600, 17610, 22321, 22337, 22368, 22390, 22412, 0}, {22437, 22450, 22286, 22302, 17593, 17600, 17610, 22469, 22476, 22492, 22508, 22518, 0}, {22437, 22450, 22286, 22302, 17593, 17600, 17610, 22469, 22476, 22492, 22508, 22518, 0}, 0, 0, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{3324,0,0,0,0,0,0,0,0,0},{583,591,266,0,0,0,0,0,0,0,0,0},{600,611,271,0,0,0,0,0,0},{3343,3351,0,0,0,0,0,0}},
+       {1, 630, 642, {14431, 14450, 22531, 14491, 14510, 14532, 14557}, {14576, 14586, 22553, 14609, 14619, 14632, 14648}, {14658, 14662, 14669, 14676, 14683, 14690, 14697}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 22661, 22677, 22702, 22724, 22752, 0}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 22661, 22677, 22702, 22724, 22752, 0}, {22774, 22787, 14736, 22806, 22641, 14778, 22648, 22822, 22829, 22848, 22864, 22886, 0}, {22774, 22787, 14736, 22806, 22641, 14778, 22648, 22822, 22829, 22848, 22864, 22886, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 651, 656, {22902, 22909, 22920, 22933, 22946, 22957, 22970}, {22981, 22986, 22991, 22996, 23001, 23006, 23011}, {22981, 22986, 22991, 22996, 23001, 23006, 23011}, {23016, 23042, 23070, 23100, 23130, 23156, 23186, 23212, 23240, 23264, 23292, 23329, 0}, {23016, 23042, 23070, 23100, 23130, 23156, 23186, 23212, 23240, 23264, 23292, 23329, 0}, {23368, 23380, 23392, 23404, 23416, 23428, 23440, 23452, 23464, 23476, 23489, 23502, 0}, {23368, 23380, 23392, 23404, 23416, 23428, 23440, 23452, 23464, 23476, 23489, 23502, 0}, 0, 1, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3361,3399,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {3431, 661, 683, {23515, 23543, 23571, 23608, 23639, 23673, 23704}, {23738, 23754, 23770, 23795, 23814, 23836, 23855}, {23877, 23884, 23891, 23901, 23911, 23921, 23931}, {23944, 23978, 24015, 24052, 24086, 24117, 24154, 24191, 24231, 24265, 24299, 24348, 0}, {24397, 24428, 24462, 24496, 24527, 24555, 24589, 24623, 24660, 24691, 24722, 24768, 0}, {24814, 24827, 24840, 24853, 24866, 24879, 24892, 24905, 24918, 24931, 24947, 24963, 0}, {24814, 24827, 24840, 24853, 24866, 24879, 24892, 24905, 24918, 24931, 24947, 24963, 0}, 0, 0, 1, 3, {379,388,397,428,417,406,446,439,453,0,0,0,0,0},{3455,3498,3546,3578,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{3615,666,0,0,0,0,0,0}},
+       {109, 708, 711, {24979, 24988, 24998, 25010, 25023, 25032, 25044}, {25056, 25060, 12926, 25065, 25069, 25073, 25077}, {1285, 25081, 1608, 1608, 11804, 4532, 1285}, {25084, 25091, 25100, 25107, 1857, 25114, 25122, 25133, 25138, 25143, 25150, 25159, 0}, {25084, 25091, 25100, 25107, 1857, 25114, 25122, 25133, 25138, 25143, 25150, 25159, 0}, {25167, 25171, 12926, 25175, 1857, 25179, 25183, 25133, 25138, 25187, 25191, 25196, 0}, {25167, 25171, 12926, 25175, 1857, 25179, 25183, 25133, 25138, 25187, 25191, 25196, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {25201, 25223, 25239, 25258, 25268, 25299, 25315}, {25201, 25223, 25239, 25258, 25268, 25299, 25315}, {25328, 25332, 25328, 25336, 25336, 25340, 25340}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, {25344, 25357, 25376, 25389, 25402, 25415, 25434, 25453, 25466, 25482, 25495, 25520, 0}, 0, 0, 1, 3, {9,417,0,0,0,0,0,0,0,0,0,0,0,0},{894,2363,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{3648,0,0,0,0,0,0,0}},
+       {109, 714, 739, {25533, 25558, 25577, 25605, 25624, 25649, 25668}, {25690, 25706, 25716, 25735, 25745, 25761, 25771}, {25784, 25791, 25795, 25799, 25803, 25810, 25817}, {25821, 25840, 25856, 25869, 25882, 25904, 25923, 25945, 25961, 25977, 25990, 26006, 0}, {25821, 25840, 25856, 25869, 25882, 25904, 25923, 25945, 25961, 25977, 25990, 26006, 0}, {26022, 26031, 26040, 26049, 26058, 26067, 26079, 26088, 26097, 26106, 26115, 26124, 0}, {26022, 26031, 26040, 26049, 26058, 26067, 26079, 26088, 26097, 26106, 26115, 26124, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{3683,894,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 764, 780, {26133, 26161, 26183, 26202, 26227, 26252, 26271}, {26133, 26161, 26183, 26202, 26227, 26252, 26271}, {26281, 26281, 26285, 26289, 26293, 26297, 26301}, {26305, 26330, 26361, 26371, 26384, 26391, 26404, 26426, 26442, 26467, 26498, 26523, 0}, {26305, 26330, 26361, 26371, 26384, 26391, 26404, 26426, 26442, 26467, 26498, 26523, 0}, {26545, 26555, 26361, 26562, 26384, 26391, 26566, 26573, 26577, 26587, 26603, 26613, 0}, {26545, 26555, 26361, 26562, 26384, 26391, 26566, 26573, 26577, 26587, 26603, 26613, 0}, 0, 0, 55, 3, {744,304,0,0,0,0,0,0,0,0,0,0,0,0},{3710,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 151, 156, {2803, 26620, 2817, 26625, 26635, 26641, 2850}, {26648, 26653, 26658, 26663, 26669, 26674, 26679}, {1828, 1616, 1608, 1608, 2890, 2894, 1285}, {26685, 26693, 26702, 26708, 26714, 26719, 26725, 26731, 26738, 26747, 26755, 26764, 0}, {26773, 26781, 2910, 666, 5557, 26790, 26796, 2933, 5574, 5583, 5591, 26802, 0}, {26811, 13623, 26658, 26816, 26714, 26719, 26821, 26826, 26831, 26836, 13663, 26841, 0}, {26811, 13623, 26658, 26816, 26714, 26719, 26821, 26826, 26831, 26836, 13663, 26841, 0}, 2, 1, 1, 3, {18,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1314,1261,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 630, 790, {26846, 14450, 26874, 14491, 14510, 14532, 14557}, {14576, 14586, 22553, 14609, 14619, 14632, 14648}, {0, 0, 0, 0, 0, 0, 0}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 26893, 26909, 26937, 22724, 22752, 0}, {22566, 22591, 14736, 22622, 22641, 14778, 22648, 26893, 26909, 26937, 22724, 22752, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, {4744, 4746, 4748, 4750, 4752, 4754, 4756, 4758, 4760, 4762, 4765, 4768, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,591,583,0,0,0,0,0,0,0,0},{89,271,611,600,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 802, 814, {26959, 26975, 26991, 27019, 27035, 27078, 27103}, {26959, 26975, 27131, 27019, 27141, 27163, 27176}, {27186, 27190, 27194, 27198, 27202, 27215, 27222}, {27229, 27248, 27273, 27292, 27317, 27330, 27343, 27356, 27378, 27412, 27437, 27465, 0}, {27229, 27248, 27273, 27292, 27317, 27330, 27343, 27356, 27378, 27412, 27437, 27465, 0}, {27493, 27500, 27510, 27292, 27317, 27330, 27343, 27523, 27533, 27546, 27556, 27569, 0}, {27493, 27500, 27510, 27292, 27317, 27330, 27343, 27523, 27533, 27546, 27556, 27569, 0}, 0, 1, 55, 11, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{3267,71,0,0,0,0,0,0,0,0,0,0},{3287,89,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 852, 862, {28047, 28057, 28064, 28077, 28087, 28097, 28107}, {28047, 28057, 28117, 28077, 28087, 28097, 28107}, {28127, 28131, 28135, 28139, 28143, 28147, 28151}, {28155, 28171, 28187, 28197, 28210, 28217, 28224, 28234, 28247, 28266, 28282, 28298, 0}, {28155, 28171, 28187, 28197, 28210, 28217, 28224, 28234, 28247, 28266, 28282, 28298, 0}, {28314, 28324, 28187, 28334, 28210, 28217, 28224, 28344, 28354, 28364, 28374, 28384, 0}, {28314, 28324, 28187, 28334, 28210, 28217, 28224, 28344, 28354, 28364, 28374, 28384, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 367, 395, {28601, 28620, 28639, 28664, 28683, 28705, 28730}, {28749, 14586, 28759, 14609, 28775, 14632, 14648}, {28788, 14662, 28792, 14676, 28796, 14690, 14697}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 14771, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, 0, 0, 1, 3, {932,941,948,957,460,417,968,0,0,0,0,0,0,0},{3763,3783,42,2448,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{3351,0,0,0,0,0,0,0}},
+       {109, 49, 52, {28979, 28985, 28993, 29001, 29010, 29021, 29027}, {29033, 29036, 3084, 4997, 3090, 29039, 1275}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {29042, 29053, 13591, 1851, 29064, 29070, 2769, 13609, 29075, 1888, 29085, 29094, 0}, {29042, 29053, 13591, 1851, 29064, 29070, 2769, 13609, 29075, 1888, 29085, 29094, 0}, {1914, 1918, 29103, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 7781, 0}, {1914, 1918, 29103, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 7781, 0}, 2, 1, 55, 3, {744,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 0, 0, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, {29107, 29114, 29123, 29138, 29149, 29158, 29165, 29172, 29179, 29190, 29203, 29216, 0}, 0, 6, 1, 3, {379,417,0,0,0,0,0,0,0,0,0,0,0,0},{894,1217,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {29221, 29228, 29234, 29241, 29252, 29260, 29269}, {29276, 29280, 2791, 29284, 29288, 29292, 7727}, {29276, 29280, 2791, 29284, 29288, 29292, 7727}, {29296, 29302, 29310, 26708, 29316, 29321, 29327, 26731, 29333, 29343, 29351, 29361, 0}, {29296, 29302, 29310, 26708, 29316, 29321, 29327, 26731, 29333, 29343, 29351, 29361, 0}, {29371, 29375, 2791, 29379, 2760, 29383, 29387, 16871, 15223, 1947, 29391, 13346, 0}, {29371, 29375, 2791, 29379, 2760, 29383, 29387, 16871, 15223, 1947, 29391, 13346, 0}, 0, 0, 1, 3, {932,3009,0,0,0,0,0,0,0,0,0,0,0,0},{978,997,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 49, 52, {29614, 29621, 29629, 29636, 29643, 29651, 29660}, {29667, 29671, 29675, 29679, 29683, 7723, 28444}, {1616, 1616, 1610, 1616, 9428, 2892, 9428}, {29687, 29695, 29705, 29711, 29719, 29724, 29729, 29734, 29741, 16856, 29749, 29757, 0}, {29687, 29695, 29705, 29711, 29719, 29724, 29729, 29734, 29741, 16856, 29749, 29757, 0}, {1914, 29765, 2791, 29769, 2760, 28570, 28574, 29773, 2731, 1947, 29777, 13346, 0}, {1914, 29765, 2791, 29769, 2760, 28570, 28574, 29773, 2731, 1947, 29777, 13346, 0}, 0, 0, 1, 3, {295,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1010,1029,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 914, 925, {29781, 29799, 29814, 29836, 29849, 29863, 29880}, {29904, 29912, 29917, 29836, 29849, 29929, 29936}, {0, 0, 0, 0, 0, 0, 0}, {29950, 29972, 29988, 30008, 30022, 30039, 30054, 30071, 30085, 30098, 30117, 30131, 0}, {29950, 29972, 29988, 30008, 30022, 30039, 30054, 30071, 30085, 30098, 30117, 30131, 0}, {30150, 30165, 30174, 30187, 30194, 30204, 30212, 30222, 30229, 30235, 30247, 30254, 0}, {30150, 30165, 30174, 30187, 30194, 30204, 30212, 30222, 30229, 30235, 30247, 30254, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 0, 0, {30266, 30274, 12472, 12968, 12490, 30285, 30295}, {12516, 12998, 12524, 12528, 12532, 12535, 30304}, {0, 0, 0, 0, 0, 0, 0}, {30308, 30317, 30327, 30335, 7756, 2764, 30343, 30349, 30358, 30367, 30376, 30385, 0}, {30308, 30317, 30327, 30335, 7756, 2764, 30343, 30349, 30358, 30367, 30376, 30385, 0}, {1914, 1918, 13006, 30394, 7756, 1931, 1935, 16871, 15223, 1947, 30398, 13346, 0}, {1914, 1918, 13006, 30394, 7756, 1931, 1935, 16871, 15223, 1947, 30398, 13346, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {3797, 935, 941, {30402, 30410, 30419, 30430, 30440, 30452, 30460}, {12516, 30470, 30475, 30480, 30485, 30489, 30493}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 30497, 30504, 30512, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 30497, 30504, 30512, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 30516, 29379, 30512, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 30516, 29379, 30512, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {775,9,755,0,0,0,0,0,0,0,0,0,0,0},{721,3806,798,2541,3819,3844,0,0,0,0},{71,266,1146,3870,0,0,0,0,0,0,0,0},{89,3882,3897,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3913, 951, 956, {30521, 30528, 30543, 30557, 30573, 30588, 30604}, {4528, 30619, 4512, 30623, 30627, 30631, 30635}, {1285, 9428, 1608, 1280, 1285, 1610, 9428}, {5011, 5019, 30639, 30646, 30653, 1649, 1654, 30658, 30668, 30679, 30688, 30698, 0}, {5011, 5019, 30639, 30646, 30653, 1649, 1654, 30658, 30668, 30679, 30688, 30698, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 5101, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 5101, 5105, 5109, 4642, 6911, 0}, 0, 0, 55, 3, {744,755,417,764,0,0,0,0,0,0,0,0,0,0},{3926,721,2561,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 961, 966, {30708, 30724, 30732, 30740, 30749, 30761, 30771}, {30781, 30787, 30793, 30797, 30801, 30809, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {30816, 30829, 30843, 30852, 30512, 30858, 30863, 30871, 13301, 30884, 13318, 13326, 0}, {30816, 30829, 30843, 30852, 30512, 30858, 30863, 30871, 13301, 30884, 13318, 13326, 0}, {30893, 1918, 30897, 13334, 30512, 30901, 1935, 30905, 1943, 30913, 1951, 13346, 0}, {30893, 1918, 30897, 13334, 30512, 30901, 1935, 30905, 1943, 30913, 1951, 13346, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 971, 974, {30919, 30927, 30935, 30943, 30950, 30958, 30966}, {30974, 30978, 30982, 30986, 7719, 30990, 30994}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {30998, 31006, 31018, 31030, 31035, 31042, 31053, 31064, 31072, 31081, 31094, 31102, 0}, {30998, 31006, 31018, 31030, 31035, 31042, 31053, 31064, 31072, 31081, 31094, 31102, 0}, {31109, 31113, 31117, 31121, 31125, 31129, 31133, 31137, 31141, 31145, 25077, 12918, 0}, {31109, 31113, 31117, 31121, 31125, 31129, 31133, 31137, 31141, 31145, 25077, 12918, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{978,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 977, 997, {31149, 31162, 31172, 28077, 31182, 31192, 31202}, {31212, 31219, 31226, 31233, 31240, 31247, 31254}, {28131, 28131, 31261, 28139, 31265, 28147, 31269}, {31273, 31280, 31293, 31306, 31319, 31332, 31339, 31349, 31359, 31375, 31388, 31398, 0}, {31273, 31280, 31293, 31306, 31319, 31332, 31339, 31349, 31359, 31375, 31388, 31398, 0}, {31273, 31411, 31418, 31425, 31432, 31332, 31439, 31446, 31453, 31460, 31467, 31474, 0}, {31273, 31411, 31418, 31425, 31432, 31332, 31439, 31446, 31453, 31460, 31467, 31474, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{4538,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {31481, 31489, 31499, 31508, 31518, 31527, 31537}, {31546, 31549, 31552, 31555, 31558, 31561, 31564}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {31567, 31575, 31585, 31592, 7756, 31602, 31607, 31613, 31622, 31633, 31643, 31652, 0}, {31567, 31575, 31585, 31592, 7756, 31602, 31607, 31613, 31622, 31633, 31643, 31652, 0}, {31661, 31666, 31671, 31676, 7756, 31682, 31687, 31692, 31698, 31703, 31709, 31714, 0}, {31661, 31666, 31671, 31676, 7756, 31682, 31687, 31692, 31698, 31703, 31709, 31714, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 1017, 1021, {31719, 31724, 31731, 31739, 31746, 31754, 31760}, {31766, 15901, 29675, 31770, 15905, 30990, 7727}, {9428, 11804, 1610, 9428, 31774, 2892, 1285}, {31777, 31791, 31804, 31820, 31833, 31847, 31860, 31875, 31891, 31907, 31921, 31943, 0}, {31777, 31791, 31804, 31820, 31833, 31847, 31860, 31875, 31891, 31907, 31921, 31943, 0}, {31966, 31970, 25077, 31974, 31978, 31982, 31986, 31990, 31994, 31998, 32002, 32006, 0}, {31966, 31970, 25077, 31974, 31978, 31982, 31986, 31990, 31994, 31998, 32002, 32006, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{3763,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3982, 1025, 1032, {32010, 32020, 32030, 32040, 32050, 32060, 32070}, {32080, 32087, 32094, 32101, 32108, 32115, 32122}, {32129, 32133, 32137, 32141, 32145, 32149, 32153}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, {32157, 32164, 32171, 32178, 32185, 32192, 32199, 32206, 32213, 32220, 32227, 32237, 0}, 0, 0, 1, 3, {379,388,397,428,417,406,0,0,0,0,0,0,0,0},{4005,4029,4059,4089,4106,0,0,0,0,0},{583,266,71,0,0,0,0,0,0,0,0,0},{600,271,89,0,0,0,0,0,0},{4129,666,0,0,0,0,0,0}},
+       {109, 961, 1039, {25056, 29280, 32247, 32254, 32264, 32269, 32276}, {25056, 29280, 32283, 32288, 32264, 32293, 32298}, {32303, 1616, 32306, 32309, 17126, 4532, 1825}, {32312, 32319, 32247, 32330, 32336, 32340, 32349, 32356, 32361, 32370, 32375, 32378, 0}, {32312, 32319, 32247, 32330, 32336, 32340, 32349, 32356, 32361, 32370, 32375, 32378, 0}, {32384, 32389, 32397, 32403, 32336, 32408, 32414, 32356, 32420, 32370, 32375, 32426, 0}, {32384, 32389, 32397, 32403, 32336, 32408, 32414, 32356, 32420, 32370, 32375, 32426, 0}, 2, 1, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3125, 1044, 1050, {32431, 32448, 32463, 32480, 32497, 32514, 32523}, {32534, 32539, 32544, 32549, 32554, 32559, 32564}, {32569, 10152, 10155, 10158, 10161, 10164, 10167}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, {32572, 32585, 32598, 32607, 32620, 32627, 32638, 32649, 32664, 32681, 32698, 32713, 0}, 0, 0, 55, 3, {388,397,417,428,0,0,0,0,0,0,0,0,0,0},{4146,4167,4193,4234,4280,0,0,0,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{4294,2717,666,0,0,0,0,0}},
+       {673, 1056, 1061, {32728, 32736, 32746, 32756, 32765, 32775, 32783}, {32793, 32797, 32802, 32806, 32810, 32814, 13568}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 32818, 32827, 32838, 32847, 32857, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 32818, 32827, 32838, 32847, 32857, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 1, 3, {18,9,775,755,417,0,0,0,0,0,0,0,0,0},{1217,1234,894,0,0,0,0,0,0,0},{71,266,1151,1243,1253,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {4315, 1066, 1071, {32867, 32892, 32917, 32942, 32955, 32970, 32987}, {33002, 33007, 33012, 33017, 33022, 33027, 310}, {16083, 16083, 33032, 6081, 6084, 16083, 6081}, {33035, 33054, 33069, 33091, 33111, 33125, 33139, 33151, 33175, 33197, 33214, 33231, 0}, {33248, 33267, 33282, 33304, 33324, 33340, 33356, 33370, 33396, 33420, 33437, 33231, 0}, {33454, 33463, 33472, 33479, 33486, 33493, 33500, 33507, 33514, 33521, 33528, 33535, 0}, {33454, 33463, 33472, 33479, 33486, 33493, 33500, 33507, 33514, 33521, 33528, 33535, 0}, 0, 1, 11, 3, {681,1208,417,4331,4341,0,0,0,0,0,0,0,0,0},{4354,4389,4418,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{4453,0,0,0,0,0,0,0}},
+       {925, 49, 52, {33542, 33554, 33565, 33577, 33589, 33599, 33611}, {33626, 33631, 33636, 33641, 33646, 33651, 33656}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {33661, 33670, 33682, 33690, 33695, 33705, 33712, 33721, 33728, 33734, 33743, 33754, 0}, {33661, 33670, 33682, 33690, 33695, 33705, 33712, 33721, 33728, 33734, 33743, 33754, 0}, {33762, 33767, 33772, 33777, 33782, 33787, 33792, 33646, 33797, 33802, 33807, 33812, 0}, {33762, 33767, 33772, 33777, 33782, 33787, 33792, 33646, 33797, 33802, 33807, 33812, 0}, 0, 0, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {4469, 1076, 1078, {33817, 33830, 33838, 33847, 33857, 33867, 33876}, {33888, 33892, 33896, 33900, 33904, 33908, 33912}, {1828, 1616, 1608, 5210, 9428, 4089, 1285}, {33916, 33930, 33941, 33950, 33961, 33973, 33987, 33999, 34012, 34025, 34037, 34050, 0}, {34064, 34081, 34095, 34107, 34121, 34136, 34150, 34162, 34177, 34192, 34206, 34221, 0}, {34237, 34242, 34248, 34254, 34259, 34265, 34271, 34276, 34282, 34287, 15862, 34293, 0}, {34237, 34242, 34248, 34254, 34259, 34265, 34271, 34276, 34282, 34287, 15862, 34293, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{4480,4502,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 13, 19, {538, 547, 555, 563, 572, 579, 589}, {598, 602, 606, 610, 614, 618, 622}, {626, 629, 632, 635, 638, 641, 644}, {647, 653, 660, 666, 672, 677, 682, 689, 695, 704, 712, 721, 0}, {730, 739, 749, 758, 768, 776, 784, 794, 804, 816, 828, 840, 0}, {852, 857, 660, 863, 672, 677, 868, 873, 877, 882, 887, 892, 0}, {852, 857, 660, 863, 672, 677, 868, 873, 877, 882, 887, 892, 0}, 2, 1, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{315,338,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {967, 974, 981, 988, 995, 1002, 1009}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {379,388,397,406,417,428,439,446,453,460,0,0,0,0},{469,491,519,547,562,0,0,0,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {4575, 57, 63, {1747, 1755, 1762, 1771, 1780, 1791, 1799}, {1807, 1810, 1813, 1816, 1819, 1822, 1825}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {681,0,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 5, 8, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 2, 1, 1, 3, {18,9,857,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,876,2462,0,0,0,0,0,0},{71,266,62,906,0,0,0,0,0,0,0,0},{89,271,77,914,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1042, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {34628, 4610, 4512, 5613, 11628, 5093, 5097, 4630, 5105, 34632, 4642, 4646, 0}, {34628, 4610, 4512, 5613, 11628, 5093, 5097, 4630, 5105, 34632, 4642, 4646, 0}, 0, 0, 1, 3, {18,864,9,1054,857,755,417,0,0,0,0,0,0,0},{1069,1124,0,0,0,0,0,0,0,0},{62,906,266,71,0,0,0,0,0,0,0,0},{77,914,271,89,0,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 2, 1, 55, 3, {755,18,9,744,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,266,1151,1243,1253,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {4584, 49, 52, {4442, 4451, 4459, 4468, 4479, 4488, 4497}, {4504, 4508, 4512, 4516, 4520, 4524, 4528}, {1828, 1616, 1608, 1608, 4532, 2894, 1285}, {4534, 4542, 2910, 4551, 4558, 4565, 4572, 2933, 4579, 4589, 712, 4597, 0}, {4534, 4542, 2910, 4551, 4558, 4565, 4572, 2933, 4579, 4589, 712, 4597, 0}, {4606, 4610, 4512, 4614, 4618, 4622, 4626, 4630, 4634, 4638, 4642, 4646, 0}, {4606, 4610, 4512, 4614, 4618, 4622, 4626, 4630, 4634, 4638, 4642, 4646, 0}, 2, 1, 11, 3, {681,2785,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{4592,0,0,0,0,0,0,0}},
+       {109, 151, 156, {4932, 4939, 4947, 4955, 4964, 4974, 4982}, {4991, 3081, 4994, 4997, 5000, 5003, 5006}, {5009, 1608, 1828, 2735, 1828, 2894, 5009}, {5011, 5019, 5028, 1639, 5034, 1649, 1654, 5038, 1666, 1676, 1684, 1693, 0}, {5011, 5019, 5028, 1639, 5034, 1649, 1654, 5038, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 5047, 1717, 5034, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 5047, 1717, 5034, 1722, 868, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 1, 3, {2764,1054,755,775,2024,417,0,0,0,0,0,0,0,0},{1217,968,894,1304,0,0,0,0,0,0},{266,71,4602,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1086, 1091, {1525, 7197, 34636, 1548, 1555, 1563, 34643}, {1578, 7225, 34651, 1591, 1595, 1599, 34655}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 2, 1, 11, 3, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1042, 151, 156, {2803, 5440, 5454, 5467, 5480, 5493, 2850}, {2803, 34659, 34667, 34674, 34681, 34688, 2850}, {1828, 1285, 1610, 5530, 5530, 1285, 1285}, {5532, 5540, 5550, 666, 5557, 5562, 5568, 2933, 5574, 5583, 5591, 5600, 0}, {5532, 5540, 5550, 666, 5557, 5562, 5568, 2933, 5574, 5583, 5591, 5600, 0}, {5089, 5609, 4512, 5613, 3515, 5093, 5097, 4630, 4634, 5617, 4642, 5621, 0}, {5089, 5609, 4512, 5613, 3515, 5093, 5097, 4630, 4634, 5617, 4642, 5621, 0}, 2, 1, 1, 3, {18,681,744,9,775,755,406,428,417,460,4612,1690,0,0},{1124,1069,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {109, 151, 156, {5792, 5802, 5807, 5814, 5823, 5827, 5834}, {34694, 29280, 2791, 34698, 34702, 34706, 34710}, {1828, 1616, 34715, 1816, 2892, 2894, 1285}, {5866, 5875, 5885, 5892, 3515, 5900, 5906, 1659, 5912, 5923, 5933, 5943, 0}, {5866, 5875, 5885, 5892, 3515, 5900, 5906, 1659, 5912, 5923, 5933, 5943, 0}, {5953, 1707, 1712, 1717, 3515, 5958, 5963, 1727, 2986, 882, 887, 1742, 0}, {5953, 1707, 1712, 1717, 3515, 5958, 5963, 1727, 2986, 882, 887, 1742, 0}, 0, 1, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {4584, 161, 166, {5968, 5991, 211, 6014, 6025, 6040, 6055}, {6070, 285, 290, 295, 300, 305, 310}, {6075, 6078, 6075, 6081, 6084, 6078, 6081}, {6087, 6100, 360, 6115, 380, 6128, 6137, 401, 6146, 6163, 6178, 6191, 0}, {6206, 6219, 6234, 6245, 6258, 6265, 6274, 6283, 6298, 6315, 6330, 6343, 0}, {6358, 6366, 360, 6376, 380, 6128, 6137, 6384, 6392, 6402, 6410, 6420, 0}, {6358, 6366, 360, 6376, 380, 6128, 6137, 6384, 6392, 6402, 6410, 6420, 0}, 0, 1, 11, 3, {681,4621,0,0,0,0,0,0,0,0,0,0,0,0},{4638,4662,0,0,0,0,0,0,0,0},{266,0,0,0,0,0,0,0,0,0,0,0},{271,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 194, 197, {7189, 7197, 7205, 1548, 1555, 1563, 7212}, {7220, 7225, 7230, 1591, 7234, 1599, 7239}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {5011, 5019, 3504, 1639, 1645, 1649, 1654, 7244, 1666, 1676, 1684, 1693, 0}, {5011, 5019, 3504, 1639, 1645, 1649, 1654, 7244, 1666, 1676, 1684, 1693, 0}, {1702, 1707, 3504, 1717, 1645, 1649, 1654, 1727, 1732, 1737, 887, 1742, 0}, {1702, 1707, 3504, 1717, 1645, 1649, 1654, 1727, 1732, 1737, 887, 1742, 0}, 2, 1, 55, 3, {744,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {7465, 34718, 7489, 7498, 7505, 7518, 7527}, {7465, 34718, 7489, 7498, 7505, 7518, 7527}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 7578, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, 0, 0, 1, 3, {857,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1010,1029,0,0,0,0,0,0,0,0},{906,266,0,0,0,0,0,0,0,0,0,0},{914,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 1096, 1101, {34725, 34736, 34760, 34790, 34807, 34829, 34838}, {34849, 34853, 34860, 34867, 34871, 34878, 34882}, {4756, 4744, 4746, 4748, 4750, 4752, 4754}, {34886, 9875, 9888, 9897, 9908, 34899, 34908, 9929, 34917, 34934, 34949, 9981, 0}, {34962, 34975, 360, 34988, 380, 34999, 35008, 401, 35017, 35034, 35049, 35062, 0}, {35075, 489, 35082, 496, 380, 35089, 35096, 503, 35103, 517, 35110, 531, 0}, {35075, 489, 35082, 496, 380, 35089, 35096, 503, 35103, 517, 35110, 531, 0}, 0, 1, 11, 3, {681,775,2098,9,417,0,0,0,0,0,0,0,0,0},{894,1261,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 313, 1106, {35117, 35126, 35138, 35147, 35154, 35163, 1247}, {12088, 12092, 35169, 12101, 35174, 35178, 12114}, {6516, 6518, 12118, 6522, 6522, 6518, 6522}, {1618, 1625, 12120, 12126, 1645, 8902, 8908, 12137, 1666, 1676, 12144, 1693, 0}, {12153, 12161, 12170, 12177, 5333, 12189, 12196, 12203, 6874, 12211, 12219, 6902, 0}, {5089, 4610, 12228, 4614, 1645, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, {5089, 4610, 12228, 4614, 1645, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, 2, 1, 124, 3, {692,4680,681,775,417,0,0,0,0,0,0,0,0,0},{798,721,692,0,0,0,0,0,0,0},{71,266,4689,4703,0,0,0,0,0,0,0,0},{89,4716,4733,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 0, 0, {12950, 12957, 12472, 12968, 12490, 12977, 12988}, {12688, 12998, 12524, 12528, 12532, 13002, 13006}, {0, 0, 0, 0, 0, 0, 0}, {13010, 13020, 13029, 13037, 13046, 13059, 13071, 13078, 13085, 13092, 13102, 13114, 0}, {13010, 13020, 13029, 13037, 13046, 13059, 13071, 13078, 13085, 13092, 13102, 13114, 0}, {13127, 12776, 13131, 13135, 12664, 13139, 13143, 12672, 13147, 13151, 13155, 13159, 0}, {13127, 12776, 13131, 13135, 12664, 13139, 13143, 12672, 13147, 13151, 13155, 13159, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {4749, 417, 422, {15236, 15248, 15259, 15273, 15285, 15295, 15305}, {15316, 15321, 15326, 15331, 15336, 15341, 15346}, {1285, 2894, 1608, 4532, 1828, 13432, 1616}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, 2, 1, 55, 3, {417,1690,0,0,0,0,0,0,0,0,0,0,0,0},{4762,4786,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 151, 156, {15579, 15593, 15603, 15614, 15628, 15639, 15650}, {15663, 15668, 15673, 15680, 15686, 15692, 15698}, {1828, 1616, 1608, 5210, 1828, 9428, 1285}, {15703, 15711, 15719, 15726, 15735, 15745, 15755, 15761, 15769, 15784, 15802, 15810, 0}, {15703, 15711, 15719, 15726, 15735, 15745, 15755, 15761, 15769, 15784, 15802, 15810, 0}, {15818, 15822, 15719, 15828, 15832, 15837, 15755, 15843, 15848, 15855, 15862, 15867, 0}, {15818, 15822, 15719, 15828, 15832, 15837, 15755, 15843, 15848, 15855, 15862, 15867, 0}, 2, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 427, 430, {15872, 15877, 7673, 7680, 15883, 15890, 7697}, {15897, 15901, 7711, 7715, 15905, 7723, 7727}, {9428, 11804, 1285, 7731, 3099, 2892, 1285}, {7733, 7741, 15909, 1851, 7756, 1931, 15913, 15919, 1878, 1888, 1896, 15924, 0}, {7733, 7741, 15909, 1851, 7756, 1931, 15913, 15919, 1878, 1888, 1896, 15924, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 15933, 1943, 1947, 1951, 13346, 0}, {1914, 1918, 15909, 1927, 7756, 1931, 1935, 15933, 1943, 1947, 1951, 13346, 0}, 0, 1, 1, 3, {2764,304,0,0,0,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 1119, 1124, {35183, 35198, 35213, 35228, 35245, 16575, 35262}, {35273, 35280, 35287, 35294, 35301, 35308, 35315}, {35322, 16080, 6081, 6084, 6078, 16077, 16651}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {35325, 34975, 360, 34988, 380, 35336, 35343, 401, 35350, 35365, 35378, 35062, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 1, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 49, 52, {17199, 17218, 17237, 17262, 17281, 17315, 17340}, {17359, 17369, 17379, 17395, 17405, 17430, 17446}, {17456, 17460, 17467, 17471, 17478, 17485, 17492}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, {17496, 17524, 17558, 17574, 17593, 17600, 17610, 17626, 17642, 17673, 17695, 17717, 0}, 0, 5, 55, 11, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{1151,1146,3258,3267,0,0,0,0,0,0,0,0},{1173,1165,3275,3287,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 450, 465, {7465, 34718, 7489, 35389, 7505, 7518, 7527}, {17899, 17906, 17916, 17929, 17942, 17952, 17971}, {17993, 17997, 18004, 18011, 18021, 18028, 18041}, {7536, 7547, 7558, 7567, 35398, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 35398, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {18228, 18235, 18083, 18245, 18115, 18122, 18261, 18274, 18281, 18291, 18304, 18314, 0}, {18228, 18235, 18083, 18245, 18115, 18122, 18261, 18274, 18281, 18291, 18304, 18314, 0}, 0, 0, 55, 11, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{3298,894,0,0,0,0,0,0,0,0},{4804,62,266,71,0,0,0,0,0,0,0,0},{4812,77,271,89,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 480, 505, {19431, 19450, 19472, 19497, 19513, 19535, 19554}, {19564, 19578, 19592, 19606, 19617, 19631, 19554}, {19645, 19652, 19659, 19666, 19673, 19680, 19687}, {19691, 19707, 19732, 19751, 19770, 19777, 19790, 19803, 19822, 19853, 19878, 19900, 0}, {19691, 19707, 19732, 19751, 19770, 19777, 19790, 19803, 19822, 19853, 19878, 19900, 0}, {19925, 19933, 19947, 19961, 19770, 19777, 19790, 19972, 19980, 19994, 20005, 20013, 0}, {19925, 19933, 19947, 19961, 19770, 19777, 19790, 19972, 19980, 19994, 20005, 20013, 0}, 0, 1, 55, 3, {2015,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1010,1029,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 367, 395, {28601, 28620, 28639, 28664, 28683, 28705, 28730}, {28749, 14586, 28759, 14609, 28775, 14632, 14648}, {28788, 14662, 28792, 14676, 28796, 14690, 14697}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 14771, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, {14701, 28803, 14736, 28831, 22641, 28850, 14788, 28860, 28876, 28907, 28929, 28954, 0}, 0, 0, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{2979,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 977, 997, {31149, 31162, 31172, 28077, 31182, 31192, 31202}, {31212, 31219, 31226, 31233, 31240, 31247, 31254}, {28131, 28131, 28131, 28139, 31265, 28147, 31269}, {31273, 31280, 31293, 31306, 31319, 31332, 31339, 31349, 31359, 31375, 31388, 31398, 0}, {31273, 31280, 31293, 31306, 31319, 31332, 31339, 31349, 31359, 31375, 31388, 31398, 0}, {31273, 31411, 31418, 31425, 31432, 31332, 31439, 31446, 31453, 31460, 31467, 31474, 0}, {31273, 31411, 31418, 31425, 31432, 31332, 31439, 31446, 31453, 31460, 31467, 31474, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{3945,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {34299, 34306, 34313, 34320, 34327, 34334, 34341}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {295,857,9,439,460,379,406,417,0,0,0,0,0,0},{469,1484,547,562,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {4575, 57, 63, {1747, 1755, 1762, 1771, 1780, 1791, 1799}, {1807, 1810, 1813, 1816, 1819, 1822, 1825}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {35532, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {35532, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {35540, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {35540, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {681,0,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {35545, 35550, 35555, 35560, 35565, 35570, 35575}, {32793, 35580, 35583, 35587, 35590, 35594, 13568}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {13618, 13623, 26658, 13633, 2760, 13638, 13643, 13648, 13653, 35597, 13663, 26841, 0}, {13618, 13623, 26658, 13633, 2760, 13638, 13643, 13648, 13653, 35597, 13663, 26841, 0}, 0, 0, 1, 3, {2764,1054,857,295,9,18,968,1274,417,460,406,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,266,71,0,0,0,0,0,0,0,0,0},{914,271,89,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1042, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 2890, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, 2, 1, 1, 3, {18,9,1054,857,1062,755,775,417,0,0,0,0,0,0},{1069,1097,1124,0,0,0,0,0,0,0},{266,71,1146,1151,1157,0,0,0,0,0,0,0},{271,89,1165,1173,1182,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {109, 151, 156, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 35602, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 35602, 3532, 2986, 882, 887, 3590, 0}, 0, 0, 55, 3, {417,1690,755,4823,9,864,0,0,0,0,0,0,0,0},{894,304,0,0,0,0,0,0,0,0},{71,266,1151,1243,1253,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {4749, 417, 422, {15236, 35609, 35621, 35636, 35647, 35658, 35669}, {15316, 15321, 15326, 15331, 15336, 15341, 15346}, {1285, 1608, 1828, 4532, 1828, 13432, 1616}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15351, 15368, 15381, 15395, 15408, 15421, 15434, 15448, 15460, 15474, 15488, 15502, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, {15515, 15522, 15527, 15532, 15536, 15541, 15546, 15551, 15556, 15563, 15568, 15574, 0}, 2, 1, 11, 3, {1208,681,2098,417,0,0,0,0,0,0,0,0,0,0},{4832,4786,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,0,0,0,0,0,0,0,0,0,0},{77,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {967, 974, 981, 988, 995, 1002, 1009}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {295,857,9,439,460,379,406,417,0,0,0,0,0,0},{469,1484,547,4518,0,0,0,0,0,0},{583,591,266,71,0,0,0,0,0,0,0,0},{600,611,271,89,0,0,0,0,0},{623,639,652,0,0,0,0,0}},
+       {4575, 57, 63, {1747, 1755, 1762, 1771, 1780, 1791, 1799}, {1807, 1810, 1813, 1816, 1819, 1822, 1825}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {681,0,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 55, 3, {417,18,9,857,1690,4858,968,2796,417,0,0,0,0,0},{997,3763,4866,1475,0,0,0,0,0,0},{906,62,71,266,0,0,0,0,0,0,0,0},{914,77,89,271,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {2764,0,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {4584, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 2, 1, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{4592,0,0,0,0,0,0,0}},
+       {673, 49, 52, {6428, 6437, 6449, 6456, 6464, 6474, 6480}, {6487, 6491, 6495, 6499, 6503, 6508, 6512}, {1278, 1280, 35681, 1285, 1287, 1280, 1285}, {6527, 6537, 6546, 6554, 6562, 6570, 6577, 6584, 6592, 1364, 6598, 6606, 0}, {6615, 6625, 6634, 6642, 6650, 6658, 6665, 6672, 6681, 5385, 6687, 6697, 0}, {6706, 6710, 6715, 6720, 6724, 5419, 1501, 6728, 6732, 1517, 6736, 1521, 0}, {6706, 6710, 6715, 6720, 6724, 5419, 1501, 6728, 6732, 1517, 6736, 1521, 0}, 0, 1, 11, 3, {2181,4935,0,0,0,0,0,0,0,0,0,0,0,0},{2254,2225,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, 0, 6, 55, 3, {744,755,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{266,71,62,0,0,0,0,0,0,0,0,0},{271,89,77,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {34299, 34306, 34313, 34320, 34327, 34334, 34341}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {295,857,9,439,460,379,406,417,0,0,0,0,0,0},{469,4959,4986,764,547,4518,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {4575, 57, 63, {1747, 1755, 1762, 1771, 1780, 1791, 1799}, {1807, 1810, 1813, 1816, 1819, 1822, 1825}, {1285, 1608, 1828, 1608, 1828, 1614, 1285}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1830, 1837, 1845, 1851, 1857, 1861, 1866, 1871, 1878, 1888, 1896, 1905, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, {1914, 1918, 1922, 1927, 1857, 1931, 1935, 1939, 1943, 1947, 1951, 1955, 0}, 2, 1, 11, 3, {681,0,0,0,0,0,0,0,0,0,0,0,0,0},{798,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {5002, 151, 156, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {2764,0,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 1, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1129, 1140, {6428, 6437, 6449, 6456, 6464, 6474, 6480}, {6487, 6491, 6495, 6499, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 1649, 1654, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 1649, 1654, 8914, 35745, 35755, 35763, 35772, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, 0, 1, 11, 3, {2181,5019,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 32620, 35447, 35785, 35798, 35805, 35493, 35816, 35827, 0}, {35403, 35414, 10194, 35427, 32620, 35447, 35785, 35798, 35805, 35493, 35816, 35827, 0}, {35403, 35414, 10194, 35427, 32620, 35447, 35785, 35798, 35805, 35493, 35816, 35827, 0}, {35403, 35414, 10194, 35427, 32620, 35447, 35785, 35798, 35805, 35493, 35816, 35827, 0}, 0, 6, 55, 3, {744,755,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{266,71,62,0,0,0,0,0,0,0,0,0},{271,89,77,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {5002, 151, 156, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 2, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,906,0,0,0,0,0,0,0,0,0,0},{89,914,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {5055, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {957,0,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1148, 1160, {6428, 35838, 6449, 6456, 6464, 6474, 6480}, {8879, 5179, 35849, 35853, 8889, 8895, 35857}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {1702, 1707, 11617, 1717, 1645, 5093, 5097, 8921, 2986, 1737, 887, 1742, 0}, {1702, 1707, 11617, 1717, 1645, 5093, 5097, 8921, 2986, 1737, 887, 1742, 0}, 0, 1, 11, 3, {2151,2181,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{71,1151,0,0,0,0,0,0,0,0,0,0},{89,1173,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, {35683, 35694, 10194, 35705, 32620, 35716, 35725, 35738, 35480, 35493, 35506, 35519, 0}, 0, 0, 55, 3, {744,755,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{266,71,62,0,0,0,0,0,0,0,0,0},{271,89,77,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {406,2351,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {673, 1169, 1191, {35862, 35877, 35896, 35909, 35924, 35941, 7877}, {12299, 12307, 35952, 35958, 12331, 12339, 35964}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {12395, 36085, 360, 6376, 12370, 36003, 36010, 6384, 12435, 6402, 36093, 36101, 0}, {12395, 36085, 360, 6376, 12370, 36003, 36010, 6384, 12435, 6402, 36093, 36101, 0}, 0, 1, 11, 3, {2151,2181,0,0,0,0,0,0,0,0,0,0,0,0},{721,2561,798,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {5002, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 2, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {3316, 1207, 1225, {36109, 35877, 35896, 35909, 35924, 35941, 7877}, {36122, 36129, 36136, 36143, 36150, 36157, 36164}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 12377, 12386, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 12377, 12386, 401, 36017, 36036, 36051, 36068, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, 0, 1, 11, 3, {1208,2098,692,681,4680,775,5063,417,0,0,0,0,0,0},{721,2561,798,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 0, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {29480, 36192, 29484, 29484, 36194, 36196, 6522}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, 0, 0, 1, 3, {2764,0,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1240, 1160, {8833, 35838, 6449, 8858, 6464, 6474, 6480}, {6487, 6491, 6495, 36198, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, 0, 1, 11, 11, {2151,2181,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {5074, 88, 1250, {36202, 36213, 36225, 36237, 36245, 36256, 36270}, {36280, 36284, 1645, 36288, 36292, 36296, 15346}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {36301, 36319, 36333, 36349, 36365, 36378, 36390, 36404, 36417, 36433, 36449, 36464, 0}, {36301, 36319, 36333, 36349, 36365, 36378, 36390, 36404, 36417, 36433, 36449, 36464, 0}, {36479, 36485, 36492, 36501, 36510, 36516, 36521, 36528, 36534, 36543, 36552, 36560, 0}, {36479, 36485, 36492, 36501, 36510, 36516, 36521, 36528, 36534, 36543, 36552, 36560, 0}, 2, 1, 11, 3, {1208,681,2098,417,0,0,0,0,0,0,0,0,0,0},{5088,0,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {18,2796,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {29296, 36568, 26702, 26708, 29316, 36576, 36582, 26731, 36588, 36598, 36606, 36616, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 36626, 704, 2951, 2961, 0}, {36636, 13623, 26658, 26816, 36641, 13638, 13643, 26826, 26831, 35597, 13663, 36646, 0}, {36636, 13623, 26658, 26816, 36641, 13638, 13643, 26826, 26831, 35597, 13663, 36646, 0}, 0, 0, 1, 3, {2764,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1207, 1191, {36109, 35877, 35896, 6014, 35924, 35941, 7877}, {36122, 36129, 36136, 36651, 36150, 36157, 36164}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, 0, 1, 11, 3, {2181,0,0,0,0,0,0,0,0,0,0,0,0,0},{2225,2239,2254,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5106,0,0,0,0,0,0,0}},
+       {109, 1254, 1259, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 1, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1148, 1160, {6428, 35838, 6449, 6456, 6464, 6474, 6480}, {8879, 5179, 35849, 35853, 8889, 8895, 35857}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {1702, 1707, 11617, 1717, 1645, 5093, 5097, 8921, 2986, 1737, 887, 1742, 0}, {1702, 1707, 11617, 1717, 1645, 5093, 5097, 8921, 2986, 1737, 887, 1742, 0}, 0, 1, 11, 11, {2151,2181,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, {34460, 34484, 34493, 34502, 34513, 34522, 34535, 34544, 34549, 34560, 34582, 34606, 0}, 0, 1, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {1, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {295,5116,0,0,0,0,0,0,0,0,0,0,0,0},{2462,1261,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 1, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1169, 1191, {35862, 35877, 35896, 35909, 35924, 35941, 7877}, {12299, 12307, 35952, 35958, 12331, 12339, 35964}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {12395, 36085, 360, 6376, 12370, 36003, 36010, 6384, 12435, 6402, 36093, 36101, 0}, {12395, 36085, 360, 6376, 12370, 36003, 36010, 6384, 12435, 6402, 36093, 36101, 0}, 0, 1, 11, 3, {2151,2161,2169,2181,2193,2203,2213,5128,0,0,0,0,0,0},{2225,2239,2254,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, 0, 1, 55, 3, {744,0,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{5106,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {29296, 36568, 26702, 26708, 29316, 36576, 36582, 26731, 36588, 36598, 36606, 36616, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 36626, 704, 2951, 2961, 0}, {36636, 13623, 26658, 26816, 36641, 13638, 13643, 26826, 26831, 35597, 13663, 36646, 0}, {36636, 13623, 26658, 26816, 36641, 13638, 13643, 26826, 26831, 35597, 13663, 36646, 0}, 0, 1, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{266,71,62,906,0,0,0,0,0,0,0,0},{271,89,77,914,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 151, 156, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {1702, 36658, 1712, 3579, 3515, 36664, 3584, 3532, 2986, 882, 887, 3590, 0}, {1702, 36658, 1712, 3579, 3515, 36664, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 6, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {5002, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 2986, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {3410, 3419, 3425, 3431, 3440, 3446, 3455}, {3462, 2863, 1712, 3467, 3472, 3477, 3482}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3487, 3495, 3504, 3509, 3515, 3519, 3524, 3532, 3538, 3548, 712, 3556, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, {3566, 3572, 3504, 3579, 3515, 3519, 3584, 3532, 2986, 882, 887, 3590, 0}, 0, 0, 1, 3, {18,304,0,0,0,0,0,0,0,0,0,0,0,0},{1217,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {1, 1080, 1083, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34348, 34359, 34374, 34391, 34408, 34421, 34434}, {34445, 34448, 34451, 34454, 34457, 10164, 10155}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, {35403, 35414, 10194, 35427, 35438, 35447, 35458, 35469, 35480, 35493, 35506, 35519, 0}, 0, 6, 1, 3, {18,9,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{62,71,266,0,0,0,0,0,0,0,0,0},{77,89,271,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 55, 3, {744,755,1062,2098,417,0,0,0,0,0,0,0,0,0},{1261,894,0,0,0,0,0,0,0,0},{71,266,62,0,0,0,0,0,0,0,0,0},{89,271,4812,77,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 1, 1, 3, {295,857,18,9,417,0,0,0,0,0,0,0,0,0},{1010,1029,0,0,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{98,734,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {109, 49, 52, {2650, 2657, 2664, 2672, 2682, 2691, 2698}, {2707, 2711, 2715, 2719, 2723, 2727, 2731}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {2737, 2745, 2754, 1851, 2760, 2764, 2769, 1871, 1878, 2774, 1896, 2782, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, {1914, 1918, 2791, 1927, 2760, 1931, 1935, 1939, 1943, 2795, 1951, 2799, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{876,894,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{5140,5168,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {4877, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {5055, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {957,0,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{5009,0,0,0,0,0,0,0}},
+       {925, 13, 19, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {932,941,948,957,460,417,968,0,0,0,0,0,0,0},{3763,3783,42,2448,0,0,0,0,0,0},{906,62,266,71,0,0,0,0,0,0,0,0},{914,77,271,89,0,0,0,0,0},{1193,0,0,0,0,0,0,0}},
+       {4877, 151, 156, {2803, 2811, 2817, 2824, 2835, 2842, 2850}, {2858, 2863, 1712, 2868, 2874, 2879, 2884}, {1828, 1616, 1608, 1608, 2892, 2894, 1285}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2896, 2902, 2910, 666, 2916, 2921, 2927, 2933, 2940, 704, 2951, 2961, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, {2971, 1707, 1712, 863, 2976, 1722, 868, 2981, 1732, 882, 887, 2992, 0}, 0, 0, 1, 3, {295,304,0,0,0,0,0,0,0,0,0,0,0,0},{4885,4913,0,0,0,0,0,0,0,0},{906,71,0,0,0,0,0,0,0,0,0,0},{914,89,0,0,0,0,0,0,0},{355,0,0,0,0,0,0,0}},
+       {3316, 1207, 1225, {36109, 35877, 35896, 35909, 35924, 35941, 7877}, {36122, 36129, 36136, 36143, 36150, 36157, 36164}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 12377, 12386, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 12377, 12386, 401, 36017, 36036, 36051, 36068, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, 0, 1, 11, 3, {1208,2098,692,681,4680,775,5063,417,0,0,0,0,0,0},{721,2561,798,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {673, 1129, 1140, {6428, 6437, 6449, 6456, 6464, 6474, 6480}, {6487, 6491, 6495, 6499, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 1649, 1654, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 1649, 1654, 8914, 35745, 35755, 35763, 35772, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, 0, 1, 11, 3, {2181,5019,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {673, 1207, 1191, {36109, 35877, 35896, 6014, 35924, 35941, 7877}, {36122, 36129, 36136, 36651, 36150, 36157, 36164}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, 0, 1, 11, 3, {2181,0,0,0,0,0,0,0,0,0,0,0,0,0},{2225,2239,2254,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {673, 1240, 1160, {8833, 35838, 6449, 8858, 6464, 6474, 6480}, {6487, 6491, 6495, 36198, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 5093, 5097, 8914, 35745, 35755, 35763, 35772, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, 0, 1, 11, 11, {2151,2181,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {5074, 88, 1250, {36202, 36213, 36225, 36237, 36245, 36256, 36270}, {36280, 36284, 1645, 36288, 36292, 36296, 15346}, {1285, 1608, 1610, 2735, 1610, 1614, 1285}, {36301, 36319, 36333, 36349, 36365, 36378, 36390, 36404, 36417, 36433, 36449, 36464, 0}, {36301, 36319, 36333, 36349, 36365, 36378, 36390, 36404, 36417, 36433, 36449, 36464, 0}, {36479, 36485, 36492, 36501, 36510, 36516, 36521, 36528, 36534, 36543, 36552, 36560, 0}, {36479, 36485, 36492, 36501, 36510, 36516, 36521, 36528, 36534, 36543, 36552, 36560, 0}, 2, 1, 11, 3, {1208,681,2098,417,0,0,0,0,0,0,0,0,0,0},{5088,0,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {109, 1096, 1101, {34725, 34736, 34760, 34790, 34807, 34829, 34838}, {34849, 34853, 34860, 34867, 34871, 34878, 34882}, {4756, 4744, 4746, 4748, 4750, 4752, 4754}, {34886, 9875, 9888, 9897, 9908, 34899, 34908, 9929, 34917, 34934, 34949, 9981, 0}, {34962, 34975, 360, 34988, 380, 34999, 35008, 401, 35017, 35034, 35049, 35062, 0}, {35075, 489, 35082, 496, 380, 35089, 35096, 503, 35103, 517, 35110, 531, 0}, {35075, 489, 35082, 496, 380, 35089, 35096, 503, 35103, 517, 35110, 531, 0}, 0, 1, 11, 3, {681,775,2098,9,417,0,0,0,0,0,0,0,0,0},{894,1261,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {967, 974, 981, 988, 995, 1002, 1009}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1044, 1051, 1058, 1065, 1072, 1079, 1086, 1093, 1100, 1107, 1114, 1124, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {379,388,397,406,417,428,439,446,453,460,0,0,0,0},{469,491,519,547,562,0,0,0,0,0},{266,71,583,591,0,0,0,0,0,0,0,0},{271,89,600,611,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {673, 1086, 1091, {1525, 7197, 34636, 1548, 1555, 1563, 34643}, {1578, 7225, 34651, 1591, 1595, 1599, 34655}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 2, 1, 11, 3, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1129, 1140, {6428, 6437, 6449, 6456, 6464, 6474, 6480}, {6487, 6491, 6495, 6499, 6503, 6508, 6512}, {6516, 6518, 6520, 6522, 6524, 6518, 6522}, {1618, 1625, 11617, 1639, 1645, 1649, 1654, 8914, 35745, 35755, 35763, 35772, 0}, {1618, 1625, 11617, 1639, 1645, 1649, 1654, 8914, 35745, 35755, 35763, 35772, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, {5089, 4610, 4512, 4614, 1645, 5093, 5097, 35781, 5105, 5109, 4642, 6911, 0}, 0, 1, 11, 3, {2181,5019,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {109, 49, 52, {11414, 11420, 11434, 11457, 11471, 11487, 11494}, {11503, 11506, 11511, 11517, 11521, 11526, 11529}, {4756, 4744, 4746, 4748, 4750, 4752, 4754}, {11533, 11540, 7354, 11547, 2760, 11553, 11559, 11565, 11572, 11581, 11589, 11596, 0}, {11603, 11610, 11617, 11622, 11628, 11632, 11637, 11642, 11649, 11658, 11666, 11673, 0}, {11680, 5609, 4512, 4614, 11628, 11684, 11688, 11692, 11696, 5109, 11700, 11704, 0}, {11680, 5609, 4512, 4614, 11628, 11684, 11688, 11692, 11696, 5109, 11700, 11704, 0}, 0, 1, 11, 3, {681,304,0,0,0,0,0,0,0,0,0,0,0,0},{2843,894,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 1119, 1124, {35183, 35198, 35213, 35228, 35245, 16575, 35262}, {35273, 35280, 35287, 35294, 35301, 35308, 35315}, {35322, 16080, 6081, 6084, 6078, 16077, 16651}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {35325, 34975, 360, 34988, 380, 35336, 35343, 401, 35350, 35365, 35378, 35062, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 1, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {925, 651, 656, {22902, 22909, 22920, 22933, 22946, 22957, 22970}, {22981, 22986, 22991, 22996, 23001, 23006, 23011}, {22981, 22986, 22991, 22996, 23001, 23006, 23011}, {23016, 23042, 23070, 23100, 23130, 23156, 23186, 23212, 23240, 23264, 23292, 23329, 0}, {23016, 23042, 23070, 23100, 23130, 23156, 23186, 23212, 23240, 23264, 23292, 23329, 0}, {23368, 23380, 23392, 23404, 23416, 23428, 23440, 23452, 23464, 23476, 23489, 23502, 0}, {23368, 23380, 23392, 23404, 23416, 23428, 23440, 23452, 23464, 23476, 23489, 23502, 0}, 0, 1, 55, 3, {417,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3361,3399,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {34299, 34306, 34313, 34320, 34327, 34334, 34341}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {295,857,9,439,460,379,406,417,0,0,0,0,0,0},{469,1484,547,562,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {370, 25, 32, {897, 907, 917, 927, 937, 947, 957}, {34299, 34306, 34313, 34320, 34327, 34334, 34341}, {1016, 1020, 1024, 1028, 1032, 1036, 1040}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, {1134, 1139, 1144, 1149, 1154, 1159, 1164, 1169, 1174, 1179, 1185, 1191, 0}, 0, 0, 1, 3, {295,857,9,439,460,379,406,417,0,0,0,0,0,0},{469,1484,547,562,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{623,639,652,666,0,0,0,0}},
+       {2090, 151, 156, {1525, 1533, 1540, 1548, 1555, 1563, 1570}, {5052, 5058, 5063, 5068, 5073, 5078, 5083}, {1285, 1608, 1610, 1612, 1610, 1614, 1616}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {1618, 1625, 3504, 1639, 3515, 1649, 1654, 1659, 1666, 1676, 1684, 4420, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, {5089, 4610, 4512, 4614, 3515, 5093, 5097, 5101, 5105, 5109, 4642, 5113, 0}, 2, 1, 11, 11, {681,1455,0,0,0,0,0,0,0,0,0,0,0,0},{703,721,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 1207, 1191, {36109, 35877, 35896, 6014, 35924, 35941, 7877}, {36122, 36129, 36136, 36651, 36150, 36157, 36164}, {315, 318, 35972, 324, 327, 318, 324}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35975, 35988, 360, 369, 12370, 36003, 36010, 401, 36017, 36036, 36051, 36068, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, {35075, 36171, 35082, 496, 12370, 36003, 36010, 503, 510, 517, 36178, 36185, 0}, 0, 1, 11, 11, {2151,2181,0,0,0,0,0,0,0,0,0,0,0,0},{5034,2239,0,0,0,0,0,0,0,0},{1151,0,0,0,0,0,0,0,0,0,0,0},{1173,0,0,0,0,0,0,0,0},{4948,0,0,0,0,0,0,0}},
+       {1, 259, 271, {9712, 9727, 9742, 9757, 9774, 9793, 9804}, {9815, 9822, 9829, 9836, 9843, 9850, 9857}, {0, 0, 0, 0, 0, 0, 0}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {9864, 9875, 9888, 9897, 9908, 9915, 9922, 9929, 9942, 9957, 9970, 9981, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, {9994, 10001, 10008, 10015, 9908, 9915, 9922, 10022, 10029, 10036, 10043, 10050, 0}, 0, 1, 11, 3, {681,775,2098,744,9,0,0,0,0,0,0,0,0,0},{2727,2745,0,0,0,0,0,0,0,0},{71,266,0,0,0,0,0,0,0,0,0,0},{89,271,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {673, 313, 1106, {35117, 35126, 35138, 35147, 35154, 35163, 1247}, {12088, 12092, 35169, 12101, 35174, 35178, 12114}, {6516, 6518, 12118, 6522, 6522, 6518, 6522}, {1618, 1625, 12120, 12126, 1645, 8902, 8908, 12137, 1666, 1676, 12144, 1693, 0}, {12153, 12161, 12170, 12177, 5333, 12189, 12196, 12203, 6874, 12211, 12219, 6902, 0}, {5089, 4610, 12228, 4614, 1645, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, {5089, 4610, 12228, 4614, 1645, 5093, 5097, 12237, 5105, 5109, 12241, 6911, 0}, 2, 1, 124, 3, {692,4680,681,775,417,0,0,0,0,0,0,0,0,0},{798,721,692,0,0,0,0,0,0,0},{71,266,4689,4703,0,0,0,0,0,0,0,0},{89,4716,4733,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}},
+       {925, 444, 447, {17037, 17047, 17056, 17065, 17076, 17086, 17091}, {17098, 17102, 17107, 17112, 17117, 7723, 17121}, {17126, 1828, 1285, 5210, 1280, 2892, 1285}, {11533, 11540, 7354, 11547, 2760, 17128, 17133, 17138, 17145, 17153, 11589, 11596, 0}, {11603, 11610, 11617, 11622, 11628, 11632, 11637, 8914, 17160, 17168, 11666, 11673, 0}, {12906, 17175, 2791, 1927, 2760, 17179, 17183, 17187, 7707, 1947, 17191, 17195, 0}, {12906, 17175, 2791, 1927, 2760, 17179, 17183, 17187, 7707, 1947, 17191, 17195, 0}, 0, 1, 1, 3, {406,2861,0,0,0,0,0,0,0,0,0,0,0,0},{3239,2997,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{2717,0,0,0,0,0,0,0}},
+       {1, 450, 465, {7465, 34718, 7489, 35389, 7505, 7518, 7527}, {17899, 17906, 17916, 17929, 17942, 17952, 17971}, {17993, 17997, 18004, 18011, 18021, 18028, 18041}, {7536, 7547, 7558, 7567, 35398, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {7536, 7547, 7558, 7567, 35398, 7585, 7592, 7605, 7614, 7625, 7638, 7649, 0}, {18228, 18235, 18083, 18245, 18115, 18122, 18261, 18274, 18281, 18291, 18304, 18314, 0}, {18228, 18235, 18083, 18245, 18115, 18122, 18261, 18274, 18281, 18291, 18304, 18314, 0}, 0, 0, 55, 11, {755,1062,2098,744,417,0,0,0,0,0,0,0,0,0},{3298,894,0,0,0,0,0,0,0,0},{4804,62,266,71,0,0,0,0,0,0,0,0},{4812,77,271,89,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {109, 875, 885, {28394, 28401, 28407, 28414, 28420, 28426, 28434}, {28444, 28448, 28452, 28456, 28460, 28464, 28468}, {9428, 9428, 9428, 9428, 9428, 9428, 9428}, {28474, 28483, 7020, 28492, 28498, 28504, 28510, 28517, 28523, 28532, 28541, 28549, 0}, {28474, 28483, 7020, 28492, 28498, 28504, 28510, 28517, 28523, 28532, 28541, 28549, 0}, {28558, 28562, 2791, 28566, 2760, 28570, 28574, 28578, 28583, 28587, 28593, 28597, 0}, {28558, 28562, 2791, 28566, 2760, 28570, 28574, 28578, 28583, 28587, 28593, 28597, 0}, 0, 0, 55, 3, {744,755,417,0,0,0,0,0,0,0,0,0,0,0},{2448,42,0,0,0,0,0,0,0,0},{266,71,0,0,0,0,0,0,0,0,0,0},{271,89,0,0,0,0,0,0,0},{98,0,0,0,0,0,0,0}},
+       {925, 49, 52, {29614, 29621, 29629, 29636, 29643, 29651, 29660}, {29667, 29671, 29675, 29679, 29683, 7723, 28444}, {1616, 1616, 1610, 1616, 9428, 2892, 9428}, {29687, 29695, 29705, 29711, 29719, 29724, 29729, 29734, 29741, 16856, 29749, 29757, 0}, {29687, 29695, 29705, 29711, 29719, 29724, 29729, 29734, 29741, 16856, 29749, 29757, 0}, {1914, 29765, 2791, 29769, 2760, 28570, 28574, 29773, 2731, 1947, 29777, 13346, 0}, {1914, 29765, 2791, 29769, 2760, 28570, 28574, 29773, 2731, 1947, 29777, 13346, 0}, 0, 0, 1, 3, {295,3021,0,0,0,0,0,0,0,0,0,0,0,0},{1010,1029,0,0,0,0,0,0,0,0},{71,0,0,0,0,0,0,0,0,0,0,0},{89,0,0,0,0,0,0,0,0},{734,0,0,0,0,0,0,0}}
 };
 
 
 static const NumberFormatEntry number_format_entries [] = {
-       {691, 36891, 691, 36891, 36893, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36951, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 36973, 36982, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36990, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36990, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36993, 36957, 36959, 36963, 36997, 37009, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37024, 37035, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37046, 37060, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 0, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37094, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37119, 36957, 36959, 36963, 36924, 36934, 2438, 37123, 2, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37128, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37075, 37131, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37141, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37145, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37149, 37159, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37168, 36957, 36959, 36963, 37172, 37191, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37210, 36957, 36959, 36963, 37075, 37131, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 37213, 691, 37213, 37217, 36957, 36959, 36963, 37221, 37230, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37239, 36957, 37247, 36963, 37264, 37292, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37319, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 2, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 36997, 37009, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37322, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 36948, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37335, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37339, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 2, 2, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37343, 36957, 37346, 36963, 37369, 36934, 37385, 37393, 3, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37401, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37404, 36957, 37408, 36963, 36924, 36934, 2438, 36967, 5, 1, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37425, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37429, 37443, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37456, 36963, 37470, 37482, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37493, 36957, 36959, 36963, 37496, 37507, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
-       {185, 36891, 185, 36891, 37517, 36903, 37526, 36921, 37537, 36934, 37552, 37393, 3, 0, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37559, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37563, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37569, 37579, 2438, 36967, 8, 3, 7, 3, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37588, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36948, 691, 36948, 10586, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 10586, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 10586, 36957, 37595, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 10586, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 37601, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 36969, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36969, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37646, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 37649, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37666, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36903, 36959, 36921, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37670, 36957, 37677, 36963, 36924, 36934, 2438, 36967, 12, 2, 1, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 0, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 2, 2, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 0, 36963, 36924, 36934, 2438, 36967, 12, 2, 1, 1, 1, 2, 2, {3, 2}, {3, 2}},
-       {37704, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36990, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
-       {691, 36891, 691, 36891, 37706, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37709, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 5, 1, 1, 1, 2, 2, 2, {3, -1}, {3, 0}},
-       {36891, 691, 36891, 691, 37713, 36957, 37717, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 0, 2, {3, 0}, {3, 0}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37642, 36957, 0, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37754, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
-       {691, 36891, 691, 36891, 37762, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 1, {3, 0}, {3, 0}},
-       {36891, 36948, 36891, 36948, 0, 36957, 0, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37769, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
-       {36891, 691, 36891, 691, 37782, 36903, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37785, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 0, 36957, 0, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37789, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36948, 691, 36948, 10586, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 0}, {3, 0}},
-       {691, 36891, 691, 36891, 37789, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36990, 36957, 0, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 0}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37239, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37793, 36957, 0, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37706, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36893, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36951, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 36973, 36982, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37796, 36957, 37800, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36993, 36957, 36959, 36963, 36997, 37009, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37024, 37035, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37046, 37060, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 0, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37094, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37119, 36957, 36959, 36963, 36924, 36934, 2438, 37123, 2, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37128, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37075, 37131, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37141, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37145, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37149, 37159, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37168, 36957, 36959, 36963, 37172, 37191, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37210, 36957, 36959, 36963, 37075, 37131, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 37213, 691, 37213, 37217, 36957, 36959, 36963, 37221, 37230, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37239, 36957, 37247, 36963, 37264, 37292, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37319, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 2, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 36997, 37009, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37322, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 36948, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37335, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37339, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 2, 2, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37343, 36957, 37346, 36963, 37369, 36934, 37385, 37393, 3, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37401, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37404, 36957, 37408, 36963, 36924, 36934, 2438, 36967, 5, 1, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37425, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37429, 37443, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37456, 36963, 37470, 37482, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37493, 36957, 36959, 36963, 37496, 37507, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37810, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
-       {185, 36891, 185, 36891, 37517, 36903, 37526, 36921, 37537, 36934, 37552, 37393, 3, 0, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37559, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37563, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37817, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37569, 37579, 2438, 36967, 8, 3, 7, 3, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37588, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36948, 691, 36948, 10586, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 10586, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 10586, 36957, 37595, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 10586, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 37601, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 36969, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37666, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37822, 36903, 36959, 36921, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37642, 36957, 37677, 36963, 36924, 36934, 2438, 36967, 12, 2, 1, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 0, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 2, 2, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37642, 36957, 0, 36963, 36924, 36934, 2438, 36967, 12, 2, 1, 1, 1, 2, 2, {3, 2}, {3, 2}},
-       {37704, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 36990, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
-       {691, 36891, 691, 36891, 37706, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37709, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 5, 1, 1, 1, 2, 2, 2, {3, -1}, {3, 0}},
-       {36891, 691, 36891, 691, 37713, 36957, 37717, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 0, 2, {3, 0}, {3, 0}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37642, 36957, 0, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37754, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
-       {691, 36891, 691, 36891, 37762, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 1, {3, 0}, {3, 0}},
-       {691, 36891, 691, 36891, 37769, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
-       {36891, 691, 36891, 691, 37782, 36903, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37785, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37789, 36957, 0, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37789, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36948, 691, 36948, 10586, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37021, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 12, 2, 0, 0, 1, 2, 2, {3, 0}, {3, 0}},
-       {691, 36891, 691, 36891, 37789, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36990, 36957, 0, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 0}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37239, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37793, 36957, 0, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37706, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37828, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37141, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 37838, 691, 37838, 37217, 36957, 36959, 36963, 37024, 37035, 2438, 36967, 2, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37706, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 37838, 691, 37838, 37217, 36957, 36959, 36963, 37075, 37131, 2438, 36967, 2, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 36948, 36969, 36957, 36959, 36963, 37149, 37159, 2438, 36967, 12, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 37075, 37131, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37840, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36969, 36957, 0, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37848, 36903, 36959, 36921, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37855, 36957, 37677, 36963, 36924, 36934, 2438, 36967, 12, 2, 1, 0, 1, 2, 2, {3, 2}, {3, 2}},
-       {691, 36891, 691, 36891, 37859, 36903, 36959, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 37800, 36963, 36924, 36934, 2438, 36967, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37024, 37035, 2438, 36967, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37073, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 15, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 37328, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37869, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 0, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37024, 37035, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 7920, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36948, 691, 36948, 37217, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 2, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37879, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37882, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37892, 36957, 37800, 36963, 36924, 36934, 2438, 36967, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 37838, 691, 37838, 0, 36957, 36959, 36963, 37024, 37035, 2438, 36967, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37897, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37879, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37901, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36969, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37911, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 36969, 36957, 36959, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37879, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37915, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 10586, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37925, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37930, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37940, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37925, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37944, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37954, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37959, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37969, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37973, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37981, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37991, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 36969, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38001, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37785, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 2, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38011, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38021, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 38031, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 12, 2, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38035, 36903, 36906, 36921, 36924, 36934, 2438, 36943, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37642, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 12, 2, 1, 1, 1, 2, 2, {3, 2}, {3, 2}},
-       {36891, 691, 36891, 691, 38045, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 2308, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38048, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37073, 36957, 36959, 36963, 37075, 37085, 2438, 36967, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 0}},
-       {36891, 691, 36891, 691, 37925, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37879, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 38051, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 38059, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37840, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 36990, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37879, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 37817, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37848, 36903, 36959, 36921, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 0, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38064, 36957, 37800, 36963, 36924, 36934, 2438, 36967, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 38064, 36957, 37800, 36963, 36924, 36934, 2438, 36967, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37021, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {36891, 691, 36891, 691, 38059, 36957, 36959, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 37810, 36957, 0, 36963, 36924, 36934, 2438, 36967, 8, 3, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
-       {36891, 36948, 36891, 36948, 37822, 36903, 36959, 36921, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
-       {36891, 36948, 36891, 36948, 0, 36957, 0, 36963, 37103, 37111, 2438, 36967, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
-       {691, 36891, 691, 36891, 37789, 36957, 0, 36963, 36924, 36934, 2438, 36967, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}}
+       {11, 1264, 11, 1264, 1266, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1331, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1363, 1372, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 1339, 1296, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 1339, 1296, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1383, 1337, 0, 1343, 1387, 1399, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1411, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1415, 1426, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1437, 1451, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 0, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1466, 1476, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1485, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1525, 1337, 1339, 1343, 1347, 1311, 55, 1529, 2, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1534, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1537, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1466, 1541, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1551, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1555, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1296, 1559, 1569, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 0, 1276, 1339, 1296, 1578, 1311, 1592, 1324, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1598, 1337, 1339, 1343, 1602, 1621, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1640, 1337, 1339, 1343, 1466, 1541, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1643, 11, 1643, 1647, 1337, 1339, 1343, 1651, 1660, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1669, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1673, 1337, 1677, 1343, 1694, 1722, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1749, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 2, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1387, 1399, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1752, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 1328, 1758, 1337, 1761, 1768, 1578, 1311, 1592, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1774, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1778, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 2, 2, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1782, 1337, 1339, 1343, 1785, 1311, 1801, 1809, 3, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1817, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1820, 1337, 1339, 1343, 1347, 1311, 55, 1357, 5, 1, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1824, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1827, 1843, 1856, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1860, 1343, 1863, 1875, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1886, 1897, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 0, 1337, 0, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
+       {1, 1264, 1, 1264, 1907, 1494, 0, 1296, 1347, 1311, 55, 1357, 3, 0, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1916, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1920, 1337, 1923, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 0, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1930, 1940, 55, 1357, 8, 3, 7, 3, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1949, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1328, 11, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1956, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1958, 1337, 1962, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1758, 1337, 1339, 1343, 1347, 1311, 55, 1357, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1761, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2007, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2010, 1337, 2014, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2031, 1337, 2038, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2055, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2059, 1337, 2063, 1343, 1347, 1311, 55, 1357, 5, 1, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 0, 1494, 2073, 1296, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2092, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 1, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 0, 1494, 1339, 1296, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 2, 2, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 1, 1, 1, 2, 2, {3, 2}, {3, 2}},
+       {2099, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 0, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 1339, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2101, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2104, 1337, 1339, 1343, 1347, 1311, 55, 1357, 5, 1, 1, 1, 2, 2, 2, {3, -1}, {3, 0}},
+       {1264, 11, 1264, 11, 2108, 1337, 2112, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 0, 2, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2158, 1337, 2160, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2200, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
+       {11, 1264, 11, 1264, 0, 1337, 1339, 1343, 1347, 1311, 55, 1357, 0, 0, 1, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2208, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 1, {3, 0}, {3, 0}},
+       {1264, 1328, 1264, 1328, 0, 1337, 0, 1343, 2215, 1510, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2223, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 11, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2230, 1494, 1339, 1296, 1785, 1311, 1801, 1809, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2233, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 0, 1337, 0, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 0, 1337, 0, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2237, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1328, 11, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1411, 1337, 1761, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2237, 1337, 1339, 1296, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1824, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2241, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2245, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 0, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 0}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 0, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1551, 1337, 1339, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1673, 1337, 2247, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2276, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2101, 1494, 1339, 1296, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1266, 1494, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1331, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1363, 1372, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 2279, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1383, 1337, 0, 1343, 1387, 1399, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1411, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1415, 1426, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1437, 1451, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 0, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1485, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1525, 1337, 1339, 1343, 1347, 1311, 55, 1529, 2, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1534, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1537, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1466, 1541, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1551, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1555, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1296, 1559, 1569, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1758, 1276, 1339, 1296, 1578, 1311, 1592, 1324, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1598, 1337, 1339, 1343, 1602, 1621, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1640, 1337, 1339, 1343, 1466, 1541, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1643, 11, 1643, 1647, 1337, 1339, 1343, 1651, 1660, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1669, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1673, 1337, 1677, 1343, 1694, 1722, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2289, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 2, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1387, 1399, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1752, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 1328, 1758, 1337, 1761, 1768, 1578, 1311, 1592, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1774, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1778, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 2, 2, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1782, 1337, 1339, 1343, 1785, 1311, 1801, 1809, 3, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1817, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1820, 1337, 1339, 1343, 1347, 1311, 55, 1357, 5, 1, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1824, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1827, 1843, 1856, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1860, 1343, 1863, 1875, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1886, 1897, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2031, 1337, 0, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
+       {1, 1264, 1, 1264, 1907, 1494, 0, 1296, 1347, 1311, 55, 1357, 3, 0, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1916, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1920, 1337, 1923, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2293, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1930, 1940, 55, 1357, 8, 3, 7, 3, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1949, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1328, 11, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1956, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1958, 1337, 1962, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1758, 1337, 1339, 1343, 1347, 1311, 55, 1357, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1758, 1337, 1761, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2007, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2010, 1337, 2014, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2031, 1337, 2038, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2055, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2059, 1337, 2063, 1343, 1347, 1311, 55, 1357, 5, 1, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2297, 1494, 2073, 1296, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 1, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 2, 2, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 1, 1, 1, 2, 2, {3, 2}, {3, 2}},
+       {2099, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2303, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 1339, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2101, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2104, 1337, 1339, 1343, 1347, 1311, 55, 1357, 5, 1, 1, 1, 2, 2, 2, {3, -1}, {3, 0}},
+       {1264, 11, 1264, 11, 2108, 1337, 2112, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 0, 2, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2158, 1337, 2160, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 0, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2200, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
+       {11, 1264, 11, 1264, 2208, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 1, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2307, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 2}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 11, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2230, 1494, 1339, 1296, 1785, 1311, 1801, 1809, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2233, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2237, 1337, 0, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2237, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1328, 11, 1328, 1956, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1411, 1337, 1761, 1343, 1347, 1311, 55, 1357, 12, 2, 0, 0, 1, 2, 2, {3, 0}, {3, 0}},
+       {11, 1264, 11, 1264, 2237, 1337, 1339, 1296, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1824, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1824, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2245, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 0, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 0}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 0, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1551, 1337, 1339, 1343, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1673, 1337, 2247, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2276, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2101, 1494, 1339, 1296, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2320, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1363, 1372, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1551, 1337, 1339, 1296, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 2330, 11, 2330, 1647, 1337, 1339, 1343, 1415, 1426, 55, 1357, 2, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2101, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 2330, 11, 2330, 1647, 1337, 1339, 1343, 1466, 1541, 55, 1357, 2, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 1328, 1359, 1337, 1339, 1296, 1559, 1569, 55, 1357, 12, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1758, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1339, 1343, 1466, 1541, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2332, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2332, 1337, 1677, 1343, 1694, 1722, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1761, 1768, 1578, 1311, 1592, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1785, 1311, 1801, 1809, 1, 0, 1, 2, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2293, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1328, 11, 1328, 2334, 1337, 0, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 1328, 1758, 1337, 1761, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2336, 1494, 2343, 1296, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2376, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 1, 0, 1, 2, 2, {3, 2}, {3, 2}},
+       {11, 1264, 11, 1264, 2380, 1494, 1339, 1296, 1347, 1311, 55, 1529, 9, 2, 9, 3, 2, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2383, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2241, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2387, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2397, 1337, 2279, 1343, 1347, 1311, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1415, 1426, 55, 1357, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1466, 1476, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1464, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 15, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 1761, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2401, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 0, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1296, 1347, 1311, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1415, 1426, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2411, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1328, 11, 1328, 1647, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 2, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2413, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2416, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2426, 1337, 2279, 1343, 1347, 1311, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 2330, 11, 2330, 1647, 1337, 1339, 1343, 1415, 1426, 55, 1357, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2431, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2413, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2435, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2445, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2413, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2449, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1956, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2459, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2463, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2468, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2478, 1337, 1339, 1343, 1466, 1476, 55, 1357, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2463, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2482, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2492, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2495, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 2499, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2507, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2517, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2520, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2495, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2524, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2534, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2539, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 2, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2520, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2549, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2233, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 2, 0, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2520, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2559, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2569, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2573, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 3, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2397, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2583, 1337, 1339, 1343, 1466, 1476, 55, 1357, 12, 2, 0, 0, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2587, 1494, 1339, 1296, 1497, 1510, 1518, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2589, 1276, 1281, 1296, 1299, 1311, 1320, 1324, 3, 2, 0, 0, 3, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2003, 1337, 1339, 1343, 1347, 1311, 55, 1357, 12, 2, 1, 1, 1, 2, 2, {3, 2}, {3, 2}},
+       {1264, 11, 1264, 11, 2599, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2007, 1337, 1339, 1343, 1347, 1311, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1347, 1311, 55, 1357, 1, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2332, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2602, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, 0}},
+       {11, 1264, 11, 1264, 1464, 1337, 1339, 1343, 1466, 1476, 55, 1357, 1, 0, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2463, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2413, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2605, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2613, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1359, 1337, 2499, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2293, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 1380, 1337, 1339, 1296, 1347, 1311, 55, 1357, 2, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1758, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2413, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2293, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2336, 1494, 2343, 1296, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2303, 1337, 1339, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2397, 1337, 2279, 1343, 1347, 1311, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2397, 1337, 2279, 1343, 1347, 1311, 55, 1357, 0, 0, 1, 1, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 1758, 1276, 1339, 1296, 1578, 1311, 1592, 1324, 9, 2, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 11, 1264, 11, 2613, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2031, 1337, 0, 1343, 1347, 1311, 55, 1357, 8, 3, 1, 1, 1, 2, 2, {3, 0}, {3, 0}},
+       {1264, 11, 1264, 11, 1359, 1337, 1339, 1343, 1347, 1311, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 2297, 1494, 2073, 1296, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 0, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2380, 1494, 1339, 1296, 1347, 1311, 55, 1529, 9, 2, 9, 3, 2, 2, 2, {3, -1}, {3, -1}},
+       {1264, 1328, 1264, 1328, 0, 1337, 0, 1343, 2215, 1510, 55, 1357, 8, 3, 0, 0, 1, 2, 2, {3, -1}, {3, -1}},
+       {11, 1264, 11, 1264, 2237, 1337, 0, 1343, 1347, 1311, 55, 1357, 9, 2, 1, 1, 1, 2, 2, {3, -1}, {3, -1}}
 };
 
 
 static const CultureInfoEntry culture_entries [] = {
-       {0x0001, 0x007F, 768, -1, 38068, 38071, 38078, 38093, 38097, 38068, 0, {0, 0, 38101, 0}, 0, 0, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x0002, 0x007F, 257, -1, 38129, 38132, 38142, 38161, 38165, 38129, 0, {38169, 0, 0, 0}, 1, 1, { 1251, 21025, 10007, 866, 0, ';' }},
-       {0x0003, 0x007F, 257, -1, 38211, 38214, 38222, 38230, 38234, 38211, 0, {38238, 0, 0, 0}, 2, 2, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0004, 0x0004, 257, -1, 38258, 38265, 38293, 38300, 38304, 38308, 0, {38311, 0, 0, 0}, 3, 3, { 936, 500, 10008, 936, 0, ',' }},
-       {0x0004, 0x7804, 257, -1, 38318, 38326, 38293, 38300, 38304, 38308, 0, {38311, 0, 0, 0}, 4, 4, { 936, 500, 10008, 936, 0, ',' }},
-       {0x0005, 0x007F, 257, -1, 38347, 38350, 38356, 38366, 38370, 38347, 0, {38374, 0, 0, 0}, 5, 5, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x0006, 0x007F, 257, -1, 38400, 38403, 38410, 38416, 38420, 38400, 0, {38424, 0, 0, 0}, 6, 6, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0007, 0x007F, 257, -1, 38445, 38448, 38455, 38463, 38467, 38445, 0, {38471, 0, 0, 0}, 7, 7, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x0008, 0x007F, 257, -1, 38496, 38499, 38505, 38522, 38526, 38496, 0, {38530, 0, 0, 0}, 8, 8, { 1253, 20273, 10006, 737, 0, ';' }},
-       {0x0009, 0x007F, 257, -1, 38572, 38575, 38575, 38583, 38587, 38572, 0, {38591, 0, 0, 0}, 9, 9, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x000A, 0x007F, 257, -1, 38610, 38613, 38621, 38630, 38634, 38610, 0, {38638, 0, 0, 0}, 10, 10, { 1252, 20284, 10000, 850, 0, ';' }},
-       {0x000B, 0x007F, 257, -1, 38660, 38663, 38671, 38677, 38681, 38660, 0, {38685, 0, 0, 0}, 11, 11, { 1252, 20278, 10000, 850, 0, ';' }},
-       {0x000C, 0x007F, 257, -1, 38710, 38713, 38720, 38730, 38734, 38710, 0, {38738, 0, 0, 0}, 12, 12, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x000D, 0x007F, 257, -1, 38760, 38763, 38770, 38781, 38785, 38760, 0, {38789, 0, 0, 0}, 13, 13, { 1255, 500, 10005, 862, 1, ',' }},
-       {0x000E, 0x007F, 257, -1, 38822, 38825, 38835, 38842, 38846, 38822, 0, {38850, 0, 0, 0}, 14, 14, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x000F, 0x007F, 257, -1, 38866, 38869, 38879, 38889, 38893, 38866, 0, {38897, 0, 0, 0}, 15, 15, { 1252, 20871, 10079, 850, 0, ';' }},
-       {0x0010, 0x007F, 257, -1, 38917, 38920, 38928, 38937, 38941, 38917, 0, {38945, 0, 0, 0}, 16, 16, { 1252, 20280, 10000, 850, 0, ';' }},
-       {0x0011, 0x007F, 257, -1, 38967, 38970, 38979, 38989, 38993, 38967, 0, {38997, 0, 0, 0}, 17, 17, { 932, 20290, 10001, 932, 0, ',' }},
-       {0x0012, 0x007F, 257, -1, 39024, 39027, 39034, 39044, 39048, 39024, 0, {39052, 0, 0, 0}, 18, 18, { 949, 20833, 10003, 949, 0, ',' }},
-       {0x0013, 0x007F, 257, -1, 39062, 39065, 39071, 39082, 39086, 39062, 0, {39090, 0, 0, 0}, 19, 19, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0014, 0x007F, 257, -1, 39112, 39115, 39125, 39131, 39135, 39139, 0, {38424, 0, 0, 0}, 20, 20, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0015, 0x007F, 257, -1, 39142, 39145, 39152, 39159, 39163, 39142, 0, {39167, 0, 0, 0}, 21, 21, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x0016, 0x007F, 257, -1, 39191, 39194, 39205, 39216, 39220, 39191, 0, {39224, 0, 0, 0}, 22, 22, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0017, 0x007F, 257, -1, 39247, 39250, 39258, 39268, 39272, 39247, 0, {39276, 0, 0, 0}, 23, 23, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x0018, 0x007F, 257, -1, 39296, 39299, 39308, 39317, 39321, 39296, 0, {39325, 0, 0, 0}, 24, 24, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x0019, 0x007F, 257, -1, 39344, 39347, 39355, 39370, 39374, 39344, 0, {39378, 0, 0, 0}, 25, 25, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x001A, 0x007F, 257, -1, 39424, 39427, 39436, 39445, 39449, 39424, 0, {39453, 0, 0, 0}, 26, 26, { 1250, 500, 10082, 852, 0, ';' }},
-       {0x001B, 0x007F, 257, -1, 12674, 39476, 39483, 39495, 39499, 12674, 0, {39503, 0, 0, 0}, 27, 27, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x001C, 0x007F, 257, -1, 39527, 39530, 39539, 39545, 39549, 39527, 0, {39553, 0, 0, 0}, 28, 28, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x001D, 0x007F, 257, -1, 39573, 39576, 39584, 39592, 39596, 39573, 0, {38424, 0, 0, 0}, 29, 29, { 1252, 20278, 10000, 850, 0, ';' }},
-       {0x001E, 0x007F, 512, -1, 39600, 39603, 39608, 39618, 39622, 39600, 0, {0, 39626, 0, 0}, 30, 30, { 874, 20838, 10021, 874, 0, ',' }},
-       {0x001F, 0x007F, 257, -1, 12683, 39657, 39665, 39674, 39678, 12683, 0, {39682, 0, 0, 0}, 31, 31, { 1254, 20905, 10081, 857, 0, ';' }},
-       {0x0020, 0x007F, 257, -1, 39696, 39699, 39704, 39713, 39717, 39696, 0, {39721, 0, 0, 0}, 32, 32, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x0021, 0x007F, 257, -1, 39751, 39754, 39765, 39782, 39786, 39751, 0, {39790, 0, 0, 0}, 33, 33, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0022, 0x007F, 257, -1, 39809, 39812, 39822, 39843, 39847, 39809, 0, {39851, 0, 0, 0}, 34, 34, { 1251, 500, 10017, 866, 0, ';' }},
-       {0x0023, 0x007F, 257, -1, 39897, 39900, 39911, 39932, 39936, 39897, 0, {39940, 0, 0, 0}, 35, 35, { 1251, 500, 10007, 866, 0, ';' }},
-       {0x0024, 0x007F, 257, -1, 39982, 39985, 39995, 40009, 40013, 39982, 0, {40017, 0, 0, 0}, 36, 36, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x0025, 0x007F, 257, -1, 40039, 40042, 40051, 40057, 40061, 40039, 0, {40065, 0, 0, 0}, 37, 37, { 1257, 500, 10029, 775, 0, ';' }},
-       {0x0026, 0x007F, 257, -1, 40085, 40088, 40096, 40106, 40110, 40085, 0, {40114, 0, 0, 0}, 38, 38, { 1257, 500, 10029, 775, 0, ';' }},
-       {0x0027, 0x007F, 257, -1, 40133, 40136, 40147, 40157, 40161, 40133, 0, {40165, 0, 0, 0}, 39, 39, { 1257, 500, 10029, 775, 0, ';' }},
-       {0x0028, 0x007F, 257, -1, 40188, 40191, 40197, 40210, 40214, 40188, 0, {0, 0, 0, 0}, 40, 40, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0029, 0x007F, 257, -1, 40218, 40221, 40229, 40240, 40244, 40218, 0, {40248, 0, 0, 0}, 41, 41, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x002A, 0x007F, 257, -1, 40272, 40275, 40286, 40301, 35137, 40272, 0, {40305, 0, 0, 0}, 42, 42, { 1258, 500, 10000, 1258, 0, ',' }},
-       {0x002B, 0x007F, 257, -1, 40320, 40323, 40332, 40347, 40351, 40320, 0, {40355, 0, 0, 0}, 43, 43, { 0, 500, 2, 1, 0, ',' }},
-       {0x002C, 0x007F, 257, -1, 40385, 40388, 40400, 40412, 40416, 40385, 0, {40420, 0, 0, 0}, 44, 44, { 1254, 20905, 10081, 857, 0, ';' }},
-       {0x002D, 0x007F, 257, -1, 40439, 40442, 40449, 40457, 40461, 40439, 0, {40465, 0, 0, 0}, 45, 45, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x002F, 0x007F, 257, -1, 40485, 40488, 40499, 40520, 40524, 40485, 0, {40528, 0, 0, 0}, 46, 46, { 1251, 500, 10007, 866, 0, ';' }},
-       {0x0032, 0x007F, 257, -1, 40572, 40575, 40582, 40591, 40595, 40572, 0, {0, 0, 0, 0}, 47, 47, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0034, 0x007F, 257, -1, 40599, 40602, 40608, 40617, 40621, 40599, 0, {0, 0, 0, 0}, 48, 48, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0035, 0x007F, 257, -1, 40625, 40628, 40633, 40641, 40645, 40625, 0, {40649, 0, 0, 0}, 49, 49, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0036, 0x007F, 257, -1, 40670, 40673, 40673, 40683, 40687, 40670, 0, {40691, 0, 0, 0}, 50, 50, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0037, 0x007F, 257, -1, 40711, 40714, 40723, 40745, 40749, 40711, 0, {40753, 0, 0, 0}, 51, 51, { 0, 500, 2, 1, 0, ';' }},
-       {0x0038, 0x007F, 257, -1, 40818, 40821, 40829, 40839, 40843, 40818, 0, {0, 0, 0, 0}, 52, 52, { 1252, 20277, 10079, 850, 0, ';' }},
-       {0x0039, 0x007F, 257, -1, 40847, 40850, 40856, 40872, 40876, 40847, 0, {40880, 0, 0, 0}, 53, 53, { 0, 500, 2, 1, 0, ',' }},
-       {0x003A, 0x007F, 257, -1, 40933, 40936, 40944, 40950, 40954, 40933, 0, {40958, 0, 0, 0}, 54, 54, { 0, 500, 2, 1, 0, ',' }},
-       {0x003B, 0x007F, 257, -1, 40979, 40982, 40996, 41013, 41017, 40979, 0, {41021, 0, 0, 0}, 55, 55, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x003C, 0x007F, 257, -1, 41040, 41043, 41049, 41057, 41061, 41040, 0, {41065, 0, 0, 0}, 56, 56, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x003E, 0x007F, 257, -1, 41086, 41089, 41095, 41109, 41113, 41086, 0, {41117, 0, 0, 0}, 57, 57, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x003F, 0x007F, 257, -1, 41134, 41137, 41144, 41164, 41168, 41134, 0, {41172, 0, 0, 0}, 58, 58, { 0, 500, 2, 1, 0, ';' }},
-       {0x0040, 0x007F, 257, -1, 41214, 41217, 41224, 41241, 41245, 41214, 0, {41249, 0, 0, 0}, 59, 59, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0041, 0x007F, 257, -1, 41287, 41290, 41298, 41308, 41312, 41287, 0, {41316, 0, 0, 0}, 60, 60, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x0043, 0x007F, 257, -1, 41337, 41340, 41346, 41357, 41361, 41337, 0, {41365, 0, 0, 0}, 61, 61, { 1254, 500, 10029, 857, 0, ';' }},
-       {0x0045, 0x007F, 257, -1, 41385, 41388, 41396, 41412, 41416, 41385, 0, {41420, 0, 0, 0}, 62, 62, { 0, 500, 2, 1, 0, ',' }},
-       {0x0046, 0x007F, 257, -1, 41485, 41488, 41496, 41515, 41519, 41485, 0, {41523, 0, 0, 0}, 63, 63, { 0, 500, 2, 1, 0, ',' }},
-       {0x0047, 0x007F, 257, -1, 41570, 41573, 41582, 41604, 41608, 41570, 0, {41612, 0, 0, 0}, 64, 64, { 0, 500, 2, 1, 0, ',' }},
-       {0x0048, 0x007F, 257, -1, 41668, 41671, 41677, 41693, 41697, 41668, 0, {0, 0, 0, 0}, 65, 65, { 0, 500, 2, 1, 0, ',' }},
-       {0x0049, 0x007F, 257, -1, 41701, 41704, 41710, 41726, 41730, 41701, 0, {41734, 0, 0, 0}, 66, 66, { 0, 500, 2, 1, 0, ',' }},
-       {0x004A, 0x007F, 257, -1, 41799, 41802, 41809, 41828, 41832, 41799, 0, {41836, 0, 0, 0}, 67, 67, { 0, 500, 2, 1, 0, ',' }},
-       {0x004B, 0x007F, 257, -1, 37319, 41901, 41909, 41925, 41929, 37319, 0, {41933, 0, 0, 0}, 68, 68, { 0, 500, 2, 1, 0, ',' }},
-       {0x004C, 0x007F, 257, -1, 41998, 42001, 42011, 42030, 42034, 41998, 0, {42038, 0, 0, 0}, 69, 69, { 0, 500, 2, 1, 0, ',' }},
-       {0x004D, 0x007F, 257, -1, 42082, 42085, 42094, 42116, 42120, 42082, 0, {42124, 0, 0, 0}, 70, 70, { 0, 500, 2, 1, 0, ',' }},
-       {0x004E, 0x007F, 257, -1, 42177, 42180, 42188, 42204, 2402, 42177, 0, {42208, 0, 0, 0}, 71, 71, { 0, 500, 2, 1, 0, ',' }},
-       {0x0050, 0x007F, 257, -1, 42270, 42273, 42283, 42296, 42300, 42270, 0, {42304, 0, 0, 0}, 72, 72, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0051, 0x007F, 257, -1, 42336, 42339, 42347, 42372, 42376, 42336, 0, {0, 0, 0, 0}, 73, 73, { 0, 500, 2, 1, 0, ',' }},
-       {0x0052, 0x007F, 257, -1, 42380, 42383, 42389, 42397, 42401, 42380, 0, {42405, 0, 0, 0}, 74, 74, { 1252, 20285, 10000, 850, 0, ',' }},
-       {0x0053, 0x007F, 257, -1, 42421, 42424, 42430, 42446, 42450, 42421, 0, {42454, 0, 0, 0}, 75, 75, { 0, 500, 2, 1, 0, ',' }},
-       {0x0054, 0x007F, 257, -1, 42509, 42512, 42516, 42526, 42530, 42509, 0, {42534, 0, 0, 0}, 76, 76, { 0, 500, 2, 1, 0, ',' }},
-       {0x0056, 0x007F, 257, -1, 42580, 42583, 42592, 42599, 42603, 42580, 0, {38945, 0, 0, 0}, 77, 77, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0057, 0x007F, 257, -1, 42607, 42611, 42619, 42638, 42607, 42607, 0, {0, 0, 0, 0}, 78, 78, { 0, 500, 2, 1, 0, ',' }},
-       {0x005B, 0x007F, 257, -1, 42642, 42645, 42653, 42669, 42673, 42642, 0, {42677, 0, 0, 0}, 79, 79, { 0, 500, 2, 1, 0, ',' }},
-       {0x005E, 0x007F, 257, -1, 8022, 42736, 42744, 42757, 42761, 8022, 0, {42765, 0, 0, 0}, 80, 80, { 0, 500, 2, 1, 0, ';' }},
-       {0x005F, 0x007F, 257, -1, 42810, 42814, 42838, 42848, 42810, 42810, 0, {0, 0, 0, 0}, 81, 81, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x0061, 0x007F, 257, -1, 1883, 42852, 42859, 42878, 42882, 1883, 0, {42886, 0, 0, 0}, 82, 82, { 0, 500, 2, 1, 0, ',' }},
-       {0x0063, 0x007F, 1024, -1, 42936, 42939, 42946, 42955, 42959, 42936, 0, {0, 0, 0, 0}, 83, 83, { 0, 500, 2, 1, 1, ';' }},
-       {0x0064, 0x007F, 257, -1, 42963, 42967, 42967, 42976, 42963, 42963, 0, {42980, 0, 0, 0}, 84, 84, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x0068, 0x007F, 257, -1, 43003, 43006, 43006, 43012, 43016, 43003, 0, {0, 0, 0, 0}, 85, 85, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x006A, 0x007F, 257, -1, 43020, 43023, 43030, 43045, 43049, 43020, 0, {0, 0, 0, 0}, 86, 86, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x006C, 0x007F, 257, -1, 43053, 43057, 43072, 43089, 43053, 43053, 0, {0, 0, 0, 0}, 87, 87, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x006F, 0x007F, 257, -1, 43093, 43096, 43108, 43120, 43124, 43093, 0, {43128, 0, 0, 0}, 88, 88, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0070, 0x007F, 257, -1, 43155, 43158, 43158, 43163, 43167, 43155, 0, {0, 0, 0, 0}, 89, 89, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x0078, 0x007F, 257, -1, 43171, 43174, 43185, 43195, 43199, 43171, 0, {43203, 0, 0, 0}, 90, 90, { 0, 500, 2, 1, 0, ',' }},
-       {0x007E, 0x007F, 257, -1, 43216, 43219, 43226, 43236, 43240, 43216, 0, {43244, 0, 0, 0}, 91, 91, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x0084, 0x007F, 257, -1, 43264, 43268, 43281, 43300, 43264, 43264, 0, {43304, 0, 0, 0}, 92, 92, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x0085, 0x007F, 257, -1, 43329, 43333, 43339, 43357, 43329, 43329, 0, {0, 0, 0, 0}, 93, 93, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0087, 0x007F, 257, -1, 43361, 43364, 43364, 43376, 43380, 43361, 0, {0, 0, 0, 0}, 94, 94, { 1252, 37, 10000, 437, 0, ';' }},
-       {0x0091, 0x007F, 257, -1, 43384, 43387, 43403, 43413, 43417, 43384, 0, {43421, 0, 0, 0}, 95, 95, { 1252, 20285, 10000, 850, 0, ',' }},
-       {0x0401, 0x0001, 768, 95, 43446, 43452, 43474, 38093, 38097, 38068, 13629, {0, 0, 38101, 0}, 96, 96, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x0402, 0x0002, 257, 11, 43538, 43544, 43565, 38161, 38165, 38129, 43603, {38169, 0, 0, 0}, 97, 97, { 1251, 21025, 10007, 866, 0, ';' }},
-       {0x0403, 0x0003, 257, 31, 43606, 43612, 43628, 38230, 38234, 38211, 43646, {38238, 0, 0, 0}, 98, 98, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0404, 0x7C04, 257, 107, 43649, 43655, 43677, 43693, 38304, 38308, 43697, {43700, 0, 0, 0}, 99, 99, { 950, 500, 10002, 950, 0, ',' }},
-       {0x0405, 0x0005, 257, 23, 43707, 43713, 43736, 38366, 38370, 38347, 43766, {38374, 0, 0, 0}, 100, 100, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x0406, 0x0006, 257, 25, 43769, 43775, 43792, 38416, 38420, 38400, 43808, {38424, 0, 0, 0}, 101, 101, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0407, 0x0007, 257, 24, 43811, 43817, 43834, 38463, 38467, 38445, 43856, {38471, 0, 0, 0}, 102, 102, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x0408, 0x0008, 257, 39, 43859, 43865, 43880, 38522, 38526, 38496, 43912, {38530, 0, 0, 0}, 103, 103, { 1253, 20273, 10006, 737, 0, ';' }},
-       {0x0409, 0x0009, 257, 109, 43915, 43921, 43921, 38583, 38587, 38572, 43945, {38591, 0, 0, 0}, 104, 104, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x040B, 0x000B, 257, 33, 43948, 43954, 43972, 38677, 38681, 38660, 43986, {38685, 0, 0, 0}, 105, 105, { 1252, 20278, 10000, 850, 0, ';' }},
-       {0x040C, 0x000C, 257, 35, 43989, 43995, 44011, 38730, 38734, 38710, 44030, {38738, 0, 0, 0}, 106, 106, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x040D, 0x000D, 257, 47, 44033, 44039, 44055, 38781, 38785, 38760, 44079, {38789, 0, 0, 0}, 107, 107, { 1255, 500, 10005, 862, 1, ',' }},
-       {0x040E, 0x000E, 257, 44, 44082, 44088, 44108, 38842, 38846, 38822, 44131, {38850, 0, 0, 0}, 108, 108, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x040F, 0x000F, 257, 51, 44134, 44140, 44160, 38889, 38893, 38866, 44180, {38897, 0, 0, 0}, 109, 109, { 1252, 20871, 10079, 850, 0, ';' }},
-       {0x0410, 0x0010, 257, 52, 44183, 44189, 44205, 38937, 38941, 38917, 44223, {38945, 0, 0, 0}, 110, 110, { 1252, 20280, 10000, 850, 0, ';' }},
-       {0x0411, 0x0011, 257, 55, 44226, 44232, 44249, 38989, 38993, 38967, 44268, {38997, 0, 0, 0}, 111, 111, { 932, 20290, 10001, 932, 0, ',' }},
-       {0x0412, 0x0012, 257, 58, 44271, 44277, 44298, 39044, 39048, 39024, 44323, {39052, 0, 0, 0}, 112, 112, { 949, 20833, 10003, 949, 0, ',' }},
-       {0x0413, 0x0013, 257, 77, 44326, 44332, 44352, 39082, 39086, 39062, 44375, {39090, 0, 0, 0}, 113, 113, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0414, 0x7C14, 257, 78, 44378, 44384, 44411, 39131, 39135, 39139, 44433, {38424, 0, 0, 0}, 114, 114, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0415, 0x0015, 257, 86, 44436, 44442, 44458, 39159, 39163, 39142, 44474, {39167, 0, 0, 0}, 115, 115, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x0416, 0x0016, 257, 14, 44477, 44483, 44503, 39216, 39220, 39191, 44523, {39224, 0, 0, 0}, 116, 116, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0417, 0x0017, 257, 18, 44526, 44532, 44554, 39268, 39272, 39247, 13632, {39276, 0, 0, 0}, 117, 117, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x0418, 0x0018, 257, 91, 44573, 44579, 44598, 39317, 39321, 39296, 44618, {39325, 0, 0, 0}, 118, 118, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x0419, 0x0019, 257, 93, 44621, 44627, 44644, 39370, 39374, 39344, 44674, {39378, 0, 0, 0}, 119, 119, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x041A, 0x001A, 257, 43, 44677, 44683, 44702, 39445, 39449, 39424, 44722, {39453, 0, 0, 0}, 120, 120, { 1250, 500, 10082, 852, 0, ';' }},
-       {0x041B, 0x001B, 257, 99, 44725, 44731, 44749, 39495, 39499, 12674, 44773, {39503, 0, 0, 0}, 121, 121, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x041C, 0x001C, 257, 2, 44776, 44782, 44801, 39545, 39549, 39527, 44819, {39553, 0, 0, 0}, 122, 122, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x041D, 0x001D, 257, 96, 44822, 44828, 44845, 39592, 39596, 39573, 44863, {38424, 0, 0, 0}, 123, 123, { 1252, 20278, 10000, 850, 0, ';' }},
-       {0x041E, 0x001E, 512, 102, 44866, 44872, 44888, 39618, 39622, 39600, 44910, {0, 39626, 0, 0}, 124, 124, { 874, 20838, 10021, 874, 0, ',' }},
-       {0x041F, 0x001F, 257, 105, 44913, 44919, 44936, 39674, 39678, 12683, 44956, {39682, 0, 0, 0}, 125, 125, { 1254, 20905, 10081, 857, 0, ';' }},
-       {0x0420, 0x0020, 257, 85, 44959, 44965, 44981, 39713, 39717, 39696, 45007, {39721, 0, 0, 0}, 126, 126, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x0421, 0x0021, 257, 45, 45010, 45016, 45039, 39782, 39786, 39751, 45068, {39790, 0, 0, 0}, 127, 127, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0422, 0x0022, 257, 108, 45071, 45077, 45097, 39843, 39847, 39809, 45135, {39851, 0, 0, 0}, 128, 128, { 1251, 500, 10017, 866, 0, ';' }},
-       {0x0423, 0x0023, 257, 15, 45138, 45144, 45165, 39932, 39936, 39897, 45205, {39940, 0, 0, 0}, 129, 129, { 1251, 500, 10007, 866, 0, ';' }},
-       {0x0424, 0x0024, 257, 98, 45208, 45214, 45235, 40009, 40013, 39982, 45261, {40017, 0, 0, 0}, 130, 130, { 1250, 20880, 10029, 852, 0, ';' }},
-       {0x0425, 0x0025, 257, 29, 45264, 45270, 45289, 40057, 40061, 40039, 45303, {40065, 0, 0, 0}, 131, 131, { 1257, 500, 10029, 775, 0, ';' }},
-       {0x0426, 0x0026, 257, 66, 45306, 45312, 45329, 40106, 40110, 40085, 45349, {40114, 0, 0, 0}, 132, 132, { 1257, 500, 10029, 775, 0, ';' }},
-       {0x0427, 0x0027, 257, 64, 45352, 45358, 45381, 40157, 40161, 40133, 45401, {40165, 0, 0, 0}, 133, 133, { 1257, 500, 10029, 775, 0, ';' }},
-       {0x0428, 0x7C28, 257, 103, 45404, 45415, 45444, 40210, 40214, 40188, 45480, {0, 0, 0, 0}, 134, 134, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0429, 0x0029, 257, 50, 45483, 45489, 45504, 40240, 40244, 40218, 45528, {40248, 0, 0, 0}, 135, 135, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x042A, 0x002A, 257, 113, 45531, 45537, 45558, 40301, 35137, 40272, 45586, {40305, 0, 0, 0}, 136, 136, { 1258, 500, 10000, 1258, 0, ',' }},
-       {0x042B, 0x002B, 257, 3, 45589, 45595, 45614, 40347, 40351, 40320, 1820, {40355, 0, 0, 0}, 137, 137, { 0, 500, 2, 1, 0, ',' }},
-       {0x042C, 0x782C, 257, 7, 45648, 45659, 45691, 40412, 40416, 40385, 45717, {40420, 0, 0, 0}, 138, 138, { 1254, 20905, 10081, 857, 0, ';' }},
-       {0x042D, 0x002D, 257, 31, 45720, 45726, 45741, 40457, 40461, 40439, 43646, {40465, 0, 0, 0}, 139, 139, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x042F, 0x002F, 257, 71, 45760, 45766, 45789, 40520, 40524, 40485, 45833, {40528, 0, 0, 0}, 140, 140, { 1251, 500, 10007, 866, 0, ';' }},
-       {0x0432, 0x0032, 257, 115, 45836, 45842, 40582, 40591, 40595, 40572, 45864, {0, 0, 0, 0}, 141, 141, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0434, 0x0034, 257, 115, 45867, 45873, 40608, 40617, 40621, 40599, 45864, {0, 0, 0, 0}, 142, 142, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0435, 0x0035, 257, 115, 45894, 45900, 45920, 40641, 40645, 40625, 45864, {40649, 0, 0, 0}, 143, 143, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0436, 0x0036, 257, 115, 45945, 45951, 45976, 40683, 40687, 40670, 45864, {40691, 0, 0, 0}, 144, 144, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0437, 0x0037, 257, 37, 46000, 46006, 46025, 40745, 40749, 40711, 46080, {40753, 0, 0, 0}, 145, 145, { 0, 500, 2, 1, 0, ';' }},
-       {0x0438, 0x0038, 257, 34, 46083, 46089, 46113, 40839, 40843, 40818, 46134, {0, 0, 0, 0}, 146, 146, { 1252, 20277, 10079, 850, 0, ';' }},
-       {0x0439, 0x0039, 257, 48, 46137, 46143, 46157, 40872, 40876, 40847, 46188, {40880, 0, 0, 0}, 147, 147, { 0, 500, 2, 1, 0, ',' }},
-       {0x043A, 0x003A, 257, 73, 46191, 46197, 46213, 40950, 40954, 40933, 46227, {40958, 0, 0, 0}, 148, 148, { 0, 500, 2, 1, 0, ',' }},
-       {0x043B, 0x003B, 257, 78, 46230, 46236, 46259, 41013, 41017, 40979, 44433, {41021, 0, 0, 0}, 149, 149, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0441, 0x0041, 257, 56, 46284, 46290, 46306, 41308, 41312, 41287, 46324, {41316, 0, 0, 0}, 150, 150, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x0443, 0x7C43, 257, 111, 46327, 46338, 46364, 41357, 41361, 41337, 46390, {41365, 0, 0, 0}, 151, 151, { 1254, 500, 10029, 857, 0, ';' }},
-       {0x0445, 0x0045, 257, 48, 46393, 46399, 46415, 41412, 41416, 41385, 46188, {41420, 0, 0, 0}, 152, 152, { 0, 500, 2, 1, 0, ',' }},
-       {0x0447, 0x0047, 257, 48, 46446, 46452, 46469, 41604, 41608, 41570, 46188, {41612, 0, 0, 0}, 153, 153, { 0, 500, 2, 1, 0, ',' }},
-       {0x0448, 0x0048, 257, 48, 46506, 46512, 46526, 41693, 41697, 41668, 46188, {0, 0, 0, 0}, 154, 154, { 0, 500, 2, 1, 0, ',' }},
-       {0x0449, 0x0049, 257, 48, 46557, 46563, 46577, 41726, 41730, 41701, 46188, {41734, 0, 0, 0}, 155, 155, { 0, 500, 2, 1, 0, ',' }},
-       {0x044A, 0x004A, 257, 48, 46617, 46623, 46638, 41828, 41832, 41799, 46188, {41836, 0, 0, 0}, 156, 156, { 0, 500, 2, 1, 0, ',' }},
-       {0x044B, 0x004B, 257, 48, 46685, 46691, 46707, 41925, 41929, 37319, 46188, {41933, 0, 0, 0}, 157, 157, { 0, 500, 2, 1, 0, ',' }},
-       {0x044C, 0x004C, 257, 48, 46738, 46744, 46762, 42030, 42034, 41998, 46188, {42038, 0, 0, 0}, 158, 158, { 0, 500, 2, 1, 0, ',' }},
-       {0x044D, 0x004D, 257, 48, 46802, 46808, 46825, 42116, 42120, 42082, 46188, {42124, 0, 0, 0}, 159, 159, { 0, 500, 2, 1, 0, ',' }},
-       {0x044E, 0x004E, 257, 48, 46862, 46868, 46884, 42204, 2402, 42177, 46188, {42208, 0, 0, 0}, 160, 160, { 0, 500, 2, 1, 0, ',' }},
-       {0x0451, 0x0051, 257, 20, 46915, 46921, 46937, 42372, 42376, 42336, 13711, {0, 0, 0, 0}, 161, 161, { 0, 500, 2, 1, 0, ',' }},
-       {0x0452, 0x0052, 257, 36, 46983, 46989, 47012, 42397, 42401, 42380, 47039, {42405, 0, 0, 0}, 162, 162, { 1252, 20285, 10000, 850, 0, ',' }},
-       {0x0453, 0x0053, 257, 57, 47042, 47048, 47065, 42446, 42450, 42421, 47105, {42454, 0, 0, 0}, 163, 163, { 0, 500, 2, 1, 0, ',' }},
-       {0x0454, 0x0054, 257, 60, 47108, 47114, 47125, 42526, 42530, 42509, 47147, {42534, 0, 0, 0}, 164, 164, { 0, 500, 2, 1, 0, ',' }},
-       {0x0456, 0x0056, 257, 31, 47150, 47156, 47173, 42599, 42603, 42580, 43646, {38945, 0, 0, 0}, 165, 165, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0457, 0x0057, 257, 48, 47190, 47197, 47213, 42638, 42607, 42607, 46188, {0, 0, 0, 0}, 166, 166, { 0, 500, 2, 1, 0, ',' }},
-       {0x045B, 0x005B, 257, 63, 47247, 47253, 47273, 42669, 42673, 42642, 47323, {42677, 0, 0, 0}, 167, 167, { 0, 500, 2, 1, 0, ',' }},
-       {0x045E, 0x005E, 257, 32, 47326, 47332, 47351, 42757, 42761, 8022, 47382, {42765, 0, 0, 0}, 168, 168, { 0, 500, 2, 1, 0, ';' }},
-       {0x0461, 0x0061, 257, 79, 47385, 47391, 47406, 42878, 42882, 1883, 47443, {42886, 0, 0, 0}, 169, 169, { 0, 500, 2, 1, 0, ',' }},
-       {0x0463, 0x0063, 1024, 1, 47446, 47452, 47473, 42955, 42959, 42936, 47503, {0, 0, 0, 0}, 170, 170, { 0, 500, 2, 1, 1, ';' }},
-       {0x0464, 0x0064, 257, 84, 47506, 47513, 47536, 42976, 42963, 42963, 47557, {42980, 0, 0, 0}, 171, 171, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x0468, 0x7C68, 257, 75, 47560, 47571, 47594, 43012, 43016, 43003, 47611, {0, 0, 0, 0}, 172, 172, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x046A, 0x006A, 257, 75, 47614, 47620, 47637, 43045, 43049, 43020, 47611, {0, 0, 0, 0}, 173, 173, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x046C, 0x006C, 257, 115, 47683, 47690, 43072, 43089, 43053, 43053, 45864, {0, 0, 0, 0}, 174, 174, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x046F, 0x006F, 257, 38, 47720, 47726, 47750, 43120, 43124, 43093, 47781, {43128, 0, 0, 0}, 175, 175, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0470, 0x0070, 257, 75, 47784, 47790, 47790, 43163, 43167, 43155, 47611, {0, 0, 0, 0}, 176, 176, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x0478, 0x0078, 257, 20, 47805, 47811, 47830, 43195, 43199, 43171, 13711, {43203, 0, 0, 0}, 177, 177, { 0, 500, 2, 1, 0, ',' }},
-       {0x047E, 0x007E, 257, 35, 47849, 47855, 47871, 43236, 43240, 43216, 44030, {43244, 0, 0, 0}, 178, 178, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x0485, 0x0085, 257, 93, 47890, 47897, 43339, 43357, 43329, 43329, 44674, {0, 0, 0, 0}, 179, 179, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0487, 0x0087, 257, 94, 47912, 47918, 47918, 43376, 43380, 43361, 47939, {0, 0, 0, 0}, 180, 180, { 1252, 37, 10000, 437, 0, ';' }},
-       {0x0491, 0x0091, 257, 36, 47942, 47948, 47981, 43413, 43417, 43384, 47039, {43421, 0, 0, 0}, 181, 181, { 1252, 20285, 10000, 850, 0, ',' }},
-       {0x0801, 0x0001, 257, 49, 48017, 48023, 48037, 48067, 38097, 38068, 48071, {48074, 0, 0, 0}, 182, 182, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x0804, 0x0004, 257, 20, 48106, 38326, 48112, 38300, 38304, 38308, 13711, {38311, 0, 0, 0}, 183, 183, { 936, 500, 10008, 936, 0, ',' }},
-       {0x0807, 0x0007, 257, 18, 48128, 48134, 48155, 48173, 38467, 38445, 13632, {38471, 0, 0, 0}, 184, 184, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x0809, 0x0009, 257, 36, 48177, 48183, 48183, 48208, 38587, 38572, 47039, {38591, 0, 0, 0}, 185, 185, { 1252, 20285, 10000, 850, 0, ',' }},
-       {0x080A, 0x000A, 257, 74, 48212, 48218, 48235, 48254, 38634, 38610, 48258, {38945, 0, 0, 0}, 186, 186, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x080C, 0x000C, 257, 10, 48261, 48267, 48284, 48305, 38734, 38710, 48309, {38738, 0, 0, 0}, 187, 187, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x0810, 0x0010, 257, 18, 48312, 48318, 48340, 48360, 38941, 38917, 13632, {38945, 0, 0, 0}, 188, 188, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0813, 0x0013, 257, 10, 48364, 48370, 48386, 48407, 39086, 39062, 48309, {39090, 0, 0, 0}, 189, 189, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x0814, 0x7814, 257, 78, 48411, 48417, 48444, 48460, 48464, 48468, 44433, {38424, 0, 0, 0}, 190, 190, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x0816, 0x0016, 257, 88, 48471, 48477, 48499, 48521, 39220, 39191, 48525, {39224, 0, 0, 0}, 191, 191, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x081D, 0x001D, 257, 33, 48528, 48534, 48552, 48570, 39596, 39573, 43986, {38424, 0, 0, 0}, 192, 192, { 1252, 20278, 10000, 850, 0, ';' }},
-       {0x082C, 0x742C, 257, 7, 48574, 48585, 45691, 48620, 40416, 40385, 45717, {40420, 0, 0, 0}, 193, 193, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x083C, 0x003C, 257, 46, 48624, 48630, 48646, 41057, 41061, 41040, 48662, {41065, 0, 0, 0}, 194, 194, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0843, 0x7843, 257, 111, 48665, 48676, 46364, 41357, 41361, 41337, 46390, {48705, 0, 0, 0}, 195, 195, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x0845, 0x0045, 257, 9, 48743, 48749, 48770, 48813, 41416, 41385, 48817, {41420, 0, 0, 0}, 196, 196, { 0, 500, 2, 1, 0, ',' }},
-       {0x0C01, 0x0001, 257, 30, 48820, 48826, 48841, 48865, 38097, 38068, 48869, {48074, 0, 0, 0}, 197, 197, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x0C04, 0x7C04, 257, 41, 48872, 48878, 48921, 48958, 38304, 38308, 48962, {43700, 0, 0, 0}, 198, 198, { 950, 500, 10002, 950, 0, ',' }},
-       {0x0C07, 0x0007, 257, 5, 48965, 48971, 48988, 49010, 38467, 38445, 49014, {38471, 0, 0, 0}, 199, 199, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x0C09, 0x0009, 257, 6, 49017, 49023, 49023, 49043, 38587, 38572, 49047, {38591, 0, 0, 0}, 200, 200, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x0C0A, 0x000A, 257, 31, 49050, 49056, 49072, 49091, 38634, 38610, 43646, {38638, 0, 0, 0}, 201, 201, { 1252, 20284, 10000, 850, 0, ';' }},
-       {0x0C0C, 0x000C, 257, 17, 49095, 49101, 49117, 49136, 38734, 38710, 49140, {49143, 0, 0, 0}, 202, 202, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x0C3B, 0x003B, 257, 33, 49165, 49171, 49195, 49221, 49225, 40979, 43986, {41021, 0, 0, 0}, 203, 203, { 1252, 20278, 10000, 850, 0, ';' }},
-       {0x1001, 0x0001, 257, 67, 49229, 49235, 49250, 49278, 38097, 38068, 49282, {48074, 0, 0, 0}, 204, 204, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x1004, 0x0004, 257, 97, 49285, 49291, 49323, 49342, 38304, 38308, 49346, {38311, 0, 0, 0}, 205, 205, { 936, 500, 10008, 936, 0, ',' }},
-       {0x1007, 0x0007, 257, 65, 49349, 49355, 49375, 49395, 38467, 38445, 49399, {38471, 0, 0, 0}, 206, 206, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x1009, 0x0009, 257, 17, 49402, 49408, 49408, 49425, 38587, 38572, 49140, {38591, 0, 0, 0}, 207, 207, { 1252, 37, 10000, 850, 0, ',' }},
-       {0x100A, 0x000A, 257, 40, 49429, 49435, 49455, 49476, 38634, 38610, 49480, {38638, 0, 0, 0}, 208, 208, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x100C, 0x000C, 257, 18, 49483, 49489, 49510, 49529, 38734, 38710, 13632, {38738, 0, 0, 0}, 209, 209, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x101A, 0x001A, 257, 8, 49533, 49539, 49573, 49604, 49608, 39424, 49612, {39453, 0, 0, 0}, 210, 210, { 1250, 870, 10082, 852, 0, ';' }},
-       {0x1401, 0x0001, 257, 27, 49615, 49621, 49638, 49670, 38097, 38068, 49674, {48074, 0, 0, 0}, 211, 211, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x1404, 0x7C04, 257, 72, 49677, 49683, 49722, 49759, 38304, 38308, 49763, {43700, 0, 0, 0}, 212, 212, { 950, 500, 10002, 950, 0, ',' }},
-       {0x1407, 0x0007, 257, 62, 49766, 49772, 49795, 49819, 38467, 38445, 49823, {38471, 0, 0, 0}, 213, 213, { 1252, 20273, 10000, 850, 0, ';' }},
-       {0x1409, 0x0009, 257, 80, 49826, 49832, 49832, 49854, 38587, 38572, 49858, {38591, 0, 0, 0}, 214, 214, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x140A, 0x000A, 257, 22, 49861, 49867, 49888, 49910, 38634, 38610, 49914, {38638, 0, 0, 0}, 215, 215, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x140C, 0x000C, 257, 65, 49917, 49923, 49943, 49966, 38734, 38710, 49399, {38738, 0, 0, 0}, 216, 216, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x141A, 0x681A, 257, 8, 49970, 49981, 50021, 50052, 50056, 50060, 49612, {50063, 0, 0, 0}, 217, 217, { 1250, 870, 10082, 852, 0, ';' }},
-       {0x1801, 0x0001, 257, 68, 50086, 50092, 50109, 50139, 38097, 38068, 50143, {48074, 0, 0, 0}, 218, 218, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x1809, 0x0009, 257, 46, 50146, 50152, 50152, 50170, 38587, 38572, 48662, {38591, 0, 0, 0}, 219, 219, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x180A, 0x000A, 257, 82, 50174, 50180, 50197, 50216, 38634, 38610, 50220, {38638, 0, 0, 0}, 220, 220, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x180C, 0x000C, 257, 69, 50223, 50229, 50245, 50264, 38734, 38710, 50268, {38738, 0, 0, 0}, 221, 221, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x181A, 0x701A, 257, 8, 50271, 50282, 50322, 50374, 50378, 50382, 49612, {50063, 0, 0, 0}, 222, 222, { 1250, 870, 10082, 852, 0, ';' }},
-       {0x1C01, 0x0001, 257, 104, 50385, 50391, 50408, 50434, 38097, 38068, 50438, {48074, 0, 0, 0}, 223, 223, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x1C09, 0x0009, 257, 115, 50441, 50447, 50447, 50470, 38587, 38572, 45864, {38591, 0, 0, 0}, 224, 224, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x1C0A, 0x000A, 257, 26, 50474, 50480, 50509, 50542, 38634, 38610, 50546, {38638, 0, 0, 0}, 225, 225, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x1C1A, 0x6C1A, 257, 8, 50549, 50560, 50322, 50603, 50607, 50382, 49612, {40528, 0, 0, 0}, 226, 226, { 1251, 21025, 10007, 855, 0, ';' }},
-       {0x2001, 0x0001, 257, 81, 50611, 50617, 50631, 50659, 38097, 38068, 50663, {48074, 0, 0, 0}, 227, 227, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x2009, 0x0009, 257, 53, 50666, 50672, 50672, 50690, 38587, 38572, 50694, {38591, 0, 0, 0}, 228, 228, { 1252, 500, 10000, 850, 0, ',' }},
-       {0x200A, 0x000A, 257, 112, 50697, 50703, 50723, 50744, 38634, 38610, 50748, {38638, 0, 0, 0}, 229, 229, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x201A, 0x641A, 257, 8, 50751, 50762, 50021, 50805, 50809, 50060, 49612, {40528, 0, 0, 0}, 230, 230, { 1251, 870, 10082, 855, 0, ';' }},
-       {0x2401, 0x0001, 257, 114, 50813, 50819, 50834, 50862, 38097, 38068, 50866, {48074, 0, 0, 0}, 231, 231, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x240A, 0x000A, 257, 21, 50869, 50875, 50894, 50914, 38634, 38610, 50918, {38638, 0, 0, 0}, 232, 232, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x241A, 0x701A, 257, 92, 50921, 50932, 50956, 50984, 2130, 50382, 50988, {50063, 0, 0, 0}, 233, 233, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x2801, 0x0001, 257, 101, 50991, 50997, 51012, 51040, 38097, 38068, 51044, {48074, 0, 0, 0}, 234, 234, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x2809, 0x0009, 257, 16, 51047, 51053, 51053, 51070, 38587, 38572, 51074, {38591, 0, 0, 0}, 235, 235, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x280A, 0x000A, 257, 83, 51077, 51083, 51098, 51115, 38634, 38610, 51119, {38638, 0, 0, 0}, 236, 236, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x281A, 0x6C1A, 257, 92, 51122, 51133, 50956, 51160, 2130, 50382, 50988, {40528, 0, 0, 0}, 237, 237, { 1251, 21025, 10007, 855, 0, ';' }},
-       {0x2C01, 0x0001, 257, 54, 51164, 51170, 51186, 51216, 38097, 38068, 51220, {48074, 0, 0, 0}, 238, 238, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x2C09, 0x0009, 257, 106, 51223, 51229, 51229, 51259, 38587, 38572, 51263, {38591, 0, 0, 0}, 239, 239, { 1252, 500, 10000, 850, 0, ';' }},
-       {0x2C0A, 0x000A, 257, 4, 51266, 51272, 51292, 51313, 38634, 38610, 51317, {38638, 0, 0, 0}, 240, 240, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x2C1A, 0x701A, 257, 70, 51320, 51331, 51359, 51392, 2130, 50382, 51396, {50063, 0, 0, 0}, 241, 241, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x3001, 0x0001, 257, 61, 51399, 51405, 51422, 51450, 38097, 38068, 51454, {48074, 0, 0, 0}, 242, 242, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x3009, 0x0009, 257, 116, 51457, 51463, 51463, 51482, 38587, 38572, 51486, {38591, 0, 0, 0}, 243, 243, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x300A, 0x000A, 257, 28, 51489, 51495, 51513, 51532, 38634, 38610, 51536, {38638, 0, 0, 0}, 244, 244, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x301A, 0x6C1A, 257, 70, 51539, 51550, 51359, 51581, 2130, 50382, 51396, {40528, 0, 0, 0}, 245, 245, { 1251, 21025, 10007, 855, 0, ';' }},
-       {0x3401, 0x0001, 257, 59, 51585, 51591, 51607, 51637, 38097, 38068, 51641, {48074, 0, 0, 0}, 246, 246, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x3409, 0x0009, 257, 84, 51644, 51650, 51650, 51672, 38587, 38572, 47557, {38591, 0, 0, 0}, 247, 247, { 1252, 500, 10000, 437, 0, ',' }},
-       {0x340A, 0x000A, 257, 19, 51676, 51682, 51698, 51715, 38634, 38610, 51719, {38638, 0, 0, 0}, 248, 248, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x3801, 0x0001, 257, 0, 51722, 51728, 51758, 51822, 38097, 38068, 51826, {48074, 0, 0, 0}, 249, 249, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x380A, 0x000A, 257, 110, 51829, 51835, 51853, 51872, 38634, 38610, 51876, {38638, 0, 0, 0}, 250, 250, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x3C01, 0x0001, 257, 12, 51879, 51885, 51902, 51934, 38097, 38068, 51938, {48074, 0, 0, 0}, 251, 251, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x3C0A, 0x000A, 257, 89, 51941, 51947, 51966, 51986, 38634, 38610, 51990, {38638, 0, 0, 0}, 252, 252, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x4001, 0x0001, 257, 90, 51993, 51999, 52014, 52038, 38097, 38068, 52042, {48074, 0, 0, 0}, 253, 253, { 1256, 20420, 10004, 720, 1, ';' }},
-       {0x4009, 0x0009, 257, 48, 52045, 52051, 52051, 52067, 38587, 38572, 46188, {38591, 0, 0, 0}, 254, 254, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x400A, 0x000A, 257, 13, 52071, 52077, 52095, 52114, 38634, 38610, 52118, {38638, 0, 0, 0}, 255, 255, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x440A, 0x000A, 257, 100, 52121, 52127, 52149, 52172, 38634, 38610, 52176, {38638, 0, 0, 0}, 256, 256, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x4809, 0x0009, 257, 97, 52179, 52185, 52185, 52205, 38587, 38572, 49346, {38591, 0, 0, 0}, 257, 257, { 1252, 37, 10000, 437, 0, ',' }},
-       {0x480A, 0x000A, 257, 42, 52209, 52215, 52234, 52254, 38634, 38610, 52258, {38638, 0, 0, 0}, 258, 258, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x4C0A, 0x000A, 257, 76, 52261, 52267, 52287, 52308, 38634, 38610, 52312, {38638, 0, 0, 0}, 259, 259, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x500A, 0x000A, 257, 87, 52315, 52321, 52343, 52366, 38634, 38610, 52370, {38638, 0, 0, 0}, 260, 260, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x540A, 0x000A, 257, 109, 52373, 52379, 52403, 52429, 38634, 38610, 43945, {38638, 0, 0, 0}, 261, 261, { 1252, 20284, 10000, 850, 0, ',' }},
-       {0x641A, 0x781A, 257, -1, 52433, 52441, 52460, 50805, 50809, 50060, 0, {40528, 0, 0, 0}, 262, 262, { 1251, 870, 10082, 855, 0, ';' }},
-       {0x681A, 0x781A, 257, -1, 52469, 52477, 52460, 50052, 50056, 50060, 0, {50063, 0, 0, 0}, 263, 263, { 1250, 870, 10082, 852, 0, ';' }},
-       {0x6C1A, 0x7C1A, 257, -1, 52493, 52501, 52520, 51160, 2130, 50382, 0, {40528, 0, 0, 0}, 264, 264, { 1251, 21025, 10007, 855, 0, ';' }},
-       {0x701A, 0x7C1A, 257, -1, 52533, 52541, 52520, 50984, 2130, 50382, 0, {50063, 0, 0, 0}, 265, 265, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x742C, 0x002C, 257, -1, 52557, 52565, 40400, 48620, 40416, 40385, 0, {40420, 0, 0, 0}, 266, 266, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x7804, 0x007F, 257, -1, 38308, 38326, 38293, 38300, 38304, 38308, 0, {38311, 0, 0, 0}, 267, 267, { 936, 500, 10008, 936, 0, ',' }},
-       {0x7814, 0x0014, 257, -1, 48468, 52588, 52606, 48460, 48464, 48468, 0, {38424, 0, 0, 0}, 268, 268, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x781A, 0x007F, 257, -1, 50060, 52614, 52460, 50052, 50056, 50060, 0, {50063, 0, 0, 0}, 269, 269, { 1250, 870, 10082, 852, 0, ';' }},
-       {0x782C, 0x002C, 257, -1, 52622, 52630, 40400, 40412, 40416, 40385, 0, {40420, 0, 0, 0}, 270, 270, { 1254, 20905, 10081, 857, 0, ';' }},
-       {0x7843, 0x0043, 257, -1, 52650, 52658, 41346, 41357, 41361, 41337, 0, {48705, 0, 0, 0}, 271, 271, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x7850, 0x0050, 257, -1, 52675, 52683, 42283, 52704, 42300, 42270, 0, {42304, 0, 0, 0}, 272, 272, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x7C04, 0x7804, 257, -1, 52708, 43655, 38293, 43693, 38304, 38308, 0, {43700, 0, 0, 0}, 273, 273, { 950, 500, 10002, 950, 0, ',' }},
-       {0x7C04, 0x7C04, 257, -1, 52716, 52723, 38293, 43693, 38304, 38308, 0, {43700, 0, 0, 0}, 274, 274, { 950, 500, 10002, 950, 0, ',' }},
-       {0x7C14, 0x0014, 257, -1, 39139, 52752, 52770, 39131, 39135, 39139, 0, {38424, 0, 0, 0}, 275, 275, { 1252, 20277, 10000, 850, 0, ';' }},
-       {0x7C1A, 0x007F, 257, -1, 50382, 52784, 52520, 52792, 2130, 50382, 0, {40528, 0, 0, 0}, 276, 276, { 1250, 500, 10029, 852, 0, ';' }},
-       {0x7C28, 0x0028, 257, -1, 52796, 52804, 40197, 40210, 40214, 40188, 0, {0, 0, 0, 0}, 277, 277, { 1251, 20880, 10007, 866, 0, ';' }},
-       {0x7C43, 0x0043, 257, -1, 52821, 52829, 41346, 41357, 41361, 41337, 0, {41365, 0, 0, 0}, 278, 278, { 1254, 500, 10029, 857, 0, ';' }},
-       {0x7C5F, 0x005F, 257, -1, 52843, 52852, 42838, 42848, 42810, 42810, 0, {0, 0, 0, 0}, 279, 279, { 1252, 20297, 10000, 850, 0, ';' }},
-       {0x7C68, 0x0068, 257, -1, 52884, 52892, 43006, 43012, 43016, 43003, 0, {0, 0, 0, 0}, 280, 280, { 1252, 37, 10000, 437, 0, ',' }}
+       {0x0001, 0x007F, 768, -1, 2618, 2621, 2628, 2643, 2647, 2618, 0, {0, 0, 36669, 0}, 0, 0, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0002, 0x007F, 257, -1, 2651, 2654, 2664, 2683, 2687, 2651, 0, {36697, 0, 0, 0}, 1, 1, { 1251, 21025, 10007, 866, 0, ';' }},
+       {0x0003, 0x007F, 257, -1, 2691, 2694, 2702, 2710, 2714, 2691, 0, {36739, 0, 0, 0}, 2, 2, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0004, 0x7804, 257, -1, 2718, 2726, 2747, 2754, 2758, 2762, 0, {36759, 0, 0, 0}, 3, 3, { 936, 500, 10008, 936, 0, ',' }},
+       {0x0004, 0x0004, 257, -1, 2765, 2772, 2747, 2754, 2758, 2762, 0, {36759, 0, 0, 0}, 4, 4, { 936, 500, 10008, 936, 0, ',' }},
+       {0x0005, 0x007F, 257, -1, 2800, 2803, 2809, 2819, 2823, 2800, 0, {36766, 0, 0, 0}, 5, 5, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x0006, 0x007F, 257, -1, 2827, 2830, 2837, 2843, 2847, 2827, 0, {36792, 0, 0, 0}, 6, 6, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0007, 0x007F, 257, -1, 2851, 2854, 2861, 2869, 2873, 2851, 0, {36813, 0, 0, 0}, 7, 7, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x0008, 0x007F, 257, -1, 2877, 2880, 2886, 2903, 2907, 2877, 0, {36838, 0, 0, 0}, 8, 8, { 1253, 20273, 10006, 737, 0, ';' }},
+       {0x0009, 0x007F, 257, -1, 2911, 2914, 2914, 2922, 2926, 2911, 0, {36880, 0, 0, 0}, 9, 9, { 1252, 37, 10000, 437, 0, ',' }},
+       {0x000A, 0x007F, 257, -1, 2930, 2933, 2941, 2950, 2954, 2930, 0, {36899, 0, 0, 0}, 10, 10, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x000B, 0x007F, 257, -1, 2958, 2961, 2969, 2975, 2979, 2958, 0, {36921, 0, 0, 0}, 11, 11, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x000C, 0x007F, 257, -1, 2983, 2986, 2993, 3003, 3007, 2983, 0, {36946, 0, 0, 0}, 12, 12, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x000D, 0x007F, 257, -1, 3011, 3014, 3021, 3032, 3036, 3011, 0, {36968, 0, 0, 0}, 13, 13, { 1255, 500, 10005, 862, 1, ',' }},
+       {0x000E, 0x007F, 257, -1, 3040, 3043, 3053, 3060, 3064, 3040, 0, {37005, 0, 0, 0}, 14, 14, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x000F, 0x007F, 257, -1, 3068, 3071, 3081, 3091, 3095, 3068, 0, {37021, 0, 0, 0}, 15, 15, { 1252, 20871, 10079, 850, 0, ';' }},
+       {0x0010, 0x007F, 257, -1, 3099, 3102, 3110, 3119, 3123, 3099, 0, {37041, 0, 0, 0}, 16, 16, { 1252, 20280, 10000, 850, 0, ';' }},
+       {0x0011, 0x007F, 257, -1, 3127, 3130, 3139, 3149, 3153, 3127, 0, {37063, 0, 0, 0}, 17, 17, { 932, 20290, 10001, 932, 0, ',' }},
+       {0x0012, 0x007F, 257, -1, 3157, 3160, 3167, 3177, 3181, 3157, 0, {37090, 0, 0, 0}, 18, 18, { 949, 20833, 10003, 949, 0, ',' }},
+       {0x0013, 0x007F, 257, -1, 3185, 3188, 3194, 3205, 3209, 3185, 0, {37097, 0, 0, 0}, 19, 19, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0014, 0x007F, 257, -1, 3213, 3216, 3226, 3232, 3236, 3240, 0, {36792, 0, 0, 0}, 20, 20, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0015, 0x007F, 257, -1, 3243, 3246, 3253, 3260, 3264, 3243, 0, {37119, 0, 0, 0}, 21, 21, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0016, 0x007F, 257, -1, 3268, 3271, 3282, 3293, 3297, 3268, 0, {37143, 0, 0, 0}, 22, 22, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0017, 0x007F, 257, -1, 3301, 3304, 3312, 3322, 3326, 3301, 0, {37166, 0, 0, 0}, 23, 23, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x0018, 0x007F, 257, -1, 3330, 3333, 3342, 3351, 3355, 3330, 0, {37186, 0, 0, 0}, 24, 24, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0019, 0x007F, 257, -1, 3359, 3362, 3370, 3385, 3389, 3359, 0, {37205, 0, 0, 0}, 25, 25, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x001A, 0x007F, 257, -1, 3393, 3396, 3405, 3414, 3418, 3393, 0, {37251, 0, 0, 0}, 26, 26, { 1250, 500, 10082, 852, 0, ';' }},
+       {0x001B, 0x007F, 257, -1, 3422, 3425, 3432, 3444, 3448, 3422, 0, {37274, 0, 0, 0}, 27, 27, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x001C, 0x007F, 257, -1, 3452, 3455, 3464, 3470, 3474, 3452, 0, {37298, 0, 0, 0}, 28, 28, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x001D, 0x007F, 257, -1, 3478, 3481, 3489, 3497, 3501, 3478, 0, {36792, 0, 0, 0}, 29, 29, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x001E, 0x007F, 512, -1, 3505, 3508, 3513, 3523, 3527, 3505, 0, {0, 37317, 0, 0}, 30, 30, { 874, 20838, 10021, 874, 0, ',' }},
+       {0x001F, 0x007F, 257, -1, 3531, 3534, 3542, 3551, 3555, 3531, 0, {37348, 0, 0, 0}, 31, 31, { 1254, 20905, 10081, 857, 0, ';' }},
+       {0x0020, 0x007F, 257, -1, 3559, 3562, 3567, 3576, 3580, 3559, 0, {37362, 0, 0, 0}, 32, 32, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0021, 0x007F, 257, -1, 3584, 3587, 3598, 3608, 3612, 3584, 0, {37392, 0, 0, 0}, 33, 33, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0022, 0x007F, 257, -1, 3616, 3619, 3629, 3650, 3654, 3616, 0, {37411, 0, 0, 0}, 34, 34, { 1251, 500, 10017, 866, 0, ';' }},
+       {0x0023, 0x007F, 257, -1, 3658, 3661, 3672, 3693, 3697, 3658, 0, {37457, 0, 0, 0}, 35, 35, { 1251, 500, 10007, 866, 0, ';' }},
+       {0x0024, 0x007F, 257, -1, 3701, 3704, 3714, 3728, 3732, 3701, 0, {37499, 0, 0, 0}, 36, 36, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0025, 0x007F, 257, -1, 3736, 3739, 3748, 3754, 3758, 3736, 0, {37521, 0, 0, 0}, 37, 37, { 1257, 500, 10029, 775, 0, ';' }},
+       {0x0026, 0x007F, 257, -1, 3762, 3765, 3773, 3783, 3787, 3762, 0, {37541, 0, 0, 0}, 38, 38, { 1257, 500, 10029, 775, 0, ';' }},
+       {0x0027, 0x007F, 257, -1, 3791, 3794, 3805, 3815, 3819, 3791, 0, {37560, 0, 0, 0}, 39, 39, { 1257, 500, 10029, 775, 0, ';' }},
+       {0x0028, 0x007F, 257, -1, 3823, 3826, 3832, 3845, 3849, 3823, 0, {0, 0, 0, 0}, 40, 40, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0029, 0x007F, 257, -1, 3853, 3856, 3864, 3875, 3879, 3853, 0, {37583, 0, 0, 0}, 41, 41, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x002A, 0x007F, 257, -1, 3883, 3886, 3897, 3912, 3916, 3883, 0, {37607, 0, 0, 0}, 42, 42, { 1258, 500, 10000, 1258, 0, ',' }},
+       {0x002B, 0x007F, 257, -1, 3920, 3923, 3932, 3947, 3951, 3920, 0, {37622, 0, 0, 0}, 43, 43, { 0, 500, 2, 1, 0, ',' }},
+       {0x002C, 0x007F, 257, -1, 3955, 3958, 3970, 3982, 3986, 3955, 0, {37652, 0, 0, 0}, 44, 44, { 1254, 20905, 10081, 857, 0, ';' }},
+       {0x002D, 0x007F, 257, -1, 3990, 3993, 4000, 4008, 4012, 3990, 0, {37671, 0, 0, 0}, 45, 45, { 1252, 500, 2, 850, 0, ';' }},
+       {0x002E, 0x007F, 257, -1, 4016, 4020, 4034, 4052, 4016, 4016, 0, {37691, 0, 0, 0}, 46, 46, { 1252, 870, 10000, 850, 0, ';' }},
+       {0x002F, 0x007F, 257, -1, 4056, 4059, 4070, 4091, 4095, 4056, 0, {37712, 0, 0, 0}, 47, 47, { 1251, 500, 10007, 866, 0, ';' }},
+       {0x0030, 0x007F, 257, -1, 4099, 4102, 4117, 4125, 4129, 4099, 0, {0, 0, 0, 0}, 48, 48, { 0, 500, 2, 1, 0, ';' }},
+       {0x0031, 0x007F, 257, -1, 4133, 4136, 4143, 4152, 4156, 4133, 0, {0, 0, 0, 0}, 49, 49, { 0, 500, 2, 1, 0, ';' }},
+       {0x0032, 0x007F, 257, -1, 4160, 4163, 4170, 4179, 4183, 4160, 0, {0, 0, 0, 0}, 50, 50, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0034, 0x007F, 257, -1, 4187, 4190, 4196, 4205, 4209, 4187, 0, {0, 0, 0, 0}, 51, 51, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0035, 0x007F, 257, -1, 4213, 4216, 4221, 4229, 4233, 4213, 0, {37756, 0, 0, 0}, 52, 52, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0036, 0x007F, 257, -1, 4237, 4240, 4240, 4250, 4254, 4237, 0, {37781, 0, 0, 0}, 53, 53, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0037, 0x007F, 257, -1, 4258, 4261, 4270, 4292, 4296, 4258, 0, {37801, 0, 0, 0}, 54, 54, { 0, 500, 2, 1, 0, ';' }},
+       {0x0038, 0x007F, 257, -1, 4300, 4303, 4311, 4321, 4325, 4300, 0, {37866, 0, 0, 0}, 55, 55, { 1252, 20277, 10079, 850, 0, ';' }},
+       {0x0039, 0x007F, 257, -1, 4329, 4332, 4338, 4357, 4361, 4329, 0, {37890, 0, 0, 0}, 56, 56, { 0, 500, 2, 1, 0, ',' }},
+       {0x003A, 0x007F, 257, -1, 4365, 4368, 4376, 4382, 4386, 4365, 0, {37943, 0, 0, 0}, 57, 57, { 0, 500, 2, 1, 0, ';' }},
+       {0x003B, 0x007F, 257, -1, 4390, 4393, 4407, 4424, 4428, 4390, 0, {37964, 0, 0, 0}, 58, 58, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x003C, 0x007F, 257, -1, 4432, 4435, 4441, 4449, 4453, 4432, 0, {37983, 0, 0, 0}, 59, 59, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x003E, 0x007F, 257, -1, 4457, 4460, 4466, 4480, 4484, 4457, 0, {38004, 0, 0, 0}, 60, 60, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x003F, 0x007F, 257, -1, 4488, 4491, 4498, 4518, 4522, 4488, 0, {38021, 0, 0, 0}, 61, 61, { 0, 500, 2, 1, 0, ';' }},
+       {0x0040, 0x007F, 257, -1, 4526, 4529, 4536, 4553, 4557, 4526, 0, {38063, 0, 0, 0}, 62, 62, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0041, 0x007F, 257, -1, 4561, 4564, 4572, 4582, 4586, 4561, 0, {38103, 0, 0, 0}, 63, 63, { 1252, 500, 10000, 437, 0, ';' }},
+       {0x0042, 0x007F, 257, -1, 4590, 4593, 4601, 4613, 4617, 4590, 0, {38124, 0, 0, 0}, 64, 64, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0043, 0x007F, 257, -1, 4621, 4624, 4630, 4639, 4643, 4621, 0, {38146, 0, 0, 0}, 65, 65, { 1254, 500, 10029, 857, 0, ';' }},
+       {0x0045, 0x007F, 257, -1, 4647, 4650, 4657, 4673, 4677, 4647, 0, {38164, 0, 0, 0}, 66, 66, { 0, 500, 2, 1, 0, ',' }},
+       {0x0046, 0x007F, 257, -1, 4681, 4684, 4692, 4711, 4715, 4681, 0, {38235, 0, 0, 0}, 67, 67, { 0, 500, 2, 1, 0, ',' }},
+       {0x0047, 0x007F, 257, -1, 4719, 4722, 4731, 4753, 4757, 4719, 0, {38282, 0, 0, 0}, 68, 68, { 0, 500, 2, 1, 0, ',' }},
+       {0x0048, 0x007F, 257, -1, 4761, 4764, 4769, 4785, 4789, 4761, 0, {0, 0, 0, 0}, 69, 69, { 0, 500, 2, 1, 0, ',' }},
+       {0x0049, 0x007F, 257, -1, 4793, 4796, 4802, 4818, 4822, 4793, 0, {38338, 0, 0, 0}, 70, 70, { 0, 500, 2, 1, 0, ',' }},
+       {0x004A, 0x007F, 257, -1, 4826, 4829, 4836, 4855, 4859, 4826, 0, {38403, 0, 0, 0}, 71, 71, { 0, 500, 2, 1, 0, ',' }},
+       {0x004B, 0x007F, 257, -1, 1749, 4863, 4871, 4887, 4891, 1749, 0, {38468, 0, 0, 0}, 72, 72, { 0, 500, 2, 1, 0, ',' }},
+       {0x004C, 0x007F, 257, -1, 4895, 4898, 4908, 4927, 4931, 4895, 0, {38533, 0, 0, 0}, 73, 73, { 0, 500, 2, 1, 0, ',' }},
+       {0x004D, 0x007F, 257, -1, 4935, 4938, 4947, 4969, 4973, 4935, 0, {38577, 0, 0, 0}, 74, 74, { 0, 500, 2, 1, 0, ',' }},
+       {0x004E, 0x007F, 257, -1, 4977, 4980, 4988, 5004, 5008, 4977, 0, {38630, 0, 0, 0}, 75, 75, { 0, 500, 2, 1, 0, ',' }},
+       {0x0050, 0x007F, 257, -1, 5012, 5015, 5025, 5038, 5042, 5012, 0, {38692, 0, 0, 0}, 76, 76, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0051, 0x007F, 257, -1, 5046, 5049, 5057, 5082, 5086, 5046, 0, {0, 0, 0, 0}, 77, 77, { 0, 500, 2, 1, 0, ',' }},
+       {0x0052, 0x007F, 257, -1, 5090, 5093, 5099, 5107, 5111, 5090, 0, {38724, 0, 0, 0}, 78, 78, { 1252, 20285, 10000, 850, 0, ';' }},
+       {0x0053, 0x007F, 257, -1, 5115, 5118, 5124, 5140, 5144, 5115, 0, {38740, 0, 0, 0}, 79, 79, { 0, 500, 2, 1, 0, ',' }},
+       {0x0054, 0x007F, 257, -1, 5148, 5151, 5155, 5165, 5169, 5148, 0, {38795, 0, 0, 0}, 80, 80, { 0, 500, 2, 1, 0, ';' }},
+       {0x0055, 0x007F, 257, -1, 5173, 5176, 5184, 5203, 5207, 5173, 0, {38841, 0, 0, 0}, 81, 81, { 0, 500, 2, 1, 0, ';' }},
+       {0x0056, 0x007F, 257, -1, 5211, 5214, 5223, 5230, 5234, 5211, 0, {36899, 0, 0, 0}, 82, 82, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0057, 0x007F, 257, -1, 5238, 5242, 5250, 5269, 5238, 5238, 0, {0, 0, 0, 0}, 83, 83, { 0, 500, 2, 1, 0, ',' }},
+       {0x005B, 0x007F, 257, -1, 5273, 5276, 5284, 5300, 5304, 5273, 0, {38912, 0, 0, 0}, 84, 84, { 0, 500, 2, 1, 0, ';' }},
+       {0x005C, 0x007F, 257, -1, 5308, 5312, 5321, 5331, 5308, 5308, 0, {38978, 0, 0, 0}, 85, 85, { 0, 500, 2, 1, 0, ',' }},
+       {0x005E, 0x007F, 257, -1, 5, 5335, 5343, 5356, 5360, 5, 0, {39017, 0, 0, 0}, 86, 86, { 0, 500, 2, 1, 0, ';' }},
+       {0x005F, 0x007F, 257, -1, 5364, 5368, 5392, 5415, 5364, 5364, 0, {0, 0, 0, 0}, 87, 87, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0061, 0x007F, 257, -1, 5419, 5422, 5429, 5448, 5452, 5419, 0, {39065, 0, 0, 0}, 88, 88, { 0, 500, 2, 1, 0, ',' }},
+       {0x0062, 0x007F, 257, -1, 5456, 5459, 5475, 5486, 5490, 5456, 0, {39115, 0, 0, 0}, 89, 89, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0063, 0x007F, 1024, -1, 5494, 5497, 5504, 5513, 5517, 5494, 0, {0, 0, 0, 0}, 90, 90, { 0, 500, 2, 1, 1, ';' }},
+       {0x0064, 0x007F, 257, -1, 5521, 5525, 5525, 5534, 5521, 5521, 0, {39138, 0, 0, 0}, 91, 91, { 1252, 500, 10000, 437, 0, ';' }},
+       {0x0067, 0x007F, 257, -1, 5538, 5541, 5547, 5554, 5558, 5538, 0, {0, 0, 0, 0}, 92, 92, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0068, 0x007F, 257, -1, 5562, 5565, 5565, 5571, 5575, 5562, 0, {0, 0, 0, 0}, 93, 93, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x006A, 0x007F, 257, -1, 5579, 5582, 5589, 5604, 5608, 5579, 0, {0, 0, 0, 0}, 94, 94, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x006C, 0x007F, 257, -1, 5612, 5616, 5631, 5648, 5612, 5612, 0, {0, 0, 0, 0}, 95, 95, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x006E, 0x007F, 257, -1, 5652, 5655, 5669, 5685, 5689, 5652, 0, {39162, 0, 0, 0}, 96, 96, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x006F, 0x007F, 257, -1, 5693, 5696, 5708, 5720, 5724, 5693, 0, {39186, 0, 0, 0}, 97, 97, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0070, 0x007F, 257, -1, 5728, 5731, 5731, 5736, 5740, 5728, 0, {0, 0, 0, 0}, 98, 98, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x0072, 0x007F, 257, -1, 5744, 5747, 5753, 5760, 5764, 5744, 0, {0, 0, 0, 0}, 99, 99, { 0, 500, 2, 1, 0, ';' }},
+       {0x0073, 0x007F, 257, -1, 5768, 5771, 5780, 5793, 5797, 5768, 0, {0, 0, 0, 0}, 100, 100, { 0, 500, 2, 1, 0, ';' }},
+       {0x0075, 0x007F, 257, -1, 5801, 5805, 5814, 5832, 5801, 5801, 0, {0, 0, 0, 0}, 101, 101, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x0077, 0x007F, 257, -1, 5836, 5839, 5846, 5855, 5859, 5836, 0, {0, 0, 0, 0}, 102, 102, { 0, 500, 2, 1, 0, ';' }},
+       {0x0078, 0x007F, 257, -1, 5863, 5866, 5877, 5887, 5891, 5863, 0, {39213, 0, 0, 0}, 103, 103, { 0, 500, 2, 1, 0, ';' }},
+       {0x007E, 0x007F, 257, -1, 5895, 5898, 5905, 5915, 5919, 5895, 0, {39226, 0, 0, 0}, 104, 104, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0080, 0x007F, 257, -1, 5923, 5926, 5933, 5950, 5954, 5923, 0, {39246, 0, 0, 0}, 105, 105, { 1256, 20420, 10004, 720, 1, ',' }},
+       {0x0084, 0x007F, 257, -1, 5958, 5962, 5975, 5994, 5958, 5958, 0, {39282, 0, 0, 0}, 106, 106, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0085, 0x007F, 257, -1, 5998, 6002, 6008, 6026, 5998, 5998, 0, {0, 0, 0, 0}, 107, 107, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0087, 0x007F, 257, -1, 6030, 6033, 6033, 6045, 6049, 6030, 0, {0, 0, 0, 0}, 108, 108, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x0091, 0x007F, 257, -1, 6053, 6056, 6072, 6082, 6086, 6053, 0, {39307, 0, 0, 0}, 109, 109, { 1252, 20285, 10000, 850, 0, ';' }},
+       {0x0401, 0x0001, 768, 111, 6090, 6096, 6118, 2643, 2647, 2618, 297, {0, 0, 36669, 0}, 110, 110, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0402, 0x0002, 257, 11, 6182, 6188, 6209, 2683, 2687, 2651, 6247, {36697, 0, 0, 0}, 111, 111, { 1251, 21025, 10007, 866, 0, ';' }},
+       {0x0403, 0x0003, 257, 38, 6250, 6256, 6272, 2710, 2714, 2691, 6290, {36739, 0, 0, 0}, 112, 112, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0404, 0x7C04, 257, 126, 6293, 6299, 6321, 6337, 2758, 2762, 6341, {39332, 0, 0, 0}, 113, 113, { 950, 500, 10002, 950, 0, ',' }},
+       {0x0405, 0x0005, 257, 29, 6344, 6350, 6373, 2819, 2823, 2800, 6403, {36766, 0, 0, 0}, 114, 114, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x0406, 0x0006, 257, 31, 6406, 6412, 6429, 2843, 2847, 2827, 6445, {36792, 0, 0, 0}, 115, 115, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0407, 0x0007, 257, 30, 6448, 6454, 6471, 2869, 2873, 2851, 6493, {36813, 0, 0, 0}, 116, 116, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x0408, 0x0008, 257, 46, 6496, 6502, 6517, 2903, 2907, 2877, 6549, {36838, 0, 0, 0}, 117, 117, { 1253, 20273, 10006, 737, 0, ';' }},
+       {0x0409, 0x0009, 257, 128, 6552, 6558, 6558, 2922, 2926, 2911, 6582, {36880, 0, 0, 0}, 118, 118, { 1252, 37, 10000, 437, 0, ',' }},
+       {0x040B, 0x000B, 257, 40, 6585, 6591, 6609, 2975, 2979, 2958, 6623, {36921, 0, 0, 0}, 119, 119, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x040C, 0x000C, 257, 42, 6626, 6632, 6648, 3003, 3007, 2983, 6667, {36946, 0, 0, 0}, 120, 120, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x040D, 0x000D, 257, 55, 6670, 6676, 6692, 3032, 3036, 3011, 6716, {36968, 0, 0, 0}, 121, 121, { 1255, 500, 10005, 862, 1, ',' }},
+       {0x040E, 0x000E, 257, 52, 6719, 6725, 6745, 3060, 3064, 3040, 6768, {37005, 0, 0, 0}, 122, 122, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x040F, 0x000F, 257, 59, 6771, 6777, 6797, 3091, 3095, 3068, 6817, {37021, 0, 0, 0}, 123, 123, { 1252, 20871, 10079, 850, 0, ';' }},
+       {0x0410, 0x0010, 257, 60, 6820, 6826, 6842, 3119, 3123, 3099, 6860, {37041, 0, 0, 0}, 124, 124, { 1252, 20280, 10000, 850, 0, ';' }},
+       {0x0411, 0x0011, 257, 63, 6863, 6869, 6886, 3149, 3153, 3127, 6905, {37063, 0, 0, 0}, 125, 125, { 932, 20290, 10001, 932, 0, ',' }},
+       {0x0412, 0x0012, 257, 67, 6908, 6914, 6935, 3177, 3181, 3157, 6960, {37090, 0, 0, 0}, 126, 126, { 949, 20833, 10003, 949, 0, ',' }},
+       {0x0413, 0x0013, 257, 92, 6963, 6969, 6989, 3205, 3209, 3185, 7012, {37097, 0, 0, 0}, 127, 127, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0414, 0x7C14, 257, 93, 7015, 7021, 7048, 3232, 3236, 3240, 7070, {36792, 0, 0, 0}, 128, 128, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0415, 0x0015, 257, 101, 7073, 7079, 7095, 3260, 3264, 3243, 7111, {37119, 0, 0, 0}, 129, 129, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0416, 0x0016, 257, 15, 7114, 7120, 7140, 3293, 3297, 3268, 7160, {37143, 0, 0, 0}, 130, 130, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0417, 0x0017, 257, 21, 7163, 7169, 7191, 3322, 3326, 3301, 300, {37166, 0, 0, 0}, 131, 131, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x0418, 0x0018, 257, 107, 7210, 7216, 7235, 3351, 3355, 3330, 7255, {37186, 0, 0, 0}, 132, 132, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0419, 0x0019, 257, 109, 7258, 7264, 7281, 3385, 3389, 3359, 7311, {37205, 0, 0, 0}, 133, 133, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x041A, 0x001A, 257, 50, 7314, 7320, 7339, 3414, 3418, 3393, 7359, {37251, 0, 0, 0}, 134, 134, { 1250, 500, 10082, 852, 0, ';' }},
+       {0x041B, 0x001B, 257, 115, 7362, 7368, 7386, 3444, 3448, 3422, 7410, {37274, 0, 0, 0}, 135, 135, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x041C, 0x001C, 257, 2, 7413, 7419, 7438, 3470, 3474, 3452, 7456, {37298, 0, 0, 0}, 136, 136, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x041D, 0x001D, 257, 112, 7459, 7465, 7482, 3497, 3501, 3478, 7500, {36792, 0, 0, 0}, 137, 137, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x041E, 0x001E, 512, 120, 7503, 7509, 7525, 3523, 3527, 3505, 7547, {0, 37317, 0, 0}, 138, 138, { 874, 20838, 10021, 874, 0, ',' }},
+       {0x041F, 0x001F, 257, 124, 7550, 7556, 7573, 3551, 3555, 3531, 7593, {37348, 0, 0, 0}, 139, 139, { 1254, 20905, 10081, 857, 0, ';' }},
+       {0x0420, 0x0020, 257, 100, 7596, 7602, 7618, 3576, 3580, 3559, 7644, {37362, 0, 0, 0}, 140, 140, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0421, 0x0021, 257, 53, 7647, 7653, 7676, 3608, 3612, 3584, 7698, {37392, 0, 0, 0}, 141, 141, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0422, 0x0022, 257, 127, 7701, 7707, 7727, 3650, 3654, 3616, 7765, {37411, 0, 0, 0}, 142, 142, { 1251, 500, 10017, 866, 0, ';' }},
+       {0x0423, 0x0023, 257, 17, 7768, 7774, 7795, 3693, 3697, 3658, 7835, {37457, 0, 0, 0}, 143, 143, { 1251, 500, 10007, 866, 0, ';' }},
+       {0x0424, 0x0024, 257, 114, 7838, 7844, 7865, 3728, 3732, 3701, 7891, {37499, 0, 0, 0}, 144, 144, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0425, 0x0025, 257, 35, 7894, 7900, 7919, 3754, 3758, 3736, 7933, {37521, 0, 0, 0}, 145, 145, { 1257, 500, 10029, 775, 0, ';' }},
+       {0x0426, 0x0026, 257, 76, 7936, 7942, 7959, 3783, 3787, 3762, 7979, {37541, 0, 0, 0}, 146, 146, { 1257, 500, 10029, 775, 0, ';' }},
+       {0x0427, 0x0027, 257, 74, 7982, 7988, 8011, 3815, 3819, 3791, 8031, {37560, 0, 0, 0}, 147, 147, { 1257, 500, 10029, 775, 0, ';' }},
+       {0x0428, 0x7C28, 257, 121, 8034, 8045, 8074, 3845, 3849, 3823, 8110, {0, 0, 0, 0}, 148, 148, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0429, 0x0029, 257, 58, 8113, 8119, 8134, 3875, 3879, 3853, 8158, {37583, 0, 0, 0}, 149, 149, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x042A, 0x002A, 257, 132, 8161, 8167, 8188, 3912, 3916, 3883, 8216, {37607, 0, 0, 0}, 150, 150, { 1258, 500, 10000, 1258, 0, ',' }},
+       {0x042B, 0x002B, 257, 3, 8219, 8225, 8244, 3947, 3951, 3920, 49, {37622, 0, 0, 0}, 151, 151, { 0, 500, 2, 1, 0, ',' }},
+       {0x042C, 0x782C, 257, 7, 8278, 8289, 8321, 3982, 3986, 3955, 8347, {37652, 0, 0, 0}, 152, 152, { 1254, 20905, 10081, 857, 0, ';' }},
+       {0x042D, 0x002D, 257, 38, 8350, 8356, 8371, 4008, 4012, 3990, 6290, {37671, 0, 0, 0}, 153, 153, { 1252, 500, 2, 850, 0, ';' }},
+       {0x042E, 0x002E, 257, 30, 8390, 8397, 8421, 4052, 4016, 4016, 6493, {37691, 0, 0, 0}, 154, 154, { 1252, 870, 10000, 850, 0, ';' }},
+       {0x042F, 0x002F, 257, 82, 8449, 8455, 8478, 4091, 4095, 4056, 8522, {37712, 0, 0, 0}, 155, 155, { 1251, 500, 10007, 866, 0, ';' }},
+       {0x0430, 0x0030, 257, 134, 8525, 8531, 4117, 4125, 4129, 4099, 8561, {0, 0, 0, 0}, 156, 156, { 0, 500, 2, 1, 0, ';' }},
+       {0x0431, 0x0031, 257, 134, 8564, 8570, 4143, 4152, 4156, 4133, 8561, {0, 0, 0, 0}, 157, 157, { 0, 500, 2, 1, 0, ';' }},
+       {0x0432, 0x0032, 257, 134, 8592, 8598, 4170, 4179, 4183, 4160, 8561, {0, 0, 0, 0}, 158, 158, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0434, 0x0034, 257, 134, 8620, 8626, 4196, 4205, 4209, 4187, 8561, {0, 0, 0, 0}, 159, 159, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0435, 0x0035, 257, 134, 8647, 8653, 8673, 4229, 4233, 4213, 8561, {37756, 0, 0, 0}, 160, 160, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0436, 0x0036, 257, 134, 8698, 8704, 8729, 4250, 4254, 4237, 8561, {37781, 0, 0, 0}, 161, 161, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0437, 0x0037, 257, 44, 8753, 8759, 8778, 4292, 4296, 4258, 8833, {37801, 0, 0, 0}, 162, 162, { 0, 500, 2, 1, 0, ';' }},
+       {0x0438, 0x0038, 257, 41, 8836, 8842, 8866, 4321, 4325, 4300, 8887, {37866, 0, 0, 0}, 163, 163, { 1252, 20277, 10079, 850, 0, ';' }},
+       {0x0439, 0x0039, 257, 56, 8890, 8896, 8910, 4357, 4361, 4329, 8944, {37890, 0, 0, 0}, 164, 164, { 0, 500, 2, 1, 0, ',' }},
+       {0x043A, 0x003A, 257, 87, 8947, 8953, 8969, 4382, 4386, 4365, 8983, {37943, 0, 0, 0}, 165, 165, { 0, 500, 2, 1, 0, ';' }},
+       {0x043B, 0x003B, 257, 93, 8986, 8992, 9015, 4424, 4428, 4390, 7070, {37964, 0, 0, 0}, 166, 166, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x043E, 0x003E, 257, 89, 9040, 9046, 9063, 4480, 4484, 4457, 9088, {38004, 0, 0, 0}, 167, 167, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x043F, 0x003F, 257, 69, 9091, 9097, 9117, 4518, 4522, 4488, 9158, {38021, 0, 0, 0}, 168, 168, { 0, 500, 2, 1, 0, ';' }},
+       {0x0440, 0x0040, 257, 65, 9161, 9167, 9187, 4553, 4557, 4526, 9227, {38063, 0, 0, 0}, 169, 169, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0441, 0x0041, 257, 64, 9230, 9236, 9252, 4582, 4586, 4561, 9270, {38103, 0, 0, 0}, 170, 170, { 1252, 500, 10000, 437, 0, ';' }},
+       {0x0442, 0x0042, 257, 122, 9273, 9279, 9302, 4613, 4617, 4590, 9330, {38124, 0, 0, 0}, 171, 171, { 1250, 20880, 10029, 852, 0, ';' }},
+       {0x0443, 0x7C43, 257, 130, 9333, 9344, 9370, 4639, 4643, 4621, 9394, {38146, 0, 0, 0}, 172, 172, { 1254, 500, 10029, 857, 0, ';' }},
+       {0x0445, 0x0045, 257, 56, 9397, 9403, 9418, 4673, 4677, 4647, 8944, {38164, 0, 0, 0}, 173, 173, { 0, 500, 2, 1, 0, ',' }},
+       {0x0447, 0x0047, 257, 56, 9449, 9455, 9472, 4753, 4757, 4719, 8944, {38282, 0, 0, 0}, 174, 174, { 0, 500, 2, 1, 0, ',' }},
+       {0x0448, 0x0048, 257, 56, 9509, 9515, 9528, 4785, 4789, 4761, 8944, {0, 0, 0, 0}, 175, 175, { 0, 500, 2, 1, 0, ',' }},
+       {0x0449, 0x0049, 257, 56, 9559, 9565, 9579, 4818, 4822, 4793, 8944, {38338, 0, 0, 0}, 176, 176, { 0, 500, 2, 1, 0, ',' }},
+       {0x044A, 0x004A, 257, 56, 9619, 9625, 9640, 4855, 4859, 4826, 8944, {38403, 0, 0, 0}, 177, 177, { 0, 500, 2, 1, 0, ',' }},
+       {0x044B, 0x004B, 257, 56, 9687, 9693, 9709, 4887, 4891, 1749, 8944, {38468, 0, 0, 0}, 178, 178, { 0, 500, 2, 1, 0, ',' }},
+       {0x044C, 0x004C, 257, 56, 9740, 9746, 9764, 4927, 4931, 4895, 8944, {38533, 0, 0, 0}, 179, 179, { 0, 500, 2, 1, 0, ',' }},
+       {0x044D, 0x004D, 257, 56, 9804, 9810, 9827, 4969, 4973, 4935, 8944, {38577, 0, 0, 0}, 180, 180, { 0, 500, 2, 1, 0, ',' }},
+       {0x044E, 0x004E, 257, 56, 9864, 9870, 9886, 5004, 5008, 4977, 8944, {38630, 0, 0, 0}, 181, 181, { 0, 500, 2, 1, 0, ',' }},
+       {0x0450, 0x7850, 257, 85, 9917, 9923, 9944, 9972, 5042, 5012, 9976, {38692, 0, 0, 0}, 182, 182, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0451, 0x0051, 257, 25, 9979, 9985, 10001, 5082, 5086, 5046, 10047, {0, 0, 0, 0}, 183, 183, { 0, 500, 2, 1, 0, ',' }},
+       {0x0452, 0x0052, 257, 43, 10050, 10056, 10079, 5107, 5111, 5090, 10106, {38724, 0, 0, 0}, 184, 184, { 1252, 20285, 10000, 850, 0, ';' }},
+       {0x0453, 0x0053, 257, 66, 10109, 10115, 10132, 5140, 5144, 5115, 10172, {38740, 0, 0, 0}, 185, 185, { 0, 500, 2, 1, 0, ',' }},
+       {0x0454, 0x0054, 257, 70, 10175, 10181, 10192, 5165, 5169, 5148, 10214, {38795, 0, 0, 0}, 186, 186, { 0, 500, 2, 1, 0, ';' }},
+       {0x0455, 0x0055, 257, 84, 10217, 10223, 10249, 5203, 5207, 5173, 10289, {38841, 0, 0, 0}, 187, 187, { 0, 500, 2, 1, 0, ';' }},
+       {0x0456, 0x0056, 257, 38, 10292, 10298, 10315, 5230, 5234, 5211, 6290, {36899, 0, 0, 0}, 188, 188, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0457, 0x0057, 257, 56, 10332, 10339, 10355, 5269, 5238, 5238, 8944, {0, 0, 0, 0}, 189, 189, { 0, 500, 2, 1, 0, ',' }},
+       {0x045B, 0x005B, 257, 73, 10389, 10395, 10415, 5300, 5304, 5273, 10465, {38912, 0, 0, 0}, 190, 190, { 0, 500, 2, 1, 0, ';' }},
+       {0x045E, 0x005E, 257, 39, 10468, 10474, 10493, 5356, 5360, 5, 10524, {39017, 0, 0, 0}, 191, 191, { 0, 500, 2, 1, 0, ';' }},
+       {0x0461, 0x0061, 257, 94, 10527, 10533, 10548, 5448, 5452, 5419, 10585, {39065, 0, 0, 0}, 192, 192, { 0, 500, 2, 1, 0, ',' }},
+       {0x0462, 0x0062, 257, 92, 10588, 10594, 10624, 5486, 5490, 5456, 7012, {39115, 0, 0, 0}, 193, 193, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0463, 0x0063, 1024, 1, 10647, 10653, 10674, 5513, 5517, 5494, 10704, {0, 0, 0, 0}, 194, 194, { 0, 500, 2, 1, 1, ';' }},
+       {0x0464, 0x0064, 257, 99, 10707, 10714, 10737, 5534, 5521, 5521, 10758, {39138, 0, 0, 0}, 195, 195, { 1252, 500, 10000, 437, 0, ';' }},
+       {0x0468, 0x7C68, 257, 90, 10761, 10772, 10795, 5571, 5575, 5562, 10812, {0, 0, 0, 0}, 196, 196, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x046A, 0x006A, 257, 90, 10815, 10821, 10838, 5604, 5608, 5579, 10812, {0, 0, 0, 0}, 197, 197, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x046C, 0x006C, 257, 134, 10884, 10891, 5631, 5648, 5612, 5612, 8561, {0, 0, 0, 0}, 198, 198, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x046E, 0x006E, 257, 75, 10921, 10927, 10954, 5685, 5689, 5652, 10984, {39162, 0, 0, 0}, 199, 199, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x046F, 0x006F, 257, 45, 10987, 10993, 11017, 5720, 5724, 5693, 11048, {39186, 0, 0, 0}, 200, 200, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0470, 0x0070, 257, 90, 11051, 11057, 11057, 5736, 5740, 5728, 10812, {0, 0, 0, 0}, 201, 201, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x0472, 0x0072, 257, 39, 11072, 11078, 11095, 5760, 5764, 5744, 10524, {0, 0, 0, 0}, 202, 202, { 0, 500, 2, 1, 0, ';' }},
+       {0x0473, 0x0073, 257, 39, 11115, 11121, 11141, 11172, 5797, 5768, 10524, {0, 0, 0, 0}, 203, 203, { 0, 500, 2, 1, 0, ';' }},
+       {0x0475, 0x0075, 257, 128, 11176, 11183, 11208, 5832, 5801, 5801, 6582, {0, 0, 0, 0}, 204, 204, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x0477, 0x0077, 257, 117, 11251, 11257, 11274, 5855, 5859, 5836, 11296, {0, 0, 0, 0}, 205, 205, { 0, 500, 2, 1, 0, ';' }},
+       {0x0478, 0x0078, 257, 25, 11299, 11305, 11324, 5887, 5891, 5863, 10047, {39213, 0, 0, 0}, 206, 206, { 0, 500, 2, 1, 0, ';' }},
+       {0x047E, 0x007E, 257, 42, 11343, 11349, 11365, 5915, 5919, 5895, 6667, {39226, 0, 0, 0}, 207, 207, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0480, 0x0080, 257, 25, 11384, 11390, 11405, 5950, 5954, 5923, 10047, {39246, 0, 0, 0}, 208, 208, { 1256, 20420, 10004, 720, 1, ',' }},
+       {0x0484, 0x0084, 257, 42, 11435, 11442, 11464, 5994, 5958, 5958, 6667, {39282, 0, 0, 0}, 209, 209, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0485, 0x0085, 257, 109, 11496, 11503, 11518, 6026, 5998, 5998, 7311, {0, 0, 0, 0}, 210, 210, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0487, 0x0087, 257, 110, 11557, 11563, 11563, 6045, 6049, 6030, 11584, {0, 0, 0, 0}, 211, 211, { 1252, 37, 10000, 437, 0, ';' }},
+       {0x0491, 0x0091, 257, 43, 11587, 11593, 11626, 6082, 6086, 6053, 10106, {39307, 0, 0, 0}, 212, 212, { 1252, 20285, 10000, 850, 0, ';' }},
+       {0x0801, 0x0001, 257, 57, 11662, 11668, 11682, 11712, 2647, 2618, 11716, {39339, 0, 0, 0}, 213, 213, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0803, 0x0403, 257, 38, 11719, 6256, 6272, 11734, 2714, 2691, 6290, {36739, 0, 0, 0}, 214, 214, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0804, 0x0004, 257, 25, 11738, 2726, 11744, 2754, 2758, 2762, 10047, {36759, 0, 0, 0}, 215, 215, { 936, 500, 10008, 936, 0, ',' }},
+       {0x0807, 0x0007, 257, 21, 11760, 11766, 11787, 11805, 2873, 2851, 300, {36813, 0, 0, 0}, 216, 216, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x0809, 0x0009, 257, 43, 11809, 11815, 11815, 11840, 2926, 2911, 10106, {36880, 0, 0, 0}, 217, 217, { 1252, 20285, 10000, 850, 0, ',' }},
+       {0x080A, 0x000A, 257, 88, 11844, 11850, 11867, 11886, 2954, 2930, 11890, {37041, 0, 0, 0}, 218, 218, { 1252, 20284, 10000, 850, 0, ',' }},
+       {0x080C, 0x000C, 257, 10, 11893, 11899, 11916, 11937, 3007, 2983, 11941, {36946, 0, 0, 0}, 219, 219, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0810, 0x0010, 257, 21, 11944, 11950, 11972, 11992, 3123, 3099, 300, {37041, 0, 0, 0}, 220, 220, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0813, 0x0013, 257, 10, 11996, 12002, 12018, 12039, 3209, 3185, 11941, {37097, 0, 0, 0}, 221, 221, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0814, 0x7814, 257, 93, 12043, 12049, 12076, 12092, 12096, 12100, 7070, {36792, 0, 0, 0}, 222, 222, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x0816, 0x0016, 257, 103, 12103, 12109, 12131, 430, 3297, 3268, 12153, {39371, 0, 0, 0}, 223, 223, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0818, 0x0018, 257, 80, 12156, 12162, 12181, 12210, 3355, 3330, 12214, {37186, 0, 0, 0}, 224, 224, { 1250, 500, 2, 852, 0, ';' }},
+       {0x0819, 0x0019, 257, 80, 12217, 12223, 12241, 12273, 3389, 3359, 12214, {37205, 0, 0, 0}, 225, 225, { 1251, 500, 2, 866, 0, ';' }},
+       {0x081D, 0x001D, 257, 40, 12277, 12283, 12301, 12319, 3501, 3478, 6623, {36792, 0, 0, 0}, 226, 226, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x0820, 0x0020, 257, 56, 12323, 12329, 12342, 12364, 3580, 3559, 8944, {37362, 0, 0, 0}, 227, 227, { 1256, 500, 2, 720, 1, ';' }},
+       {0x082C, 0x742C, 257, 7, 12368, 12379, 8321, 12414, 3986, 3955, 8347, {37652, 0, 0, 0}, 228, 228, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x082E, 0x7C2E, 257, 30, 12418, 12425, 12449, 12475, 12479, 12479, 6493, {39394, 0, 0, 0}, 229, 229, { 1252, 870, 10000, 850, 0, ';' }},
+       {0x0832, 0x0032, 257, 16, 12483, 12489, 4170, 12507, 4183, 4160, 12511, {0, 0, 0, 0}, 230, 230, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x083B, 0x003B, 257, 112, 12514, 12520, 12543, 12571, 4428, 4390, 7500, {37964, 0, 0, 0}, 231, 231, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x083C, 0x003C, 257, 54, 12575, 12581, 12597, 4449, 4453, 4432, 12613, {37983, 0, 0, 0}, 232, 232, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x083E, 0x003E, 257, 13, 12616, 12622, 12637, 12660, 4484, 4457, 12664, {38004, 0, 0, 0}, 233, 233, { 1252, 500, 10000, 850, 0, ';' }},
+       {0x0843, 0x7843, 257, 130, 12667, 12678, 9370, 12707, 4643, 4621, 9394, {39417, 0, 0, 0}, 234, 234, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x0845, 0x0045, 257, 9, 12711, 12717, 12737, 12780, 4677, 4647, 12784, {38164, 0, 0, 0}, 235, 235, { 0, 500, 2, 1, 0, ',' }},
+       {0x0846, 0x7C46, 257, 100, 12787, 12798, 12825, 12871, 4715, 4681, 7644, {38235, 0, 0, 0}, 236, 236, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0849, 0x0049, 257, 73, 12875, 12881, 12899, 12936, 4822, 4793, 10465, {38338, 0, 0, 0}, 237, 237, { 0, 500, 2, 1, 0, ';' }},
+       {0x0861, 0x0061, 257, 56, 12940, 12946, 12961, 12995, 5452, 5419, 8944, {39065, 0, 0, 0}, 238, 238, { 0, 500, 2, 1, 0, ';' }},
+       {0x0873, 0x0073, 257, 37, 12999, 13005, 13024, 5793, 5797, 5768, 13052, {0, 0, 0, 0}, 239, 239, { 0, 500, 2, 1, 0, ';' }},
+       {0x0C01, 0x0001, 257, 36, 13055, 13061, 13076, 13100, 2647, 2618, 13104, {39339, 0, 0, 0}, 240, 240, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x0C04, 0x7C04, 257, 48, 13107, 13113, 13156, 13193, 2758, 2762, 13197, {39332, 0, 0, 0}, 241, 241, { 950, 500, 10002, 950, 0, ',' }},
+       {0x0C07, 0x0007, 257, 5, 13200, 13206, 13223, 13245, 2873, 2851, 13249, {36813, 0, 0, 0}, 242, 242, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x0C09, 0x0009, 257, 6, 13252, 13258, 13258, 13278, 2926, 2911, 13282, {36880, 0, 0, 0}, 243, 243, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x0C0A, 0x000A, 257, 38, 13285, 13291, 13307, 13326, 2954, 2930, 6290, {36899, 0, 0, 0}, 244, 244, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x0C0C, 0x000C, 257, 19, 13330, 13336, 13352, 13371, 3007, 2983, 13375, {36946, 0, 0, 0}, 245, 245, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x0C3B, 0x003B, 257, 40, 13378, 13384, 13408, 13434, 4428, 4390, 6623, {39455, 0, 0, 0}, 246, 246, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x1001, 0x0001, 257, 77, 13438, 13444, 13459, 13487, 2647, 2618, 13491, {39339, 0, 0, 0}, 247, 247, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x1004, 0x0004, 257, 113, 13494, 13500, 13532, 13551, 2758, 2762, 13555, {36759, 0, 0, 0}, 248, 248, { 936, 500, 10008, 936, 0, ',' }},
+       {0x1007, 0x0007, 257, 75, 13558, 13564, 13584, 13604, 2873, 2851, 10984, {36813, 0, 0, 0}, 249, 249, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x1009, 0x0009, 257, 19, 13608, 13614, 13614, 13631, 2926, 2911, 13375, {36880, 0, 0, 0}, 250, 250, { 1252, 37, 10000, 850, 0, ',' }},
+       {0x100A, 0x000A, 257, 47, 13635, 13641, 13661, 13682, 2954, 2930, 13686, {36899, 0, 0, 0}, 251, 251, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x100C, 0x000C, 257, 21, 13689, 13695, 13716, 13735, 3007, 2983, 300, {36946, 0, 0, 0}, 252, 252, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x101A, 0x001A, 257, 8, 13739, 13745, 13777, 13808, 3418, 3393, 13812, {37251, 0, 0, 0}, 253, 253, { 1250, 870, 10082, 852, 0, ';' }},
+       {0x1401, 0x0001, 257, 33, 13815, 13821, 13838, 13870, 2647, 2618, 13874, {39339, 0, 0, 0}, 254, 254, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x1404, 0x7C04, 257, 86, 13877, 13883, 13922, 13959, 2758, 2762, 13963, {39332, 0, 0, 0}, 255, 255, { 950, 500, 10002, 950, 0, ',' }},
+       {0x1407, 0x0007, 257, 72, 13966, 13972, 13995, 14019, 2873, 2851, 14023, {36813, 0, 0, 0}, 256, 256, { 1252, 20273, 10000, 850, 0, ';' }},
+       {0x1409, 0x0009, 257, 95, 14026, 14032, 14032, 14054, 2926, 2911, 14058, {36880, 0, 0, 0}, 257, 257, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x140A, 0x000A, 257, 27, 14061, 14067, 14088, 14110, 2954, 2930, 14114, {36899, 0, 0, 0}, 258, 258, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x140C, 0x000C, 257, 75, 14117, 14123, 14143, 14166, 3007, 2983, 10984, {36946, 0, 0, 0}, 259, 259, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x141A, 0x681A, 257, 8, 14170, 14181, 14219, 14250, 14254, 14258, 13812, {37251, 0, 0, 0}, 260, 260, { 1250, 870, 10082, 852, 0, ';' }},
+       {0x1801, 0x0001, 257, 78, 14261, 14267, 14284, 14314, 2647, 2618, 14318, {39339, 0, 0, 0}, 261, 261, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x1809, 0x0009, 257, 54, 14321, 14327, 14327, 14345, 2926, 2911, 12613, {36880, 0, 0, 0}, 262, 262, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x180A, 0x000A, 257, 97, 14349, 14355, 14372, 14391, 2954, 2930, 14395, {36899, 0, 0, 0}, 263, 263, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x180C, 0x000C, 257, 79, 14398, 14404, 14420, 14439, 3007, 2983, 14443, {36946, 0, 0, 0}, 264, 264, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x181A, 0x701A, 257, 8, 14446, 14457, 14495, 14547, 14551, 14555, 13812, {37251, 0, 0, 0}, 265, 265, { 1250, 870, 10082, 852, 0, ';' }},
+       {0x1C01, 0x0001, 257, 123, 14558, 14564, 14581, 14607, 2647, 2618, 14611, {39339, 0, 0, 0}, 266, 266, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x1C09, 0x0009, 257, 134, 14614, 14620, 14620, 14643, 2926, 2911, 8561, {36880, 0, 0, 0}, 267, 267, { 1252, 500, 10000, 437, 0, ',' }},
+       {0x1C0A, 0x000A, 257, 32, 14647, 14653, 14682, 14715, 2954, 2930, 14719, {36899, 0, 0, 0}, 268, 268, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x1C1A, 0x6C1A, 257, 8, 14722, 14733, 14495, 14774, 14551, 14555, 13812, {39477, 0, 0, 0}, 269, 269, { 1251, 21025, 10007, 855, 0, ';' }},
+       {0x2001, 0x0001, 257, 96, 14778, 14784, 14798, 14826, 2647, 2618, 14830, {39339, 0, 0, 0}, 270, 270, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x2009, 0x0009, 257, 61, 14833, 14839, 14839, 14857, 2926, 2911, 14861, {36880, 0, 0, 0}, 271, 271, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x200A, 0x000A, 257, 131, 14864, 14870, 14890, 14911, 2954, 2930, 14915, {36899, 0, 0, 0}, 272, 272, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x200C, 0x000C, 257, 106, 14918, 14924, 14942, 14966, 3007, 2983, 14970, {36946, 0, 0, 0}, 273, 273, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x201A, 0x641A, 257, 8, 14973, 14984, 14219, 15025, 14254, 14258, 13812, {37712, 0, 0, 0}, 274, 274, { 1251, 870, 10082, 855, 0, ';' }},
+       {0x2401, 0x0001, 257, 133, 15029, 15035, 15050, 15078, 2647, 2618, 15082, {39339, 0, 0, 0}, 275, 275, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x240A, 0x000A, 257, 26, 15085, 15091, 15110, 15130, 2954, 2930, 15134, {36899, 0, 0, 0}, 276, 276, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x240C, 0x000C, 257, 20, 15137, 15143, 15169, 15196, 3007, 2983, 15200, {36946, 0, 0, 0}, 277, 277, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x241A, 0x701A, 257, 108, 15203, 15214, 15238, 15266, 14551, 14555, 15270, {37251, 0, 0, 0}, 278, 278, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x243B, 0x703B, 257, 40, 15273, 15280, 15301, 15325, 15329, 15329, 6623, {0, 0, 0, 0}, 279, 279, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x2801, 0x0001, 257, 119, 15333, 15339, 15354, 15382, 2647, 2618, 15386, {39339, 0, 0, 0}, 280, 280, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x2809, 0x0009, 257, 18, 15389, 15395, 15395, 15412, 2926, 2911, 15416, {36880, 0, 0, 0}, 281, 281, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x280A, 0x000A, 257, 98, 15419, 15425, 15440, 15457, 2954, 2930, 15461, {36899, 0, 0, 0}, 282, 282, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x280C, 0x000C, 257, 116, 15464, 15470, 15487, 15509, 3007, 2983, 15513, {36946, 0, 0, 0}, 283, 283, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x281A, 0x6C1A, 257, 108, 15516, 15527, 15238, 15554, 14551, 14555, 15270, {39477, 0, 0, 0}, 284, 284, { 1251, 21025, 10007, 855, 0, ';' }},
+       {0x2C01, 0x0001, 257, 62, 15558, 15564, 15580, 15610, 2647, 2618, 15614, {39339, 0, 0, 0}, 285, 285, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x2C09, 0x0009, 257, 125, 15617, 15623, 15623, 15651, 2926, 2911, 15655, {36880, 0, 0, 0}, 286, 286, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x2C0A, 0x000A, 257, 4, 15658, 15664, 15684, 15705, 2954, 2930, 15709, {36899, 0, 0, 0}, 287, 287, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x2C0C, 0x000C, 257, 24, 15712, 15718, 15736, 15757, 3007, 2983, 15761, {36946, 0, 0, 0}, 288, 288, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x2C1A, 0x701A, 257, 81, 15764, 15775, 15803, 15836, 14551, 14555, 15840, {37251, 0, 0, 0}, 289, 289, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x3001, 0x0001, 257, 71, 15843, 15849, 15866, 15894, 2647, 2618, 15898, {39339, 0, 0, 0}, 290, 290, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x3009, 0x0009, 257, 135, 15901, 15907, 15907, 15926, 2926, 2911, 15930, {36880, 0, 0, 0}, 291, 291, { 1252, 500, 10000, 437, 0, ',' }},
+       {0x300A, 0x000A, 257, 34, 15933, 15939, 15957, 15976, 2954, 2930, 15980, {36899, 0, 0, 0}, 292, 292, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x300C, 0x000C, 257, 22, 15983, 15989, 16015, 16044, 3007, 2983, 16048, {36946, 0, 0, 0}, 293, 293, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x301A, 0x6C1A, 257, 81, 16051, 16062, 15803, 16093, 14551, 14555, 15840, {39477, 0, 0, 0}, 294, 294, { 1251, 21025, 10007, 855, 0, ';' }},
+       {0x3401, 0x0001, 257, 68, 16097, 16103, 16119, 16149, 2647, 2618, 16153, {39339, 0, 0, 0}, 295, 295, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x3409, 0x0009, 257, 99, 16156, 16162, 16162, 16184, 2926, 2911, 10758, {36880, 0, 0, 0}, 296, 296, { 1252, 500, 10000, 437, 0, ',' }},
+       {0x340A, 0x000A, 257, 23, 16188, 16194, 16210, 16227, 2954, 2930, 16231, {36899, 0, 0, 0}, 297, 297, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x340C, 0x000C, 257, 83, 16234, 16240, 16254, 16271, 3007, 2983, 16275, {36946, 0, 0, 0}, 298, 298, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x3801, 0x0001, 257, 0, 16278, 16284, 16314, 16378, 2647, 2618, 16382, {39339, 0, 0, 0}, 299, 299, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x380A, 0x000A, 257, 129, 16385, 16391, 16409, 16428, 2954, 2930, 16432, {36899, 0, 0, 0}, 300, 300, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x380C, 0x000C, 257, 78, 16435, 16441, 16458, 16476, 3007, 2983, 14318, {36946, 0, 0, 0}, 301, 301, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x3C01, 0x0001, 257, 12, 16480, 16486, 16503, 16535, 2647, 2618, 16539, {39339, 0, 0, 0}, 302, 302, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x3C09, 0x0009, 257, 48, 16542, 16548, 16548, 16578, 2926, 2911, 13197, {36880, 0, 0, 0}, 303, 303, { 1252, 500, 10000, 850, 0, ',' }},
+       {0x3C0A, 0x000A, 257, 104, 16582, 16588, 16607, 16627, 2954, 2930, 16631, {36899, 0, 0, 0}, 304, 304, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x3C0C, 0x000C, 257, 51, 16634, 16640, 16655, 16674, 3007, 2983, 16678, {36946, 0, 0, 0}, 305, 305, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x4001, 0x0001, 257, 105, 16681, 16687, 16702, 16726, 2647, 2618, 16730, {39339, 0, 0, 0}, 306, 306, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x4009, 0x0009, 257, 56, 16733, 16739, 16739, 16755, 2926, 2911, 8944, {36880, 0, 0, 0}, 307, 307, { 1252, 37, 10000, 437, 0, ',' }},
+       {0x400A, 0x000A, 257, 14, 16759, 16765, 16783, 16802, 2954, 2930, 16806, {36899, 0, 0, 0}, 308, 308, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x4409, 0x0009, 257, 89, 16809, 16815, 16815, 16834, 2926, 2911, 9088, {36880, 0, 0, 0}, 309, 309, { 1252, 37, 10000, 437, 0, ',' }},
+       {0x440A, 0x000A, 257, 118, 16838, 16844, 16866, 16889, 2954, 2930, 16893, {36899, 0, 0, 0}, 310, 310, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x4809, 0x0009, 257, 113, 16896, 16902, 16902, 16922, 2926, 2911, 13555, {36880, 0, 0, 0}, 311, 311, { 1252, 37, 10000, 437, 0, ',' }},
+       {0x480A, 0x000A, 257, 49, 16926, 16932, 16951, 16971, 2954, 2930, 16975, {36899, 0, 0, 0}, 312, 312, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x4C0A, 0x000A, 257, 91, 16978, 16984, 17004, 17025, 2954, 2930, 17029, {36899, 0, 0, 0}, 313, 313, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x500A, 0x000A, 257, 102, 17032, 17038, 17060, 17083, 2954, 2930, 17087, {36899, 0, 0, 0}, 314, 314, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x540A, 0x000A, 257, 128, 17090, 17096, 17120, 17146, 2954, 2930, 6582, {36899, 0, 0, 0}, 315, 315, { 1252, 20284, 10000, 850, 0, ',' }},
+       {0x5C0A, 0x000A, 257, 28, 17150, 17156, 17171, 17187, 2954, 2930, 17191, {36899, 0, 0, 0}, 316, 316, { 1252, 20284, 10000, 850, 0, ';' }},
+       {0x641A, 0x781A, 257, -1, 17194, 17202, 17221, 15025, 14254, 14258, 0, {37712, 0, 0, 0}, 317, 317, { 1251, 870, 10082, 855, 0, ';' }},
+       {0x681A, 0x781A, 257, -1, 17230, 17238, 17221, 14250, 14254, 14258, 0, {37251, 0, 0, 0}, 318, 318, { 1250, 870, 10082, 852, 0, ';' }},
+       {0x6C1A, 0x7C1A, 257, -1, 17254, 17262, 17281, 15554, 14551, 14555, 0, {39477, 0, 0, 0}, 319, 319, { 1251, 21025, 10007, 855, 0, ';' }},
+       {0x701A, 0x7C1A, 257, -1, 17294, 17302, 17281, 15266, 14551, 14555, 0, {37251, 0, 0, 0}, 320, 320, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x703B, 0x003B, 257, -1, 15329, 17318, 17329, 15325, 15329, 15329, 0, {0, 0, 0, 0}, 321, 321, { 1252, 20278, 10000, 850, 0, ';' }},
+       {0x742C, 0x002C, 257, -1, 17344, 17352, 3970, 12414, 3986, 3955, 0, {37652, 0, 0, 0}, 322, 322, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x7804, 0x007F, 257, -1, 2762, 2726, 2747, 2754, 2758, 2762, 0, {36759, 0, 0, 0}, 323, 323, { 936, 500, 10008, 936, 0, ',' }},
+       {0x7814, 0x0014, 257, -1, 12100, 17375, 17393, 12092, 12096, 12100, 0, {36792, 0, 0, 0}, 324, 324, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x781A, 0x007F, 257, -1, 14258, 17401, 17221, 14250, 14254, 14258, 0, {37251, 0, 0, 0}, 325, 325, { 1250, 870, 10082, 852, 0, ';' }},
+       {0x782C, 0x002C, 257, -1, 17409, 17417, 3970, 3982, 3986, 3955, 0, {37652, 0, 0, 0}, 326, 326, { 1254, 20905, 10081, 857, 0, ';' }},
+       {0x7843, 0x0043, 257, -1, 17437, 17445, 4630, 12707, 4643, 4621, 0, {39417, 0, 0, 0}, 327, 327, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x7850, 0x0050, 257, -1, 17462, 17470, 5025, 9972, 5042, 5012, 0, {38692, 0, 0, 0}, 328, 328, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x7C04, 0x7804, 257, -1, 17491, 6299, 2747, 6337, 2758, 2762, 0, {39332, 0, 0, 0}, 329, 329, { 950, 500, 10002, 950, 0, ',' }},
+       {0x7C04, 0x7C04, 257, -1, 17499, 17506, 2747, 6337, 2758, 2762, 0, {39332, 0, 0, 0}, 330, 330, { 950, 500, 10002, 950, 0, ',' }},
+       {0x7C14, 0x0014, 257, -1, 3240, 17535, 17553, 3232, 3236, 3240, 0, {36792, 0, 0, 0}, 331, 331, { 1252, 20277, 10000, 850, 0, ';' }},
+       {0x7C1A, 0x007F, 257, -1, 14555, 17567, 17281, 17575, 14551, 14555, 0, {39477, 0, 0, 0}, 332, 332, { 1250, 500, 10029, 852, 0, ';' }},
+       {0x7C28, 0x0028, 257, -1, 17579, 17587, 3832, 3845, 3849, 3823, 0, {0, 0, 0, 0}, 333, 333, { 1251, 20880, 10007, 866, 0, ';' }},
+       {0x7C2E, 0x002E, 257, -1, 12479, 17604, 17618, 12475, 12479, 12479, 0, {39394, 0, 0, 0}, 334, 334, { 1252, 870, 10000, 850, 0, ';' }},
+       {0x7C43, 0x0043, 257, -1, 17635, 17643, 4630, 4639, 4643, 4621, 0, {38146, 0, 0, 0}, 335, 335, { 1254, 500, 10029, 857, 0, ';' }},
+       {0x7C46, 0x0046, 257, -1, 17657, 17665, 4692, 12871, 4715, 4681, 0, {38235, 0, 0, 0}, 336, 336, { 1256, 20420, 10004, 720, 1, ';' }},
+       {0x7C5F, 0x005F, 257, -1, 17682, 17691, 5392, 5415, 5364, 5364, 0, {0, 0, 0, 0}, 337, 337, { 1252, 20297, 10000, 850, 0, ';' }},
+       {0x7C68, 0x0068, 257, -1, 17723, 17731, 5565, 5571, 5575, 5562, 0, {0, 0, 0, 0}, 338, 338, { 1252, 37, 10000, 437, 0, ';' }}
 };
 
 
 static const CultureInfoNameEntry culture_name_entries [] = {
-       {40670, 50},     /* af */
-       {52906, 144},    /* af-za */
-       {8022, 80},      /* am */
-       {52912, 168},    /* am-et */
-       {38068, 0},      /* ar */
-       {52918, 249},    /* ar-ae */
-       {52924, 251},    /* ar-bh */
-       {52930, 211},    /* ar-dz */
-       {52936, 197},    /* ar-eg */
-       {52942, 182},    /* ar-iq */
-       {52948, 238},    /* ar-jo */
-       {52954, 246},    /* ar-kw */
-       {52960, 242},    /* ar-lb */
-       {52966, 204},    /* ar-ly */
-       {52972, 218},    /* ar-ma */
-       {52978, 227},    /* ar-om */
-       {52984, 253},    /* ar-qa */
-       {52990, 96},     /* ar-sa */
-       {52996, 234},    /* ar-sy */
-       {53002, 223},    /* ar-tn */
-       {53008, 231},    /* ar-ye */
-       {42082, 70},     /* as */
-       {53014, 159},    /* as-in */
-       {40385, 44},     /* az */
-       {53020, 266},    /* az-cyrl */
-       {53028, 193},    /* az-cyrl-az */
-       {53039, 270},    /* az-latn */
-       {53047, 138},    /* az-latn-az */
-       {39897, 35},     /* be */
-       {53058, 129},    /* be-by */
-       {38129, 1},      /* bg */
-       {53064, 97},     /* bg-bg */
-       {41385, 62},     /* bn */
-       {53070, 196},    /* bn-bd */
-       {53076, 152},    /* bn-in */
-       {42336, 73},     /* bo */
-       {53082, 161},    /* bo-cn */
-       {43216, 91},     /* br */
-       {53088, 178},    /* br-fr */
-       {50060, 269},    /* bs */
-       {53094, 262},    /* bs-cyrl */
-       {53102, 230},    /* bs-cyrl-ba */
-       {53113, 263},    /* bs-latn */
-       {53121, 217},    /* bs-latn-ba */
-       {38211, 2},      /* ca */
-       {53132, 98},     /* ca-es */
-       {38347, 5},      /* cs */
-       {53138, 100},    /* cs-cz */
-       {42380, 74},     /* cy */
-       {53144, 162},    /* cy-gb */
-       {38400, 6},      /* da */
-       {53150, 101},    /* da-dk */
-       {38445, 7},      /* de */
-       {53156, 199},    /* de-at */
-       {53162, 184},    /* de-ch */
-       {53168, 102},    /* de-de */
-       {53174, 213},    /* de-li */
-       {53180, 206},    /* de-lu */
-       {38496, 8},      /* el */
-       {53186, 103},    /* el-gr */
-       {38572, 9},      /* en */
-       {53192, 200},    /* en-au */
-       {53198, 235},    /* en-bz */
-       {53204, 207},    /* en-ca */
-       {53210, 185},    /* en-gb */
-       {53216, 219},    /* en-ie */
-       {53222, 254},    /* en-in */
-       {53228, 228},    /* en-jm */
-       {53234, 214},    /* en-nz */
-       {53240, 247},    /* en-ph */
-       {53246, 257},    /* en-sg */
-       {53252, 239},    /* en-tt */
-       {53258, 104},    /* en-us */
-       {53264, 224},    /* en-za */
-       {53270, 243},    /* en-zw */
-       {38610, 10},     /* es */
-       {53276, 240},    /* es-ar */
-       {53282, 255},    /* es-bo */
-       {53288, 248},    /* es-cl */
-       {53294, 232},    /* es-co */
-       {53300, 215},    /* es-cr */
-       {53306, 225},    /* es-do */
-       {53312, 244},    /* es-ec */
-       {53318, 201},    /* es-es */
-       {53324, 208},    /* es-gt */
-       {53330, 258},    /* es-hn */
-       {53336, 186},    /* es-mx */
-       {53342, 259},    /* es-ni */
-       {53348, 220},    /* es-pa */
-       {53354, 236},    /* es-pe */
-       {53360, 260},    /* es-pr */
-       {53366, 252},    /* es-py */
-       {53372, 256},    /* es-sv */
-       {53378, 261},    /* es-us */
-       {53384, 250},    /* es-uy */
-       {53390, 229},    /* es-ve */
-       {40039, 37},     /* et */
-       {53396, 131},    /* et-ee */
-       {40439, 45},     /* eu */
-       {53402, 139},    /* eu-es */
-       {40218, 41},     /* fa */
-       {53408, 135},    /* fa-ir */
-       {38660, 11},     /* fi */
-       {53414, 105},    /* fi-fi */
-       {42963, 84},     /* fil */
-       {53420, 171},    /* fil-ph */
-       {40818, 52},     /* fo */
-       {53427, 146},    /* fo-fo */
-       {38710, 12},     /* fr */
-       {53433, 187},    /* fr-be */
-       {53439, 202},    /* fr-ca */
-       {53445, 209},    /* fr-ch */
-       {53451, 106},    /* fr-fr */
-       {53457, 216},    /* fr-lu */
-       {53463, 221},    /* fr-mc */
-       {41040, 56},     /* ga */
-       {53469, 194},    /* ga-ie */
-       {43384, 95},     /* gd */
-       {53475, 181},    /* gd-gb */
-       {42580, 77},     /* gl */
-       {53481, 165},    /* gl-es */
-       {43264, 92},     /* gsw */
-       {41570, 64},     /* gu */
-       {53487, 153},    /* gu-in */
-       {43003, 85},     /* ha */
-       {53493, 280},    /* ha-latn */
-       {53501, 172},    /* ha-latn-ng */
-       {38760, 13},     /* he */
-       {53512, 107},    /* he-il */
-       {40847, 53},     /* hi */
-       {53518, 147},    /* hi-in */
-       {39424, 26},     /* hr */
-       {53524, 210},    /* hr-ba */
-       {53530, 120},    /* hr-hr */
-       {38822, 14},     /* hu */
-       {53536, 108},    /* hu-hu */
-       {40320, 43},     /* hy */
-       {53542, 137},    /* hy-am */
-       {39751, 33},     /* id */
-       {53548, 127},    /* id-id */
-       {43155, 89},     /* ig */
-       {53554, 176},    /* ig-ng */
-       {43171, 90},     /* ii */
-       {53560, 177},    /* ii-cn */
-       {38866, 15},     /* is */
-       {53566, 109},    /* is-is */
-       {38917, 16},     /* it */
-       {53572, 188},    /* it-ch */
-       {53578, 110},    /* it-it */
-       {38967, 17},     /* ja */
-       {53584, 111},    /* ja-jp */
-       {40711, 51},     /* ka */
-       {53590, 145},    /* ka-ge */
-       {41134, 58},     /* kk */
-       {43093, 88},     /* kl */
-       {53596, 175},    /* kl-gl */
-       {42421, 75},     /* km */
-       {53602, 163},    /* km-kh */
-       {37319, 68},     /* kn */
-       {53608, 157},    /* kn-in */
-       {39024, 18},     /* ko */
-       {53614, 112},    /* ko-kr */
-       {42607, 78},     /* kok */
-       {53620, 166},    /* kok-in */
-       {41214, 59},     /* ky */
-       {42509, 76},     /* lo */
-       {53627, 164},    /* lo-la */
-       {40133, 39},     /* lt */
-       {53633, 133},    /* lt-lt */
-       {40085, 38},     /* lv */
-       {53639, 132},    /* lv-lv */
-       {40485, 46},     /* mk */
-       {53645, 140},    /* mk-mk */
-       {41998, 69},     /* ml */
-       {53651, 158},    /* ml-in */
-       {42270, 72},     /* mn */
-       {53657, 272},    /* mn-cyrl */
-       {42177, 71},     /* mr */
-       {53665, 160},    /* mr-in */
-       {41086, 57},     /* ms */
-       {40933, 54},     /* mt */
-       {53671, 148},    /* mt-mt */
-       {39139, 275},    /* nb */
-       {53677, 114},    /* nb-no */
-       {1883, 82},      /* ne */
-       {53683, 169},    /* ne-np */
-       {39062, 19},     /* nl */
-       {53689, 189},    /* nl-be */
-       {53695, 113},    /* nl-nl */
-       {48468, 268},    /* nn */
-       {53701, 190},    /* nn-no */
-       {39112, 20},     /* no */
-       {43053, 87},     /* nso */
-       {53707, 174},    /* nso-za */
-       {41668, 65},     /* or */
-       {53714, 154},    /* or-in */
-       {41485, 63},     /* pa */
-       {39142, 21},     /* pl */
-       {53720, 115},    /* pl-pl */
-       {42936, 83},     /* ps */
-       {53726, 170},    /* ps-af */
-       {39191, 22},     /* pt */
-       {53732, 116},    /* pt-br */
-       {53738, 191},    /* pt-pt */
-       {39247, 23},     /* rm */
-       {53744, 117},    /* rm-ch */
-       {39296, 24},     /* ro */
-       {53750, 118},    /* ro-ro */
-       {39344, 25},     /* ru */
-       {53756, 119},    /* ru-ru */
-       {43361, 94},     /* rw */
-       {53762, 180},    /* rw-rw */
-       {43329, 93},     /* sah */
-       {53768, 179},    /* sah-ru */
-       {40979, 55},     /* se */
-       {53775, 203},    /* se-fi */
-       {53781, 149},    /* se-no */
-       {42642, 79},     /* si */
-       {53787, 167},    /* si-lk */
-       {12674, 27},     /* sk */
-       {53793, 121},    /* sk-sk */
-       {39982, 36},     /* sl */
-       {53799, 130},    /* sl-si */
-       {39527, 28},     /* sq */
-       {53805, 122},    /* sq-al */
-       {50382, 276},    /* sr */
-       {53811, 264},    /* sr-cyrl */
-       {53819, 226},    /* sr-cyrl-ba */
-       {53830, 245},    /* sr-cyrl-me */
-       {53841, 237},    /* sr-cyrl-rs */
-       {53852, 265},    /* sr-latn */
-       {53860, 222},    /* sr-latn-ba */
-       {53871, 241},    /* sr-latn-me */
-       {53882, 233},    /* sr-latn-rs */
-       {39573, 29},     /* sv */
-       {53893, 192},    /* sv-fi */
-       {53899, 123},    /* sv-se */
-       {41287, 60},     /* sw */
-       {53905, 150},    /* sw-ke */
-       {41701, 66},     /* ta */
-       {53911, 155},    /* ta-in */
-       {41799, 67},     /* te */
-       {53917, 156},    /* te-in */
-       {40188, 40},     /* tg */
-       {53923, 277},    /* tg-cyrl */
-       {53931, 134},    /* tg-cyrl-tj */
-       {39600, 30},     /* th */
-       {53942, 124},    /* th-th */
-       {40572, 47},     /* tn */
-       {53948, 141},    /* tn-za */
-       {12683, 31},     /* tr */
-       {53954, 125},    /* tr-tr */
-       {42810, 81},     /* tzm */
-       {53960, 279},    /* tzm-latn */
-       {39809, 34},     /* uk */
-       {53969, 128},    /* uk-ua */
-       {39696, 32},     /* ur */
-       {53975, 126},    /* ur-pk */
-       {41337, 61},     /* uz */
-       {53981, 271},    /* uz-cyrl */
-       {53989, 195},    /* uz-cyrl-uz */
-       {54000, 278},    /* uz-latn */
-       {54008, 151},    /* uz-latn-uz */
-       {40272, 42},     /* vi */
-       {54019, 136},    /* vi-vn */
-       {40599, 48},     /* xh */
-       {54025, 142},    /* xh-za */
-       {43020, 86},     /* yo */
-       {54031, 173},    /* yo-ng */
-       {38308, 267},    /* zh */
-       {54037, 3},      /* zh-chs */
-       {54044, 274},    /* zh-cht */
-       {54051, 183},    /* zh-cn */
-       {54057, 4},      /* zh-hans */
-       {54065, 273},    /* zh-hant */
-       {54073, 198},    /* zh-hk */
-       {54079, 212},    /* zh-mo */
-       {54085, 205},    /* zh-sg */
-       {54091, 99},     /* zh-tw */
-       {40625, 49},     /* zu */
-       {54097, 143}     /* zu-za */
+       {4237, 53},      /* af */
+       {17745, 161},    /* af-za */
+       {5, 86},         /* am */
+       {17751, 191},    /* am-et */
+       {2618, 0},       /* ar */
+       {17757, 299},    /* ar-ae */
+       {17763, 302},    /* ar-bh */
+       {17769, 254},    /* ar-dz */
+       {17775, 240},    /* ar-eg */
+       {17781, 213},    /* ar-iq */
+       {17787, 285},    /* ar-jo */
+       {17793, 295},    /* ar-kw */
+       {17799, 290},    /* ar-lb */
+       {17805, 247},    /* ar-ly */
+       {17811, 261},    /* ar-ma */
+       {17817, 270},    /* ar-om */
+       {17823, 306},    /* ar-qa */
+       {17829, 110},    /* ar-sa */
+       {17835, 280},    /* ar-sy */
+       {17841, 266},    /* ar-tn */
+       {17847, 275},    /* ar-ye */
+       {4935, 74},      /* as */
+       {17853, 180},    /* as-in */
+       {3955, 44},      /* az */
+       {17859, 322},    /* az-cyrl */
+       {17867, 228},    /* az-cyrl-az */
+       {17878, 326},    /* az-latn */
+       {17886, 152},    /* az-latn-az */
+       {3658, 35},      /* be */
+       {17897, 143},    /* be-by */
+       {2651, 1},       /* bg */
+       {17903, 111},    /* bg-bg */
+       {4647, 66},      /* bn */
+       {17909, 235},    /* bn-bd */
+       {17915, 173},    /* bn-in */
+       {5046, 77},      /* bo */
+       {17921, 183},    /* bo-cn */
+       {5895, 104},     /* br */
+       {17927, 207},    /* br-fr */
+       {14258, 325},    /* bs */
+       {17933, 317},    /* bs-cyrl */
+       {17941, 274},    /* bs-cyrl-ba */
+       {17952, 318},    /* bs-latn */
+       {17960, 260},    /* bs-latn-ba */
+       {2691, 2},       /* ca */
+       {17971, 112},    /* ca-es */
+       {17977, 214},    /* ca-es-valencia */
+       {5308, 85},      /* chr */
+       {2800, 5},       /* cs */
+       {17992, 114},    /* cs-cz */
+       {5090, 78},      /* cy */
+       {17998, 184},    /* cy-gb */
+       {2827, 6},       /* da */
+       {18004, 115},    /* da-dk */
+       {2851, 7},       /* de */
+       {18010, 242},    /* de-at */
+       {18016, 216},    /* de-ch */
+       {18022, 116},    /* de-de */
+       {18028, 256},    /* de-li */
+       {18034, 249},    /* de-lu */
+       {12479, 334},    /* dsb */
+       {18040, 229},    /* dsb-de */
+       {2877, 8},       /* el */
+       {18047, 117},    /* el-gr */
+       {2911, 9},       /* en */
+       {18053, 243},    /* en-au */
+       {18059, 281},    /* en-bz */
+       {18065, 250},    /* en-ca */
+       {18071, 217},    /* en-gb */
+       {18077, 303},    /* en-hk */
+       {18083, 262},    /* en-ie */
+       {18089, 307},    /* en-in */
+       {18095, 271},    /* en-jm */
+       {18101, 309},    /* en-my */
+       {18107, 257},    /* en-nz */
+       {18113, 296},    /* en-ph */
+       {18119, 311},    /* en-sg */
+       {18125, 286},    /* en-tt */
+       {18131, 118},    /* en-us */
+       {18137, 267},    /* en-za */
+       {18143, 291},    /* en-zw */
+       {2930, 10},      /* es */
+       {18149, 287},    /* es-ar */
+       {18155, 308},    /* es-bo */
+       {18161, 297},    /* es-cl */
+       {18167, 276},    /* es-co */
+       {18173, 258},    /* es-cr */
+       {18179, 316},    /* es-cu */
+       {18185, 268},    /* es-do */
+       {18191, 292},    /* es-ec */
+       {18197, 244},    /* es-es */
+       {18203, 251},    /* es-gt */
+       {18209, 312},    /* es-hn */
+       {18215, 218},    /* es-mx */
+       {18221, 313},    /* es-ni */
+       {18227, 263},    /* es-pa */
+       {18233, 282},    /* es-pe */
+       {18239, 314},    /* es-pr */
+       {18245, 304},    /* es-py */
+       {18251, 310},    /* es-sv */
+       {18257, 315},    /* es-us */
+       {18263, 300},    /* es-uy */
+       {18269, 272},    /* es-ve */
+       {3736, 37},      /* et */
+       {18275, 145},    /* et-ee */
+       {3990, 45},      /* eu */
+       {18281, 153},    /* eu-es */
+       {3853, 41},      /* fa */
+       {18287, 149},    /* fa-ir */
+       {5538, 92},      /* ff */
+       {2958, 11},      /* fi */
+       {18293, 119},    /* fi-fi */
+       {5521, 91},      /* fil */
+       {18299, 195},    /* fil-ph */
+       {4300, 55},      /* fo */
+       {18306, 163},    /* fo-fo */
+       {2983, 12},      /* fr */
+       {18312, 219},    /* fr-be */
+       {18318, 245},    /* fr-ca */
+       {18324, 277},    /* fr-cd */
+       {18330, 252},    /* fr-ch */
+       {18336, 293},    /* fr-ci */
+       {18342, 288},    /* fr-cm */
+       {18348, 120},    /* fr-fr */
+       {18354, 305},    /* fr-ht */
+       {18360, 259},    /* fr-lu */
+       {18366, 301},    /* fr-ma */
+       {18372, 264},    /* fr-mc */
+       {18378, 298},    /* fr-ml */
+       {18384, 273},    /* fr-re */
+       {18390, 283},    /* fr-sn */
+       {5456, 89},      /* fy */
+       {18396, 193},    /* fy-nl */
+       {4432, 59},      /* ga */
+       {18402, 232},    /* ga-ie */
+       {6053, 109},     /* gd */
+       {18408, 212},    /* gd-gb */
+       {5211, 82},      /* gl */
+       {18414, 188},    /* gl-es */
+       {5958, 106},     /* gsw */
+       {18420, 209},    /* gsw-fr */
+       {4719, 68},      /* gu */
+       {18427, 174},    /* gu-in */
+       {5562, 93},      /* ha */
+       {18433, 338},    /* ha-latn */
+       {18441, 196},    /* ha-latn-ng */
+       {5801, 101},     /* haw */
+       {18452, 204},    /* haw-us */
+       {3011, 13},      /* he */
+       {18459, 121},    /* he-il */
+       {4329, 56},      /* hi */
+       {18465, 164},    /* hi-in */
+       {3393, 26},      /* hr */
+       {18471, 253},    /* hr-ba */
+       {18477, 134},    /* hr-hr */
+       {4016, 46},      /* hsb */
+       {18483, 154},    /* hsb-de */
+       {3040, 14},      /* hu */
+       {18490, 122},    /* hu-hu */
+       {3920, 43},      /* hy */
+       {18496, 151},    /* hy-am */
+       {3584, 33},      /* id */
+       {18502, 141},    /* id-id */
+       {5728, 98},      /* ig */
+       {18508, 201},    /* ig-ng */
+       {5863, 103},     /* ii */
+       {18514, 206},    /* ii-cn */
+       {3068, 15},      /* is */
+       {18520, 123},    /* is-is */
+       {3099, 16},      /* it */
+       {18526, 220},    /* it-ch */
+       {18532, 124},    /* it-it */
+       {3127, 17},      /* ja */
+       {18538, 125},    /* ja-jp */
+       {4258, 54},      /* ka */
+       {18544, 162},    /* ka-ge */
+       {4488, 61},      /* kk */
+       {18550, 168},    /* kk-kz */
+       {5693, 97},      /* kl */
+       {18556, 200},    /* kl-gl */
+       {5115, 79},      /* km */
+       {18562, 185},    /* km-kh */
+       {1749, 72},      /* kn */
+       {18568, 178},    /* kn-in */
+       {3157, 18},      /* ko */
+       {18574, 126},    /* ko-kr */
+       {5238, 83},      /* kok */
+       {18580, 189},    /* kok-in */
+       {4526, 62},      /* ky */
+       {18587, 169},    /* ky-kg */
+       {5652, 96},      /* lb */
+       {18593, 199},    /* lb-lu */
+       {5148, 80},      /* lo */
+       {18599, 186},    /* lo-la */
+       {3791, 39},      /* lt */
+       {18605, 147},    /* lt-lt */
+       {3762, 38},      /* lv */
+       {18611, 146},    /* lv-lv */
+       {4056, 47},      /* mk */
+       {18617, 155},    /* mk-mk */
+       {4895, 73},      /* ml */
+       {18623, 179},    /* ml-in */
+       {5012, 76},      /* mn */
+       {18629, 328},    /* mn-cyrl */
+       {18637, 182},    /* mn-mn */
+       {4977, 75},      /* mr */
+       {18643, 181},    /* mr-in */
+       {4457, 60},      /* ms */
+       {18649, 233},    /* ms-bn */
+       {18655, 167},    /* ms-my */
+       {4365, 57},      /* mt */
+       {18661, 165},    /* mt-mt */
+       {5173, 81},      /* my */
+       {18667, 187},    /* my-mm */
+       {3240, 331},     /* nb */
+       {18673, 128},    /* nb-no */
+       {5419, 88},      /* ne */
+       {18679, 238},    /* ne-in */
+       {18685, 192},    /* ne-np */
+       {3185, 19},      /* nl */
+       {18691, 221},    /* nl-be */
+       {18697, 127},    /* nl-nl */
+       {12100, 324},    /* nn */
+       {18703, 222},    /* nn-no */
+       {3213, 20},      /* no */
+       {5612, 95},      /* nso */
+       {18709, 198},    /* nso-za */
+       {5744, 99},      /* om */
+       {18716, 202},    /* om-et */
+       {4761, 69},      /* or */
+       {18722, 175},    /* or-in */
+       {4681, 67},      /* pa */
+       {18728, 336},    /* pa-arab */
+       {18736, 236},    /* pa-arab-pk */
+       {3243, 21},      /* pl */
+       {18747, 129},    /* pl-pl */
+       {5494, 90},      /* ps */
+       {18753, 194},    /* ps-af */
+       {3268, 22},      /* pt */
+       {18759, 130},    /* pt-br */
+       {18765, 223},    /* pt-pt */
+       {3301, 23},      /* rm */
+       {18771, 131},    /* rm-ch */
+       {3330, 24},      /* ro */
+       {18777, 224},    /* ro-md */
+       {18783, 132},    /* ro-ro */
+       {3359, 25},      /* ru */
+       {18789, 225},    /* ru-md */
+       {18795, 133},    /* ru-ru */
+       {6030, 108},     /* rw */
+       {18801, 211},    /* rw-rw */
+       {5998, 107},     /* sah */
+       {18807, 210},    /* sah-ru */
+       {4390, 58},      /* se */
+       {18814, 246},    /* se-fi */
+       {18820, 166},    /* se-no */
+       {18826, 231},    /* se-se */
+       {5273, 84},      /* si */
+       {18832, 190},    /* si-lk */
+       {3422, 27},      /* sk */
+       {18838, 135},    /* sk-sk */
+       {3701, 36},      /* sl */
+       {18844, 144},    /* sl-si */
+       {15329, 321},    /* smn */
+       {18850, 279},    /* smn-fi */
+       {5836, 102},     /* so */
+       {18857, 205},    /* so-so */
+       {3452, 28},      /* sq */
+       {18863, 136},    /* sq-al */
+       {14555, 332},    /* sr */
+       {18869, 319},    /* sr-cyrl */
+       {18877, 269},    /* sr-cyrl-ba */
+       {18888, 294},    /* sr-cyrl-me */
+       {18899, 284},    /* sr-cyrl-rs */
+       {18910, 320},    /* sr-latn */
+       {18918, 265},    /* sr-latn-ba */
+       {18929, 289},    /* sr-latn-me */
+       {18940, 278},    /* sr-latn-rs */
+       {4099, 48},      /* st */
+       {18951, 156},    /* st-za */
+       {3478, 29},      /* sv */
+       {18957, 226},    /* sv-fi */
+       {18963, 137},    /* sv-se */
+       {4561, 63},      /* sw */
+       {18969, 170},    /* sw-ke */
+       {4793, 70},      /* ta */
+       {18975, 176},    /* ta-in */
+       {18981, 237},    /* ta-lk */
+       {4826, 71},      /* te */
+       {18987, 177},    /* te-in */
+       {3823, 40},      /* tg */
+       {18993, 333},    /* tg-cyrl */
+       {19001, 148},    /* tg-cyrl-tj */
+       {3505, 30},      /* th */
+       {19012, 138},    /* th-th */
+       {5768, 100},     /* ti */
+       {19018, 239},    /* ti-er */
+       {19024, 203},    /* ti-et */
+       {4590, 64},      /* tk */
+       {19030, 171},    /* tk-tm */
+       {4160, 50},      /* tn */
+       {19036, 230},    /* tn-bw */
+       {19042, 158},    /* tn-za */
+       {3531, 31},      /* tr */
+       {19048, 139},    /* tr-tr */
+       {4133, 49},      /* ts */
+       {19054, 157},    /* ts-za */
+       {5364, 87},      /* tzm */
+       {19060, 337},    /* tzm-latn */
+       {5923, 105},     /* ug */
+       {19069, 208},    /* ug-cn */
+       {3616, 34},      /* uk */
+       {19075, 142},    /* uk-ua */
+       {3559, 32},      /* ur */
+       {19081, 227},    /* ur-in */
+       {19087, 140},    /* ur-pk */
+       {4621, 65},      /* uz */
+       {19093, 327},    /* uz-cyrl */
+       {19101, 234},    /* uz-cyrl-uz */
+       {19112, 335},    /* uz-latn */
+       {19120, 172},    /* uz-latn-uz */
+       {3883, 42},      /* vi */
+       {19131, 150},    /* vi-vn */
+       {4187, 51},      /* xh */
+       {19137, 159},    /* xh-za */
+       {5579, 94},      /* yo */
+       {19143, 197},    /* yo-ng */
+       {2762, 323},     /* zh */
+       {19149, 4},      /* zh-chs */
+       {19156, 330},    /* zh-cht */
+       {19163, 215},    /* zh-cn */
+       {19169, 3},      /* zh-hans */
+       {19177, 329},    /* zh-hant */
+       {19185, 241},    /* zh-hk */
+       {19191, 255},    /* zh-mo */
+       {19197, 248},    /* zh-sg */
+       {19203, 113},    /* zh-tw */
+       {4213, 52},      /* zu */
+       {19209, 160}     /* zu-za */
 };
 
 
 static const RegionInfoEntry region_entries [] = {
-       { 224,51826,48865,48865,54103,54124,38011,54171,54175,54203},
-       { 3,47503,54227,54227,54231,54243,37782,54262,54266,54281},
-       { 6,44819,54294,54294,54298,54306,37322,54316,54320,54333},
-       { 7,1820,50139,50139,54347,54355,37563,54372,54376,54390},
-       { 11,51317,49670,49670,54416,54416,37073,51040,54426,54441},
-       { 14,49014,54456,54456,54460,54468,36969,54480,54484,54484},
-       { 12,49047,54489,54489,54493,54493,37073,54503,54507,54507},
-       { 5,45717,40412,40412,54525,54536,37817,54548,54552,54570},
-       { 25,49612,54590,54590,54594,54617,37879,54637,54641,54677},
-       { 23,48817,54697,54697,54701,54712,37855,54737,54741,54758},
-       { 21,48309,39932,39932,54799,54807,36969,54480,54484,54816},
-       { 35,43603,38161,38161,54821,54830,36951,54847,54851,54865},
-       { 17,51938,54891,54891,54895,54903,38021,54918,54922,54937},
-       { 26,52118,54961,54961,54965,54965,38045,42372,54973,54992},
-       { 32,44523,55002,55002,55006,55013,37210,55020,55024,55039},
-       { 29,45205,55055,55055,55059,55067,37425,55084,55088,55105},
-       { 24,51074,55137,55137,55141,55141,37073,55148,55152,55152},
-       { 39,49140,55166,55166,55170,55170,37073,55177,55181,55197},
-       { 223,13632,55213,55213,55217,55229,37217,37217,55236,55248},
-       { 46,51719,55262,55262,55266,55266,37073,55272,55276,55289},
-       { 45,13711,55302,55302,55306,55312,36990,55331,55335,55348},
-       { 51,50918,55367,55367,55371,55371,37073,55380,55384,55399},
-       { 54,49914,55415,55415,55419,55419,37897,55430,55434,55453},
-       { 75,43766,55474,55474,55478,55493,36993,55511,55515,55537},
-       { 94,43856,38463,38463,55552,55560,36969,54480,54484,54484},
-       { 61,43808,55572,55572,55576,55584,37021,55592,55596,55609},
-       { 65,50546,55621,55621,55625,55644,37073,55666,55670,55685},
-       { 4,49674,55701,55701,55705,55713,37882,55728,55732,55747},
-       { 66,51536,55771,55771,55775,55775,37073,55783,55787,55797},
-       { 70,45303,52429,52429,55819,55827,36969,54480,54484,54816},
-       { 67,48869,55833,55833,55837,55843,37859,55850,55854,55869},
-       { 217,43646,38630,38630,55887,55893,36969,54480,54484,54816},
-       { 73,47382,55901,55901,55905,55914,37762,55930,55934,55949},
-       { 77,43986,38677,38677,55975,55983,36969,54480,54484,54816},
-       { 81,46134,55989,55989,55993,56007,37021,55592,55596,56016},
-       { 84,44030,38730,38730,56029,56029,36969,54480,54484,54816},
-       { 242,47039,56036,56036,56040,56055,37706,56072,56076,56099},
-       { 88,46080,56121,56121,56125,56133,0,56164,56168,56182},
-       { 93,47781,56217,56217,56221,56231,37021,55592,55596,56248},
-       { 98,43912,56268,56268,56272,56279,36969,54480,54484,56292},
-       { 99,49480,56301,56301,56305,56305,7920,56315,56319,56338},
-       { 104,48962,56359,56359,56363,56383,37073,56411,56415,56432},
-       { 106,52258,56439,56439,56443,56443,2308,56452,56456,56473},
-       { 108,44722,39445,39445,56492,56500,37319,56509,56513,56527},
-       { 109,44131,38842,38842,56541,56549,37128,56563,56567,56584},
-       { 111,45068,56598,56598,56602,56602,37401,56612,56616,56634},
-       { 68,48662,56651,56651,56655,56663,36969,54480,54484,54484},
-       { 117,44079,56669,56669,56673,56680,37119,56691,56695,56714},
-       { 113,46188,39782,39782,56721,56727,37642,56740,56744,56757},
-       { 121,48071,56792,56792,56796,56801,37828,56814,56818,56830},
-       { 116,45528,56852,56852,56856,56861,37517,56872,56876,56889},
-       { 110,44180,38889,38889,56909,56917,37021,56925,56929,56946},
-       { 118,44223,38937,38937,56962,56968,36969,54480,54484,54484},
-       { 124,50694,56975,56975,56979,56979,37073,56987,56991,56991},
-       { 126,51220,57007,57007,57011,57018,37981,57031,57035,57051},
-       { 122,44268,38989,38989,57073,57079,37141,57086,57090,57103},
-       { 129,46324,57113,57113,57117,57117,37666,57123,57127,57143},
-       { 40,47105,42446,42446,57161,57170,37709,57192,57196,57211},
-       { 134,44323,39044,39044,57243,57255,37145,57268,57272,57289},
-       { 136,51641,57306,57306,57310,57317,38001,57330,57334,57348},
-       { 138,47147,42526,42526,57370,42516,37713,57375,57379,57391},
-       { 139,51454,57411,57411,57415,57423,37991,57434,57438,57453},
-       { 145,49823,57475,57475,57479,57479,0,37217,55236,57493},
-       { 42,47323,57511,57511,57515,57525,37754,57557,57561,57578},
-       { 141,45401,57626,57626,57630,57640,37493,57648,57652,57669},
-       { 147,49399,57684,57684,57688,57699,36969,54480,54484,54484},
-       { 140,45349,57709,57709,57713,57720,36969,54480,54484,57728},
-       { 148,49282,57733,57733,57737,57743,37869,57754,57758,57771},
-       { 159,50143,42204,42204,57791,57799,37901,57812,57816,57832},
-       { 158,50268,57852,57852,57856,57856,36969,54480,54484,54816},
-       { 270,51396,57863,57863,57867,57878,36969,54480,54484,57896},
-       { 19618,45833,57901,57901,57905,57915,37588,57901,57936,57953},
-       { 151,49763,57985,57985,57989,58005,37892,58033,58037,58053},
-       { 163,46227,40950,40950,58063,58063,36969,54480,54484,58069},
-       { 166,48258,58074,58074,58078,58085,37073,58093,58097,58110},
-       { 175,47611,58124,58124,58128,58136,37789,58145,58149,58164},
-       { 182,52312,58170,58170,58174,58174,38048,58184,58188,58208},
-       { 176,44375,39082,39082,58231,58243,36969,54480,54484,54484},
-       { 177,44433,39131,39131,58253,58260,37021,58266,58270,58286},
-       { 178,47443,58300,58300,58304,58310,37769,58326,58330,58345},
-       { 183,49858,58386,58386,58390,58390,37073,58402,58406,58406},
-       { 164,50663,58425,58425,58429,58434,37930,58445,58449,58460},
-       { 192,50220,41515,41515,58480,58487,37911,58495,58499,58517},
-       { 187,51119,58534,58534,58538,58543,37969,58549,58553,58572},
-       { 201,47557,58590,58590,58594,58606,37785,58616,58620,58620},
-       { 190,45007,58636,58636,58640,58649,37343,58664,58668,58684},
-       { 191,44474,58712,58712,58716,58723,37168,58730,58734,58747},
-       { 202,52370,58761,58761,58765,58765,37073,55783,55787,55797},
-       { 193,48525,58777,58777,58781,58781,36969,54480,54484,54484},
-       { 185,51990,58790,58790,58794,58794,38031,58803,58807,58826},
-       { 197,52042,58845,58845,58849,58855,38035,58862,58866,58878},
-       { 200,44618,58896,58896,58900,58908,0,58917,58921,58934},
-       { 271,50988,52792,52792,58948,58955,37954,58968,58972,58986},
-       { 203,44674,39370,39370,58999,59006,37239,59019,59023,59037},
-       { 204,47939,59069,59069,59073,59073,37793,59080,59084,0},
-       { 205,13629,59098,59098,59102,59115,36893,59162,59166,59178},
-       { 221,44863,59198,59198,59202,59209,37021,59217,59221,59235},
-       { 215,49346,59248,59248,59252,59262,37073,59272,59276,59293},
-       { 212,45261,59306,59306,59310,59319,36969,54480,54484,59329},
-       { 143,44773,59334,59334,59338,59347,36969,54480,54484,54484},
-       { 72,52176,40009,40009,59357,59357,37073,55783,55787,55797},
-       { 222,51044,59369,59369,59373,59379,37959,59390,59394,59407},
-       { 227,44910,39618,39618,59427,39608,37335,59436,59440,59450},
-       { 228,45480,59469,59469,59473,59484,37810,59505,59509,59528},
-       { 234,50438,59541,59541,59545,59553,37915,59562,59566,59581},
-       { 235,44956,59602,59602,59606,59613,37339,59622,59626,59639},
-       { 225,51263,59653,59653,59657,59657,37073,59677,59681,59681},
-       { 237,43697,59708,59708,59712,59719,37796,59726,59730,59748},
-       { 241,45135,39843,39843,59758,59766,37404,59781,59785,59803},
-       { 244,43945,59837,59837,59841,59841,37073,55783,55787,55787},
-       { 246,51876,59855,59855,59859,59859,37073,59867,59871,59886},
-       { 247,46390,41357,41357,59900,59911,37822,59924,59928,59943},
-       { 249,50748,59962,59962,59966,59966,37940,59976,59980,60000},
-       { 251,45586,60020,60020,60024,60032,37559,60043,60047,60063},
-       { 261,50866,60082,60082,60086,60092,37944,60103,60107,60119},
-       { 209,45864,60137,60137,60141,0,10586,60154,60158,0},
-       { 264,51486,60177,60177,60181,60181,37073,55783,55787,55787}
+       { 224,16382,13100,13100,19215,19236,2559,19283,19287,19315},
+       { 3,10704,19339,19339,19343,19355,2230,19374,19378,19393},
+       { 6,7456,19406,19406,19410,19418,1752,19428,19432,19445},
+       { 7,49,14314,14314,19459,19467,1920,19484,19488,19502},
+       { 11,15709,13870,13870,19528,19528,1464,15382,19538,19553},
+       { 14,13249,19568,19568,19572,19580,1359,19592,19596,19596},
+       { 12,13282,19601,19601,19605,19605,1464,19615,19619,19619},
+       { 5,8347,3982,3982,19637,19648,2293,19660,19664,19682},
+       { 25,13812,19702,19702,19706,19727,2413,19747,19751,19787},
+       { 23,12784,19807,19807,19811,19822,2376,19847,19851,19868},
+       { 21,11941,3693,3693,19909,19917,1359,19592,19596,19926},
+       { 35,6247,2683,2683,19931,19940,1331,19957,19961,19975},
+       { 17,16539,20001,20001,20005,20013,2573,20028,20032,20047},
+       { 37,12664,20071,20071,20075,20075,1464,20082,20086,20100},
+       { 26,16806,20113,20113,20117,20117,2599,5082,20125,20144},
+       { 32,7160,20154,20154,20158,20165,1640,20172,20176,20191},
+       { 19,12511,20207,20207,20211,0,2334,20220,20224,0},
+       { 29,7835,20239,20239,20243,20251,1824,20268,20272,20289},
+       { 24,15416,20321,20321,20325,20325,1464,20332,20336,20336},
+       { 39,13375,20350,20350,20354,20354,1464,20361,20365,20381},
+       { 44,15200,20397,20397,20401,20418,2492,20433,20437,20453},
+       { 223,300,20469,20469,20473,20485,1647,1647,20492,20504},
+       { 119,16048,20518,20518,20522,20522,2520,20539,20543,20566},
+       { 46,16231,20584,20584,20588,20588,1464,20594,20598,20611},
+       { 49,15761,20624,20624,20628,20637,2534,20646,20650,20676},
+       { 45,10047,20693,20693,20697,20703,1380,20722,20726,20739},
+       { 51,15134,20758,20758,20762,20762,1464,20771,20775,20790},
+       { 54,14114,20806,20806,20810,20810,2431,20821,20825,20844},
+       { 56,17191,20865,20865,20869,20869,1464,20874,20878,20889},
+       { 75,6403,20901,20901,20905,20920,1383,20938,20942,20964},
+       { 94,6493,2869,2869,20979,20987,1359,19592,19596,19596},
+       { 61,6445,20999,20999,21003,21011,1411,21019,21023,21036},
+       { 65,14719,21048,21048,21052,21071,2459,21093,21097,21112},
+       { 4,13874,21128,21128,21132,21140,2416,21155,21159,21174},
+       { 66,15980,21198,21198,21202,21202,1464,21210,21214,21224},
+       { 70,7933,17146,17146,21246,21254,1359,19592,19596,19926},
+       { 67,13104,21260,21260,21264,21270,2387,21277,21281,21296},
+       { 71,13052,21314,21314,21318,21326,2241,21339,21343,0},
+       { 217,6290,2950,2950,21358,21364,1359,19592,19596,19926},
+       { 73,10524,21372,21372,21376,21385,2208,21401,21405,21420},
+       { 77,6623,2975,2975,21446,21454,1359,19592,19596,19926},
+       { 81,8887,16476,16476,21460,21474,1758,21019,21023,21483},
+       { 84,6667,3003,3003,21496,21496,1359,19592,19596,19926},
+       { 242,10106,21503,21503,21507,21522,2101,21539,21543,21557},
+       { 88,8833,21570,21570,21574,21582,1958,21613,21617,21631},
+       { 93,11048,21666,21666,21670,21680,1411,21019,21023,21697},
+       { 98,6549,21717,21717,21721,21728,1359,19592,19596,21741},
+       { 99,13686,21750,21750,21754,21754,2411,21764,21768,21787},
+       { 104,13197,21795,21795,21799,21819,2397,21847,21851,21868},
+       { 106,16975,21875,21875,21879,21879,2332,21888,21892,21909},
+       { 108,7359,3414,3414,21928,21936,2289,2289,21945,21959},
+       { 103,16678,21973,21973,21977,21983,2587,21990,21994,22009},
+       { 109,6768,3060,3060,22027,22035,1534,22049,22053,22070},
+       { 111,7698,22084,22084,3598,3598,1817,22088,22092,22110},
+       { 68,12613,22127,22127,22131,22139,1359,19592,19596,19596},
+       { 117,6716,22145,22145,22149,22156,1525,22167,22171,22190},
+       { 113,8944,3608,3608,22204,22210,2003,22223,22227,22240},
+       { 121,11716,22275,22275,22279,22284,2320,22297,22301,22313},
+       { 116,8158,22335,22335,22339,22344,1907,22355,22359,22372},
+       { 110,6817,3091,3091,22392,22400,1537,1537,22408,22425},
+       { 118,6860,3119,3119,22441,22447,1359,19592,19596,19926},
+       { 124,14861,22454,22454,22458,22458,1464,22466,22470,22470},
+       { 126,15614,22486,22486,22490,22497,2524,22510,22514,22530},
+       { 122,6905,3149,3149,22552,22558,1551,22565,22569,22582},
+       { 129,9270,22592,22592,22596,22596,2055,22602,22606,22622},
+       { 130,9227,22640,22640,22644,22655,2031,22676,22680,22695},
+       { 40,10172,5140,5140,22725,22734,2104,22756,22760,22775},
+       { 134,6960,3177,3177,22809,22821,1555,22834,22838,22855},
+       { 136,16153,22872,22872,22876,22883,2549,22896,22900,22914},
+       { 137,9158,22936,22936,22940,22951,2010,22970,22974,22992},
+       { 138,10214,5165,5165,23026,5155,2108,23031,23035,23047},
+       { 139,15898,23067,23067,23071,23079,2539,23090,23094,23109},
+       { 145,14023,23131,23131,23135,23135,1647,1647,20492,23149},
+       { 42,10465,23167,23167,23171,23181,2200,23213,23217,23234},
+       { 141,8031,23282,23282,23286,23296,1359,19592,19596,23304},
+       { 147,10984,23310,23310,23314,23325,1359,19592,19596,19596},
+       { 140,7979,23337,23337,23341,23348,1359,19592,19596,23356},
+       { 148,13491,23361,23361,23365,23371,2401,23382,23386,23399},
+       { 159,14318,5004,5004,23419,23427,2435,2569,23440,23456},
+       { 158,14443,23476,23476,23480,23480,1359,19592,19596,19926},
+       { 152,12214,23487,23487,23491,23499,2332,23517,23521,23534},
+       { 270,15840,23550,23550,23554,23565,1359,19592,19596,23583},
+       { 19618,8522,23588,23588,23592,23602,1949,23588,23623,23640},
+       { 157,16275,23672,23672,23676,23676,2520,20539,20543,20566},
+       { 27,10289,23681,23681,23685,5184,2158,23701,23705,23718},
+       { 154,9976,23749,23749,23753,23762,2303,23775,23779,23796},
+       { 151,13963,23809,23809,23813,23829,2426,23857,23861,23877},
+       { 163,8983,4382,4382,23887,23887,1359,19592,19596,23893},
+       { 166,11890,23898,23898,23902,23909,1464,23917,23921,23934},
+       { 167,9088,23948,23948,23952,23952,2007,23961,23965,23983},
+       { 175,10812,24000,24000,24004,24012,2237,24021,24025,24040},
+       { 182,17029,24046,24046,24050,24050,2602,24060,24064,24084},
+       { 176,7012,3205,3205,24107,24119,1359,19592,19596,19596},
+       { 177,7070,3232,3232,24129,24136,1758,24142,24146,24162},
+       { 178,10585,24176,24176,24180,24186,2307,24202,24206,24221},
+       { 183,14058,24262,24262,24266,24266,1464,24278,24282,24282},
+       { 164,14830,24301,24301,24305,24310,2468,24321,24325,24336},
+       { 192,14395,4711,4711,24356,24363,2445,24371,24375,24393},
+       { 187,15461,24410,24410,24414,24419,2517,24425,24429,24442},
+       { 201,10758,24460,24460,24464,24476,2233,24486,24490,24506},
+       { 190,7644,24524,24524,24528,24537,1782,24552,24556,24572},
+       { 191,7111,24600,24600,24604,24611,1598,24618,24622,24635},
+       { 202,17087,24649,24649,24653,24653,1464,21210,21214,21224},
+       { 193,12153,24665,24665,24669,24669,1359,19592,19596,19596},
+       { 185,16631,24678,24678,24682,24682,2583,24691,24695,24714},
+       { 197,16730,24733,24733,24737,24743,2589,24750,24754,24766},
+       { 198,14970,24784,24784,24788,24797,1359,19592,19596,19926},
+       { 200,7255,24809,24809,24813,24821,1669,1669,24830,24843},
+       { 271,15270,17575,17575,24857,24864,2495,2495,24877,24891},
+       { 203,7311,3385,3385,24904,24911,1673,24924,24928,24942},
+       { 204,11584,24974,24974,24978,24978,2276,24985,24989,0},
+       { 205,297,25003,25003,25007,25020,1266,25067,25071,25083},
+       { 221,7500,25103,25103,25107,25114,1758,25122,25126,25140},
+       { 215,13555,25153,25153,25157,25167,1464,25177,25181,25198},
+       { 212,7891,25211,25211,25215,25224,1359,19592,19596,25234},
+       { 143,7410,25239,25239,25243,25252,1359,19592,19596,19926},
+       { 210,15513,25262,25262,25266,25274,2520,20539,20543,20566},
+       { 216,11296,5855,5855,25284,25292,2245,25303,25307,25323},
+       { 72,16893,3728,3728,25339,25339,1464,21210,21214,21224},
+       { 222,15386,25351,25351,25355,25361,2507,25372,25376,25389},
+       { 227,7547,3523,3523,25409,3513,1774,1774,25418,25428},
+       { 228,8110,25447,25447,25451,25462,2031,25483,25487,25506},
+       { 238,9330,25519,25519,25523,25536,2059,2059,25550,25570},
+       { 234,14611,25586,25586,25590,25598,2449,25607,25611,25626},
+       { 235,7593,25648,25648,25652,25659,1778,25668,25672,25685},
+       { 225,15655,25699,25699,25703,25703,1464,25721,25725,25725},
+       { 237,6341,25750,25750,25754,25761,1464,25768,25772,25790},
+       { 241,7765,3650,3650,25800,25808,1820,25823,25827,25845},
+       { 244,6582,25879,25879,25883,25883,1464,21210,21214,21214},
+       { 246,16432,25897,25897,25901,25901,1464,25909,25913,25928},
+       { 247,9394,4639,4639,25942,25953,2297,25966,25970,25986},
+       { 249,14915,26008,26008,26012,26012,2478,26022,26026,26046},
+       { 251,8216,26066,26066,26070,26078,1916,26089,26093,26109},
+       { 261,15082,26128,26128,26132,26138,2482,26149,26153,26165},
+       { 209,8561,26183,26183,26187,0,1956,26200,26204,0},
+       { 264,15930,26223,26223,26227,26227,1464,21210,21214,21214}
 };
 
 
 static const RegionInfoNameEntry region_name_entries [] = {
-       {51826, 0},      /* AE */
-       {47503, 1},      /* AF */
-       {44819, 2},      /* AL */
-       {1820, 3},       /* AM */
-       {51317, 4},      /* AR */
-       {49014, 5},      /* AT */
-       {49047, 6},      /* AU */
-       {45717, 7},      /* AZ */
-       {49612, 8},      /* BA */
-       {48817, 9},      /* BD */
-       {48309, 10},     /* BE */
-       {43603, 11},     /* BG */
-       {51938, 12},     /* BH */
-       {52118, 13},     /* BO */
-       {44523, 14},     /* BR */
-       {45205, 15},     /* BY */
-       {51074, 16},     /* BZ */
-       {49140, 17},     /* CA */
-       {13632, 18},     /* CH */
-       {51719, 19},     /* CL */
-       {13711, 20},     /* CN */
-       {50918, 21},     /* CO */
-       {49914, 22},     /* CR */
-       {43766, 23},     /* CZ */
-       {43856, 24},     /* DE */
-       {43808, 25},     /* DK */
-       {50546, 26},     /* DO */
-       {49674, 27},     /* DZ */
-       {51536, 28},     /* EC */
-       {45303, 29},     /* EE */
-       {48869, 30},     /* EG */
-       {43646, 31},     /* ES */
-       {47382, 32},     /* ET */
-       {43986, 33},     /* FI */
-       {46134, 34},     /* FO */
-       {44030, 35},     /* FR */
-       {47039, 36},     /* GB */
-       {46080, 37},     /* GE */
-       {47781, 38},     /* GL */
-       {43912, 39},     /* GR */
-       {49480, 40},     /* GT */
-       {48962, 41},     /* HK */
-       {52258, 42},     /* HN */
-       {44722, 43},     /* HR */
-       {44131, 44},     /* HU */
-       {45068, 45},     /* ID */
-       {48662, 46},     /* IE */
-       {44079, 47},     /* IL */
-       {46188, 48},     /* IN */
-       {48071, 49},     /* IQ */
-       {45528, 50},     /* IR */
-       {44180, 51},     /* IS */
-       {44223, 52},     /* IT */
-       {50694, 53},     /* JM */
-       {51220, 54},     /* JO */
-       {44268, 55},     /* JP */
-       {46324, 56},     /* KE */
-       {47105, 57},     /* KH */
-       {44323, 58},     /* KR */
-       {51641, 59},     /* KW */
-       {47147, 60},     /* LA */
-       {51454, 61},     /* LB */
-       {49823, 62},     /* LI */
-       {47323, 63},     /* LK */
-       {45401, 64},     /* LT */
-       {49399, 65},     /* LU */
-       {45349, 66},     /* LV */
-       {49282, 67},     /* LY */
-       {50143, 68},     /* MA */
-       {50268, 69},     /* MC */
-       {51396, 70},     /* ME */
-       {45833, 71},     /* MK */
-       {49763, 72},     /* MO */
-       {46227, 73},     /* MT */
-       {48258, 74},     /* MX */
-       {47611, 75},     /* NG */
-       {52312, 76},     /* NI */
-       {44375, 77},     /* NL */
-       {44433, 78},     /* NO */
-       {47443, 79},     /* NP */
-       {49858, 80},     /* NZ */
-       {50663, 81},     /* OM */
-       {50220, 82},     /* PA */
-       {51119, 83},     /* PE */
-       {47557, 84},     /* PH */
-       {45007, 85},     /* PK */
-       {44474, 86},     /* PL */
-       {52370, 87},     /* PR */
-       {48525, 88},     /* PT */
-       {51990, 89},     /* PY */
-       {52042, 90},     /* QA */
-       {44618, 91},     /* RO */
-       {50988, 92},     /* RS */
-       {44674, 93},     /* RU */
-       {47939, 94},     /* RW */
-       {13629, 95},     /* SA */
-       {44863, 96},     /* SE */
-       {49346, 97},     /* SG */
-       {45261, 98},     /* SI */
-       {44773, 99},     /* SK */
-       {52176, 100},    /* SV */
-       {51044, 101},    /* SY */
-       {44910, 102},    /* TH */
-       {45480, 103},    /* TJ */
-       {50438, 104},    /* TN */
-       {44956, 105},    /* TR */
-       {51263, 106},    /* TT */
-       {43697, 107},    /* TW */
-       {45135, 108},    /* UA */
-       {43945, 109},    /* US */
-       {51876, 110},    /* UY */
-       {46390, 111},    /* UZ */
-       {50748, 112},    /* VE */
-       {45586, 113},    /* VN */
-       {50866, 114},    /* YE */
-       {45864, 115},    /* ZA */
-       {51486, 116}     /* ZW */
+       {16382, 0},      /* AE */
+       {10704, 1},      /* AF */
+       {7456, 2},       /* AL */
+       {49, 3},         /* AM */
+       {15709, 4},      /* AR */
+       {13249, 5},      /* AT */
+       {13282, 6},      /* AU */
+       {8347, 7},       /* AZ */
+       {13812, 8},      /* BA */
+       {12784, 9},      /* BD */
+       {11941, 10},     /* BE */
+       {6247, 11},      /* BG */
+       {16539, 12},     /* BH */
+       {12664, 13},     /* BN */
+       {16806, 14},     /* BO */
+       {7160, 15},      /* BR */
+       {12511, 16},     /* BW */
+       {7835, 17},      /* BY */
+       {15416, 18},     /* BZ */
+       {13375, 19},     /* CA */
+       {15200, 20},     /* CD */
+       {300, 21},       /* CH */
+       {16048, 22},     /* CI */
+       {16231, 23},     /* CL */
+       {15761, 24},     /* CM */
+       {10047, 25},     /* CN */
+       {15134, 26},     /* CO */
+       {14114, 27},     /* CR */
+       {17191, 28},     /* CU */
+       {6403, 29},      /* CZ */
+       {6493, 30},      /* DE */
+       {6445, 31},      /* DK */
+       {14719, 32},     /* DO */
+       {13874, 33},     /* DZ */
+       {15980, 34},     /* EC */
+       {7933, 35},      /* EE */
+       {13104, 36},     /* EG */
+       {13052, 37},     /* ER */
+       {6290, 38},      /* ES */
+       {10524, 39},     /* ET */
+       {6623, 40},      /* FI */
+       {8887, 41},      /* FO */
+       {6667, 42},      /* FR */
+       {10106, 43},     /* GB */
+       {8833, 44},      /* GE */
+       {11048, 45},     /* GL */
+       {6549, 46},      /* GR */
+       {13686, 47},     /* GT */
+       {13197, 48},     /* HK */
+       {16975, 49},     /* HN */
+       {7359, 50},      /* HR */
+       {16678, 51},     /* HT */
+       {6768, 52},      /* HU */
+       {7698, 53},      /* ID */
+       {12613, 54},     /* IE */
+       {6716, 55},      /* IL */
+       {8944, 56},      /* IN */
+       {11716, 57},     /* IQ */
+       {8158, 58},      /* IR */
+       {6817, 59},      /* IS */
+       {6860, 60},      /* IT */
+       {14861, 61},     /* JM */
+       {15614, 62},     /* JO */
+       {6905, 63},      /* JP */
+       {9270, 64},      /* KE */
+       {9227, 65},      /* KG */
+       {10172, 66},     /* KH */
+       {6960, 67},      /* KR */
+       {16153, 68},     /* KW */
+       {9158, 69},      /* KZ */
+       {10214, 70},     /* LA */
+       {15898, 71},     /* LB */
+       {14023, 72},     /* LI */
+       {10465, 73},     /* LK */
+       {8031, 74},      /* LT */
+       {10984, 75},     /* LU */
+       {7979, 76},      /* LV */
+       {13491, 77},     /* LY */
+       {14318, 78},     /* MA */
+       {14443, 79},     /* MC */
+       {12214, 80},     /* MD */
+       {15840, 81},     /* ME */
+       {8522, 82},      /* MK */
+       {16275, 83},     /* ML */
+       {10289, 84},     /* MM */
+       {9976, 85},      /* MN */
+       {13963, 86},     /* MO */
+       {8983, 87},      /* MT */
+       {11890, 88},     /* MX */
+       {9088, 89},      /* MY */
+       {10812, 90},     /* NG */
+       {17029, 91},     /* NI */
+       {7012, 92},      /* NL */
+       {7070, 93},      /* NO */
+       {10585, 94},     /* NP */
+       {14058, 95},     /* NZ */
+       {14830, 96},     /* OM */
+       {14395, 97},     /* PA */
+       {15461, 98},     /* PE */
+       {10758, 99},     /* PH */
+       {7644, 100},     /* PK */
+       {7111, 101},     /* PL */
+       {17087, 102},    /* PR */
+       {12153, 103},    /* PT */
+       {16631, 104},    /* PY */
+       {16730, 105},    /* QA */
+       {14970, 106},    /* RE */
+       {7255, 107},     /* RO */
+       {15270, 108},    /* RS */
+       {7311, 109},     /* RU */
+       {11584, 110},    /* RW */
+       {297, 111},      /* SA */
+       {7500, 112},     /* SE */
+       {13555, 113},    /* SG */
+       {7891, 114},     /* SI */
+       {7410, 115},     /* SK */
+       {15513, 116},    /* SN */
+       {11296, 117},    /* SO */
+       {16893, 118},    /* SV */
+       {15386, 119},    /* SY */
+       {7547, 120},     /* TH */
+       {8110, 121},     /* TJ */
+       {9330, 122},     /* TM */
+       {14611, 123},    /* TN */
+       {7593, 124},     /* TR */
+       {15655, 125},    /* TT */
+       {6341, 126},     /* TW */
+       {7765, 127},     /* UA */
+       {6582, 128},     /* US */
+       {16432, 129},    /* UY */
+       {9394, 130},     /* UZ */
+       {14915, 131},    /* VE */
+       {8216, 132},     /* VN */
+       {15082, 133},    /* YE */
+       {8561, 134},     /* ZA */
+       {15930, 135}     /* ZW */
 };
 
 
 static const char locale_strings [] = {
-"\0"
-       "dd MMMM\0"
-       "\xd9\x85\xd8\xad\xd8\xb1\xd9\x85\0"
-       "\xd8\xb5\xd9\x81\xd8\xb1\0"
-       "\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\0"
-       "\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xa2\xd8\xae\xd8\xb1\0"
-       "\xd8\xac\xd9\x85\xd8\xa7\xd8\xaf\xd9\x89 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\xd9\x89\0"
-       "\xd8\xac\xd9\x85\xd8\xa7\xd8\xaf\xd9\x89 \xd8\xa7\xd9\x84\xd8\xa2\xd8\xae\xd8\xb1\xd8\xa9\0"
-       "\xd8\xb1\xd8\xac\xd8\xa8\0"
-       "\xd8\xb4\xd8\xb9\xd8\xa8\xd8\xa7\xd9\x86\0"
-       "\xd8\xb1\xd9\x85\xd8\xb6\xd8\xa7\xd9\x86\0"
-       "\xd8\xb4\xd9\x88\xd8\xa7\xd9\x84\0"
-       "\xd8\xb0\xd9\x88 \xd8\xa7\xd9\x84\xd9\x82\xd8\xb9\xd8\xaf\xd8\xa9\0"
-       "\xd8\xb0\xd9\x88 \xd8\xa7\xd9\x84\xd8\xad\xd8\xac\xd8\xa9\0"
+       "\0"
        "/\0"
        ":\0"
-       "dd/MM/yy\0"
-       "dd/MM/yyyy\0"
-       "dd/MMMM/yyyy\0"
-       "dddd, dd MMMM, yyyy\0"
-       "hh:mm tt\0"
-       "HH:mm\0"
-       "hh:mm:ss tt\0"
-       "HH:mm:ss\0"
-       "MMMM, yyyy\0"
-       "d MMMM\0"
-       "\xd0\xbf\xd1\x80.\xd0\xbe\xd0\xb1.\0"
-       "\xd1\x81\xd0\xbb.\xd0\xbe\xd0\xb1.\0"
-       "\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd1\x8f\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xbd\xd0\xb8\xd0\xba\0"
-       "\xd0\xb2\xd1\x82\xd0\xbe\xd1\x80\xd0\xbd\xd0\xb8\xd0\xba\0"
-       "\xd1\x81\xd1\x80\xd1\x8f\xd0\xb4\xd0\xb0\0"
-       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd1\x8a\xd1\x80\xd1\x82\xd1\x8a\xd0\xba\0"
-       "\xd0\xbf\xd0\xb5\xd1\x82\xd1\x8a\xd0\xba\0"
-       "\xd1\x81\xd1\x8a\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
-       "\xd0\xbd\xd0\xb4\0"
-       "\xd0\xbf\xd0\xbd\0"
-       "\xd0\xb2\xd1\x82\0"
-       "\xd1\x81\xd1\x80\0"
-       "\xd1\x87\xd1\x82\0"
-       "\xd0\xbf\xd1\x82\0"
-       "\xd1\x81\xd0\xb1\0"
-       "\xd0\xbd\0"
-       "\xd0\xbf\0"
-       "\xd0\xb2\0"
-       "\xd1\x81\0"
-       "\xd1\x87\0"
-       "\xd1\x8f\xd0\xbd\xd1\x83\xd0\xb0\xd1\x80\xd0\xb8\0"
-       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd1\x83\xd0\xb0\xd1\x80\xd0\xb8\0"
-       "\xd0\xbc\xd0\xb0\xd1\x80\xd1\x82\0"
-       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb8\xd0\xbb\0"
-       "\xd0\xbc\xd0\xb0\xd0\xb9\0"
-       "\xd1\x8e\xd0\xbd\xd0\xb8\0"
-       "\xd1\x8e\xd0\xbb\xd0\xb8\0"
-       "\xd0\xb0\xd0\xb2\xd0\xb3\xd1\x83\xd1\x81\xd1\x82\0"
-       "\xd1\x81\xd0\xb5\xd0\xbf\xd1\x82\xd0\xb5\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
-       "\xd0\xbe\xd0\xba\xd1\x82\xd0\xbe\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
-       "\xd0\xbd\xd0\xbe\xd0\xb5\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
-       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb5\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
-       "\xd1\x8f\xd0\xbd.\0"
-       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80.\0"
-       "\xd0\xb0\xd0\xbf\xd1\x80.\0"
-       "\xd0\xb0\xd0\xb2\xd0\xb3.\0"
-       "\xd1\x81\xd0\xb5\xd0\xbf\xd1\x82.\0"
-       "\xd0\xbe\xd0\xba\xd1\x82.\0"
-       "\xd0\xbd\xd0\xbe\xd0\xb5\xd0\xbc.\0"
-       "\xd0\xb4\xd0\xb5\xd0\xba.\0"
+       "am\0"
+       "pm\0"
        ".\0"
-       "d.M.yyyy '\xd0\xb3.'\0"
-       "dd.M.yyyy '\xd0\xb3.'\0"
-       "d.MM.yyyy '\xd0\xb3.'\0"
-       "dd.MM.yyyy '\xd0\xb3.'\0"
-       "dd MMMM yyyy '\xd0\xb3.'\0"
-       "d MMMM yyyy '\xd0\xb3.'\0"
-       "dddd, dd MMMM yyyy '\xd0\xb3.'\0"
-       "dddd, d MMMM yyyy '\xd0\xb3.'\0"
-       "H:mm\0"
-       "H:mm:ss\0"
-       "MMMM yyyy '\xd0\xb3.'\0"
        "a. m.\0"
        "p. m.\0"
-       "diumenge\0"
-       "dilluns\0"
-       "dimarts\0"
-       "dimecres\0"
-       "dijous\0"
-       "divendres\0"
-       "dissabte\0"
-       "dg.\0"
-       "dl.\0"
-       "dt.\0"
-       "dc.\0"
-       "dj.\0"
-       "dv.\0"
-       "ds.\0"
-       "dg\0"
-       "dl\0"
-       "dt\0"
-       "dc\0"
-       "dj\0"
-       "dv\0"
-       "ds\0"
-       "gener\0"
-       "febrer\0"
-       "mar\xc3\xa7\0"
-       "abril\0"
-       "maig\0"
-       "juny\0"
-       "juliol\0"
-       "agost\0"
-       "setembre\0"
-       "octubre\0"
-       "novembre\0"
-       "desembre\0"
-       "gen.\0"
-       "feb.\0"
-       "abr.\0"
-       "jul.\0"
-       "ag.\0"
-       "set.\0"
-       "oct.\0"
-       "nov.\0"
-       "des.\0"
-       "d/M/yyyy\0"
-       "d MMM yyyy\0"
-       "dddd, d MMMM 'de' yyyy\0"
-       "d MMMM 'de' yyyy\0"
-       "MMMM 'de' yyyy\0"
-       "M\xe6\x9c\x88\x64\xe6\x97\xa5\0"
        "\xe4\xb8\x8a\xe5\x8d\x88\0"
        "\xe4\xb8\x8b\xe5\x8d\x88\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe6\x97\xa5\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xb8\x80\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xba\x8c\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xb8\x89\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe5\x9b\x9b\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xba\x94\0"
-       "\xe6\x98\x9f\xe6\x9c\x9f\xe5\x85\xad\0"
-       "\xe5\x91\xa8\xe6\x97\xa5\0"
-       "\xe5\x91\xa8\xe4\xb8\x80\0"
-       "\xe5\x91\xa8\xe4\xba\x8c\0"
-       "\xe5\x91\xa8\xe4\xb8\x89\0"
-       "\xe5\x91\xa8\xe5\x9b\x9b\0"
-       "\xe5\x91\xa8\xe4\xba\x94\0"
-       "\xe5\x91\xa8\xe5\x85\xad\0"
-       "\xe6\x97\xa5\0"
-       "\xe4\xb8\x80\0"
-       "\xe4\xba\x8c\0"
-       "\xe4\xb8\x89\0"
-       "\xe5\x9b\x9b\0"
-       "\xe4\xba\x94\0"
-       "\xe5\x85\xad\0"
-       "\xe4\xb8\x80\xe6\x9c\x88\0"
-       "\xe4\xba\x8c\xe6\x9c\x88\0"
-       "\xe4\xb8\x89\xe6\x9c\x88\0"
-       "\xe5\x9b\x9b\xe6\x9c\x88\0"
-       "\xe4\xba\x94\xe6\x9c\x88\0"
-       "\xe5\x85\xad\xe6\x9c\x88\0"
-       "\xe4\xb8\x83\xe6\x9c\x88\0"
-       "\xe5\x85\xab\xe6\x9c\x88\0"
-       "\xe4\xb9\x9d\xe6\x9c\x88\0"
-       "\xe5\x8d\x81\xe6\x9c\x88\0"
-       "\xe5\x8d\x81\xe4\xb8\x80\xe6\x9c\x88\0"
-       "\xe5\x8d\x81\xe4\xba\x8c\xe6\x9c\x88\0"
-       "1\xe6\x9c\x88\0"
-       "2\xe6\x9c\x88\0"
-       "3\xe6\x9c\x88\0"
-       "4\xe6\x9c\x88\0"
-       "5\xe6\x9c\x88\0"
-       "6\xe6\x9c\x88\0"
-       "7\xe6\x9c\x88\0"
-       "8\xe6\x9c\x88\0"
-       "9\xe6\x9c\x88\0"
-       "10\xe6\x9c\x88\0"
-       "11\xe6\x9c\x88\0"
-       "12\xe6\x9c\x88\0"
-       "yyyy/M/d\0"
-       "yyyy-M-d\0"
-       "yyyy.M.d\0"
-       "yyyy/MM/dd\0"
-       "yyyy-MM-dd\0"
-       "yyyy.MM.dd\0"
-       "yy/M/d\0"
-       "yy-M-d\0"
-       "yy.M.d\0"
-       "yy/MM/dd\0"
-       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
-       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5', dddd\0"
-       "dddd, yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
-       "yyyy\xe5\xb9\xb4MMMd\xe6\x97\xa5\0"
-       "yyyy\xe5\xb9\xb4MMMd\xe6\x97\xa5, dddd\0"
-       "tt h:mm\0"
-       "tt hh:mm\0"
-       "tt h:mm:ss\0"
-       "tt hh:mm:ss\0"
-       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'\0"
-       "yyyy'\xe5\xb9\xb4'MMM\0"
-       "yyyy'\xe5\xb9\xb4'MMMM\0"
-       "yyyy.M\0"
-       "d. MMMM\0"
+       "dop.\0"
+       "odp.\0"
        "AM\0"
        "PM\0"
-       "ned\xc4\x9ble\0"
-       "pond\xc4\x9bl\xc3\xad\0"
-       "\xc3\xbater\xc3\xbd\0"
-       "st\xc5\x99\x65\x64\x61\0"
-       "\xc4\x8dtvrtek\0"
-       "p\xc3\xa1tek\0"
-       "sobota\0"
-       "ne\0"
-       "po\0"
-       "\xc3\xbat\0"
-       "st\0"
-       "\xc4\x8dt\0"
-       "p\xc3\xa1\0"
-       "so\0"
-       "N\0"
-       "P\0"
-       "\xc3\x9a\0"
-       "S\0"
-       "\xc4\x8c\0"
-       "leden\0"
-       "\xc3\xbanor\0"
-       "b\xc5\x99\x65zen\0"
-       "duben\0"
-       "kv\xc4\x9bten\0"
-       "\xc4\x8d\x65rven\0"
-       "\xc4\x8d\x65rvenec\0"
-       "srpen\0"
-       "z\xc3\xa1\xc5\x99\xc3\xad\0"
-       "\xc5\x99\xc3\xadjen\0"
-       "listopad\0"
-       "prosinec\0"
-       "ledna\0"
-       "\xc3\xbanora\0"
-       "b\xc5\x99\x65zna\0"
-       "dubna\0"
-       "kv\xc4\x9btna\0"
-       "\xc4\x8d\x65rvna\0"
-       "\xc4\x8d\x65rvence\0"
-       "srpna\0"
-       "\xc5\x99\xc3\xadjna\0"
-       "listopadu\0"
-       "prosince\0"
-       "led\0"
-       "\xc3\xbano\0"
-       "b\xc5\x99\x65\0"
-       "dub\0"
-       "kv\xc4\x9b\0"
-       "\xc4\x8dvn\0"
-       "\xc4\x8dvc\0"
-       "srp\0"
-       "z\xc3\xa1\xc5\x99\0"
-       "\xc5\x99\xc3\xadj\0"
-       "lis\0"
-       "pro\0"
-       "dd.MM.yyyy\0"
-       "d. M. yyyy\0"
-       "dddd d. MMMM yyyy\0"
-       "d. MMMM yyyy\0"
-       "MMMM yyyy\0"
-       "s\xc3\xb8ndag\0"
-       "mandag\0"
-       "tirsdag\0"
-       "onsdag\0"
-       "torsdag\0"
-       "fredag\0"
-       "l\xc3\xb8rdag\0"
-       "s\xc3\xb8n\0"
-       "man\0"
-       "tir\0"
-       "ons\0"
-       "tor\0"
-       "fre\0"
-       "l\xc3\xb8r\0"
-       "M\0"
-       "T\0"
-       "O\0"
-       "F\0"
-       "L\0"
-       "januar\0"
-       "februar\0"
-       "marts\0"
-       "april\0"
-       "maj\0"
-       "juni\0"
-       "juli\0"
-       "august\0"
-       "september\0"
-       "oktober\0"
-       "november\0"
-       "december\0"
-       "jan\0"
-       "feb\0"
-       "mar\0"
-       "apr\0"
-       "jun\0"
-       "jul\0"
-       "aug\0"
-       "sep\0"
-       "okt\0"
-       "nov\0"
-       "dec\0"
        "-\0"
-       "dd-MM-yyyy\0"
-       "dd-MM-yy\0"
-       "yyyy MM dd\0"
        "vorm.\0"
        "nachm.\0"
-       "Sonntag\0"
-       "Montag\0"
-       "Dienstag\0"
-       "Mittwoch\0"
-       "Donnerstag\0"
-       "Freitag\0"
-       "Samstag\0"
-       "So\0"
-       "Mo\0"
-       "Di\0"
-       "Mi\0"
-       "Do\0"
-       "Fr\0"
-       "Sa\0"
-       "D\0"
-       "Januar\0"
-       "Februar\0"
-       "M\xc3\xa4rz\0"
-       "April\0"
-       "Mai\0"
-       "Juni\0"
-       "Juli\0"
-       "August\0"
-       "September\0"
-       "Oktober\0"
-       "November\0"
-       "Dezember\0"
-       "Jan\0"
-       "Feb\0"
-       "M\xc3\xa4r\0"
-       "Apr\0"
-       "Jun\0"
-       "Jul\0"
-       "Aug\0"
-       "Sep\0"
-       "Okt\0"
-       "Nov\0"
-       "Dez\0"
-       "dd.MM.yy\0"
-       "dd. MMM. yyyy\0"
-       "dddd, d. MMMM yyyy\0"
-       "d. MMM. yyyy\0"
-       "HH:mm' Uhr'\0"
-       "HH:mm:ss' Uhr'\0"
        "\xcf\x80.\xce\xbc.\0"
        "\xce\xbc.\xce\xbc.\0"
-       "\xce\x9a\xcf\x85\xcf\x81\xce\xb9\xce\xb1\xce\xba\xce\xae\0"
-       "\xce\x94\xce\xb5\xcf\x85\xcf\x84\xce\xad\xcf\x81\xce\xb1\0"
-       "\xce\xa4\xcf\x81\xce\xaf\xcf\x84\xce\xb7\0"
-       "\xce\xa4\xce\xb5\xcf\x84\xce\xac\xcf\x81\xcf\x84\xce\xb7\0"
-       "\xce\xa0\xce\xad\xce\xbc\xcf\x80\xcf\x84\xce\xb7\0"
-       "\xce\xa0\xce\xb1\xcf\x81\xce\xb1\xcf\x83\xce\xba\xce\xb5\xcf\x85\xce\xae\0"
-       "\xce\xa3\xce\xac\xce\xb2\xce\xb2\xce\xb1\xcf\x84\xce\xbf\0"
-       "\xce\x9a\xcf\x85\xcf\x81\0"
-       "\xce\x94\xce\xb5\xcf\x85\0"
-       "\xce\xa4\xcf\x81\xce\xaf\0"
-       "\xce\xa4\xce\xb5\xcf\x84\0"
-       "\xce\xa0\xce\xad\xce\xbc\0"
-       "\xce\xa0\xce\xb1\xcf\x81\0"
-       "\xce\xa3\xce\xac\xce\xb2\0"
-       "\xce\x9a\0"
-       "\xce\x94\0"
-       "\xce\xa4\0"
-       "\xce\xa0\0"
-       "\xce\xa3\0"
-       "\xce\x99\xce\xb1\xce\xbd\xce\xbf\xcf\x85\xce\xac\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\xa6\xce\xb5\xce\xb2\xcf\x81\xce\xbf\xcf\x85\xce\xac\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x9c\xce\xac\xcf\x81\xcf\x84\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x91\xcf\x80\xcf\x81\xce\xaf\xce\xbb\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x9c\xce\xac\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x99\xce\xbf\xcf\x8d\xce\xbd\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x99\xce\xbf\xcf\x8d\xce\xbb\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x91\xcf\x8d\xce\xb3\xce\xbf\xcf\x85\xcf\x83\xcf\x84\xce\xbf\xcf\x82\0"
-       "\xce\xa3\xce\xb5\xcf\x80\xcf\x84\xce\xad\xce\xbc\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x9f\xce\xba\xcf\x84\xcf\x8e\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x9d\xce\xbf\xce\xad\xce\xbc\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x94\xce\xb5\xce\xba\xce\xad\xce\xbc\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
-       "\xce\x99\xce\xb1\xce\xbd\xce\xbf\xcf\x85\xce\xb1\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\xa6\xce\xb5\xce\xb2\xcf\x81\xce\xbf\xcf\x85\xce\xb1\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x9c\xce\xb1\xcf\x81\xcf\x84\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x91\xcf\x80\xcf\x81\xce\xb9\xce\xbb\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x9c\xce\xb1\xce\x90\xce\xbf\xcf\x85\0"
-       "\xce\x99\xce\xbf\xcf\x85\xce\xbd\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x99\xce\xbf\xcf\x85\xce\xbb\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x91\xcf\x85\xce\xb3\xce\xbf\xcf\x8d\xcf\x83\xcf\x84\xce\xbf\xcf\x85\0"
-       "\xce\xa3\xce\xb5\xcf\x80\xcf\x84\xce\xb5\xce\xbc\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x9f\xce\xba\xcf\x84\xcf\x89\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x9d\xce\xbf\xce\xb5\xce\xbc\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x94\xce\xb5\xce\xba\xce\xb5\xce\xbc\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
-       "\xce\x99\xce\xb1\xce\xbd\0"
-       "\xce\xa6\xce\xb5\xce\xb2\0"
-       "\xce\x9c\xce\xac\xcf\x81\0"
-       "\xce\x91\xcf\x80\xcf\x81\0"
-       "\xce\x9c\xce\xac\xce\xb9\0"
-       "\xce\x99\xce\xbf\xcf\x8d\xce\xbd\0"
-       "\xce\x99\xce\xbf\xcf\x8d\xce\xbb\0"
-       "\xce\x91\xcf\x8d\xce\xb3\0"
-       "\xce\xa3\xce\xb5\xcf\x80\0"
-       "\xce\x9f\xce\xba\xcf\x84\0"
-       "\xce\x9d\xce\xbf\xce\xad\0"
-       "\xce\x94\xce\xb5\xce\xba\0"
-       "d/M/yy\0"
-       "dd/MMM/yyyy\0"
-       "dddd, d MMMM yyyy\0"
-       "d MMMM yyyy\0"
-       "h:mm tt\0"
-       "h:mm:ss tt\0"
-       "MMMM d\0"
-       "Sunday\0"
-       "Monday\0"
-       "Tuesday\0"
-       "Wednesday\0"
-       "Thursday\0"
-       "Friday\0"
-       "Saturday\0"
-       "Sun\0"
-       "Mon\0"
-       "Tue\0"
-       "Wed\0"
-       "Thu\0"
-       "Fri\0"
-       "Sat\0"
-       "W\0"
-       "January\0"
-       "February\0"
-       "March\0"
-       "May\0"
-       "June\0"
-       "July\0"
-       "October\0"
-       "December\0"
-       "Mar\0"
-       "Oct\0"
-       "Dec\0"
-       "M/d/yyyy\0"
-       "M/d/yy\0"
-       "MM/dd/yy\0"
-       "MM/dd/yyyy\0"
-       "dd-MMM-yy\0"
-       "dddd, MMMM d, yyyy\0"
-       "MMMM d, yyyy\0"
-       "dddd, d MMMM, yyyy\0"
-       "d MMMM, yyyy\0"
-       "d 'de' MMMM\0"
-       "domingo\0"
-       "lunes\0"
-       "martes\0"
-       "mi\xc3\xa9rcoles\0"
-       "jueves\0"
-       "viernes\0"
-       "s\xc3\xa1\x62\x61\x64o\0"
-       "Dom.\0"
-       "Lun.\0"
-       "Mar.\0"
-       "Mi\xc3\xa9.\0"
-       "Jue.\0"
-       "Vie.\0"
-       "S\xc3\xa1\x62.\0"
-       "J\0"
-       "V\0"
-       "Enero\0"
-       "Febrero\0"
-       "Marzo\0"
-       "Abril\0"
-       "Mayo\0"
-       "Junio\0"
-       "Julio\0"
-       "Agosto\0"
-       "Septiembre\0"
-       "Octubre\0"
-       "Noviembre\0"
-       "Diciembre\0"
-       "enero\0"
-       "febrero\0"
-       "marzo\0"
-       "mayo\0"
-       "junio\0"
-       "julio\0"
-       "agosto\0"
-       "septiembre\0"
-       "noviembre\0"
-       "diciembre\0"
-       "Ene.\0"
-       "Feb.\0"
-       "Abr.\0"
-       "May.\0"
-       "Jun.\0"
-       "Jul.\0"
-       "Ago.\0"
-       "Sept.\0"
-       "Oct.\0"
-       "Nov.\0"
-       "Dic.\0"
-       "d/MM/yy\0"
-       "d-M-yy\0"
-       "dddd, d' de 'MMMM' de 'yyyy\0"
-       "dddd d' de 'MMMM' de 'yyyy\0"
-       "d' de 'MMMM' de 'yyyy\0"
-       "H.mm\0"
-       "HH.mm\0"
-       "HH'H'mm\0"
-       "H.mm.ss\0"
-       "HH.mm.ss\0"
-       "HH'H'mm.ss\0"
-       "MMMM' de 'yyyy\0"
        "ap.\0"
        "ip.\0"
-       "sunnuntaina\0"
-       "maanantaina\0"
-       "tiistaina\0"
-       "keskiviikkona\0"
-       "torstaina\0"
-       "perjantaina\0"
-       "lauantaina\0"
-       "su\0"
-       "ma\0"
-       "ti\0"
-       "ke\0"
-       "to\0"
-       "pe\0"
-       "la\0"
-       "K\0"
-       "tammikuu\0"
-       "helmikuu\0"
-       "maaliskuu\0"
-       "huhtikuu\0"
-       "toukokuu\0"
-       "kes\xc3\xa4kuu\0"
-       "hein\xc3\xa4kuu\0"
-       "elokuu\0"
-       "syyskuu\0"
-       "lokakuu\0"
-       "marraskuu\0"
-       "joulukuu\0"
-       "tammikuuta\0"
-       "helmikuuta\0"
-       "maaliskuuta\0"
-       "huhtikuuta\0"
-       "toukokuuta\0"
-       "kes\xc3\xa4kuuta\0"
-       "hein\xc3\xa4kuuta\0"
-       "elokuuta\0"
-       "syyskuuta\0"
-       "lokakuuta\0"
-       "marraskuuta\0"
-       "joulukuuta\0"
-       "tammi\0"
-       "helmi\0"
-       "maalis\0"
-       "huhti\0"
-       "touko\0"
-       "kes\xc3\xa4\0"
-       "hein\xc3\xa4\0"
-       "elo\0"
-       "syys\0"
-       "loka\0"
-       "marras\0"
-       "joulu\0"
-       "d.M.yyyy\0"
-       "dimanche\0"
-       "lundi\0"
-       "mardi\0"
-       "mercredi\0"
-       "jeudi\0"
-       "vendredi\0"
-       "samedi\0"
-       "dim.\0"
-       "lun.\0"
-       "mar.\0"
-       "mer.\0"
-       "jeu.\0"
-       "ven.\0"
-       "sam.\0"
-       "janvier\0"
-       "f\xc3\xa9vrier\0"
-       "mars\0"
-       "avril\0"
-       "mai\0"
-       "juin\0"
-       "juillet\0"
-       "ao\xc3\xbbt\0"
-       "septembre\0"
-       "octobre\0"
-       "d\xc3\xa9\x63\x65mbre\0"
-       "janv.\0"
-       "f\xc3\xa9vr.\0"
-       "avr.\0"
-       "juil.\0"
-       "sept.\0"
-       "d\xc3\xa9\x63.\0"
-       "dddd d MMMM yyyy\0"
-       "d MMM yy\0"
-       "HH' h 'mm\0"
-       "HH'h'mm\0"
        "\xd7\x9c\xd7\xa4\xd7\xa0\xd7\x94\xd7\xb4\xd7\xa6\0"
        "\xd7\x90\xd7\x97\xd7\x94\xd7\xb4\xd7\xa6\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa8\xd7\x90\xd7\xa9\xd7\x95\xd7\x9f\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\xa0\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\x9c\xd7\x99\xd7\xa9\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa8\xd7\x91\xd7\x99\xd7\xa2\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x97\xd7\x9e\xd7\x99\xd7\xa9\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\x99\xd7\xa9\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\x91\xd7\xaa\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x90\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x91\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x92\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x93\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x94\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x95\xd7\xb3\0"
-       "\xd7\xa9\xd7\x91\xd7\xaa\0"
-       "\xd7\x90\xd7\xb3\0"
-       "\xd7\x91\xd7\xb3\0"
-       "\xd7\x92\xd7\xb3\0"
-       "\xd7\x93\xd7\xb3\0"
-       "\xd7\x94\xd7\xb3\0"
-       "\xd7\x95\xd7\xb3\0"
-       "\xd7\xa9\xd7\xb3\0"
-       "\xd7\x99\xd7\xa0\xd7\x95\xd7\x90\xd7\xa8\0"
-       "\xd7\xa4\xd7\x91\xd7\xa8\xd7\x95\xd7\x90\xd7\xa8\0"
-       "\xd7\x9e\xd7\xa8\xd7\xa5\0"
-       "\xd7\x90\xd7\xa4\xd7\xa8\xd7\x99\xd7\x9c\0"
-       "\xd7\x9e\xd7\x90\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\xa0\xd7\x99\0"
-       "\xd7\x99\xd7\x95\xd7\x9c\xd7\x99\0"
-       "\xd7\x90\xd7\x95\xd7\x92\xd7\x95\xd7\xa1\xd7\x98\0"
-       "\xd7\xa1\xd7\xa4\xd7\x98\xd7\x9e\xd7\x91\xd7\xa8\0"
-       "\xd7\x90\xd7\x95\xd7\xa7\xd7\x98\xd7\x95\xd7\x91\xd7\xa8\0"
-       "\xd7\xa0\xd7\x95\xd7\x91\xd7\x9e\xd7\x91\xd7\xa8\0"
-       "\xd7\x93\xd7\xa6\xd7\x9e\xd7\x91\xd7\xa8\0"
-       "\xd7\x99\xd7\xa0\xd7\x95\xd7\xb3\0"
-       "\xd7\xa4\xd7\x91\xd7\xa8\xd7\xb3\0"
-       "\xd7\x90\xd7\xa4\xd7\xa8\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\xa0\xd7\xb3\0"
-       "\xd7\x99\xd7\x95\xd7\x9c\xd7\xb3\0"
-       "\xd7\x90\xd7\x95\xd7\x92\xd7\xb3\0"
-       "\xd7\xa1\xd7\xa4\xd7\x98\xd7\xb3\0"
-       "\xd7\x90\xd7\x95\xd7\xa7\xd7\xb3\0"
-       "\xd7\xa0\xd7\x95\xd7\x91\xd7\xb3\0"
-       "\xd7\x93\xd7\xa6\xd7\x9e\xd7\xb3\0"
-       "dd MMMM yyyy\0"
-       "dd-MMMM-yyyy\0"
-       "dd '\xd7\x91'MMMM yyyy\0"
-       "dd MMM yy\0"
-       "dddd dd MMMM yyyy\0"
-       "dddd dd '\xd7\x91'MMMM yyyy\0"
-       "ddd dd '\xd7\x91'MMMM yyyy\0"
-       "MMMM d.\0"
        "de.\0"
        "du.\0"
-       "vas\xc3\xa1rnap\0"
-       "h\xc3\xa9tf\xc5\x91\0"
-       "kedd\0"
-       "szerda\0"
-       "cs\xc3\xbct\xc3\xb6rt\xc3\xb6k\0"
-       "p\xc3\xa9ntek\0"
-       "szombat\0"
-       "H\0"
-       "Sze\0"
-       "Cs\0"
-       "Szo\0"
-       "Sz\0"
-       "janu\xc3\xa1r\0"
-       "febru\xc3\xa1r\0"
-       "m\xc3\xa1rcius\0"
-       "\xc3\xa1prilis\0"
-       "m\xc3\xa1jus\0"
-       "j\xc3\xbanius\0"
-       "j\xc3\xbalius\0"
-       "augusztus\0"
-       "szeptember\0"
-       "okt\xc3\xb3\x62\x65r\0"
-       "jan.\0"
-       "febr.\0"
-       "m\xc3\xa1rc.\0"
-       "\xc3\xa1pr.\0"
-       "m\xc3\xa1j.\0"
-       "j\xc3\xban.\0"
-       "j\xc3\xbal.\0"
-       "aug.\0"
-       "szept.\0"
-       "okt.\0"
-       "dec.\0"
        ". \0"
-       "yyyy. MM. dd.\0"
-       "yyyy. MMM d.\0"
-       "yyyy. MMMM d., dddd\0"
-       "yyyy. MMMM d.\0"
-       "yyyy. MMMM\0"
        "f.h.\0"
        "e.h.\0"
-       "sunnudagur\0"
-       "m\xc3\xa1nudagur\0"
-       "\xc3\xberi\xc3\xb0judagur\0"
-       "mi\xc3\xb0vikudagur\0"
-       "fimmtudagur\0"
-       "f\xc3\xb6studagur\0"
-       "laugardagur\0"
-       "sun.\0"
-       "m\xc3\xa1n.\0"
-       "\xc3\xberi.\0"
-       "mi\xc3\xb0.\0"
-       "fim.\0"
-       "f\xc3\xb6s.\0"
-       "lau.\0"
-       "\xc3\x9e\0"
-       "jan\xc3\xba\x61r\0"
-       "febr\xc3\xba\x61r\0"
-       "apr\xc3\xadl\0"
-       "ma\xc3\xad\0"
-       "j\xc3\xban\xc3\xad\0"
-       "j\xc3\xbal\xc3\xad\0"
-       "\xc3\xa1g\xc3\xbast\0"
-       "n\xc3\xb3vember\0"
-       "desember\0"
-       "apr.\0"
-       "\xc3\xa1g\xc3\xba.\0"
-       "sep.\0"
-       "n\xc3\xb3v.\0"
-       "d. MMM yyyy\0"
-       "domenica\0"
-       "luned\xc3\xac\0"
-       "marted\xc3\xac\0"
-       "mercoled\xc3\xac\0"
-       "gioved\xc3\xac\0"
-       "venerd\xc3\xac\0"
-       "sabato\0"
-       "dom\0"
-       "lun\0"
-       "mer\0"
-       "gio\0"
-       "ven\0"
-       "sab\0"
-       "G\0"
-       "Gennaio\0"
-       "Febbraio\0"
-       "Aprile\0"
-       "Maggio\0"
-       "Giugno\0"
-       "Luglio\0"
-       "Settembre\0"
-       "Ottobre\0"
-       "Novembre\0"
-       "Dicembre\0"
-       "gennaio\0"
-       "febbraio\0"
-       "aprile\0"
-       "maggio\0"
-       "giugno\0"
-       "luglio\0"
-       "settembre\0"
-       "ottobre\0"
-       "dicembre\0"
-       "gen\0"
-       "mag\0"
-       "giu\0"
-       "lug\0"
-       "ago\0"
-       "set\0"
-       "ott\0"
-       "dic\0"
-       "dd.M.yy\0"
-       "d-MMM-yy\0"
        "\xe5\x8d\x88\xe5\x89\x8d\0"
        "\xe5\x8d\x88\xe5\xbe\x8c\0"
-       "\xe6\x97\xa5\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe6\x9c\x88\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe7\x81\xab\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe6\xb0\xb4\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe6\x9c\xa8\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe9\x87\x91\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe5\x9c\x9f\xe6\x9b\x9c\xe6\x97\xa5\0"
-       "\xe6\x9c\x88\0"
-       "\xe7\x81\xab\0"
-       "\xe6\xb0\xb4\0"
-       "\xe6\x9c\xa8\0"
-       "\xe9\x87\x91\0"
-       "\xe5\x9c\x9f\0"
-       "1\0"
-       "2\0"
-       "3\0"
-       "4\0"
-       "5\0"
-       "6\0"
-       "7\0"
-       "8\0"
-       "9\0"
-       "10\0"
-       "11\0"
-       "12\0"
-       "yyyy'\xe5\xb9\xb4'MM'\xe6\x9c\x88'dd'\xe6\x97\xa5'\0"
-       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5 'dddd\0"
-       "yyyy'\xe5\xb9\xb4'MM'\xe6\x9c\x88'dd'\xe6\x97\xa5 'dddd\0"
-       "yyyy'\xe5\xb9\xb4'MMM'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
-       "yyyy'\xe5\xb9\xb4'MMM'\xe6\x9c\x88'd'\xe6\x97\xa5 'dddd\0"
-       "yyyy'\xe5\xb9\xb4'MMMMd'\xe6\x97\xa5'\0"
-       "yyyy'\xe5\xb9\xb4'MMMMd'\xe6\x97\xa5 'dddd\0"
-       "yyyy'\xe5\xb9\xb4'MMM'\xe6\x9c\x88'\0"
-       "M\xec\x9b\x94 d\xec\x9d\xbc\0"
-       "\xec\x98\xa4\xec\xa0\x84\0"
-       "\xec\x98\xa4\xed\x9b\x84\0"
-       "\xec\x9d\xbc\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xec\x9b\x94\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xed\x99\x94\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xec\x88\x98\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xeb\xaa\xa9\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xea\xb8\x88\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xed\x86\xa0\xec\x9a\x94\xec\x9d\xbc\0"
-       "\xec\x9d\xbc\0"
-       "\xec\x9b\x94\0"
-       "\xed\x99\x94\0"
-       "\xec\x88\x98\0"
-       "\xeb\xaa\xa9\0"
-       "\xea\xb8\x88\0"
-       "\xed\x86\xa0\0"
-       "1\xec\x9b\x94\0"
-       "2\xec\x9b\x94\0"
-       "3\xec\x9b\x94\0"
-       "4\xec\x9b\x94\0"
-       "5\xec\x9b\x94\0"
-       "6\xec\x9b\x94\0"
-       "7\xec\x9b\x94\0"
-       "8\xec\x9b\x94\0"
-       "9\xec\x9b\x94\0"
-       "10\xec\x9b\x94\0"
-       "11\xec\x9b\x94\0"
-       "12\xec\x9b\x94\0"
-       "yy-MM-dd\0"
-       "yyyy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc' dddd\0"
-       "yyyy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc'\0"
-       "yy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc' dddd\0"
-       "yy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc'\0"
-       "yyyy'\xeb\x85\x84' MM'\xec\x9b\x94' dd'\xec\x9d\xbc' dddd\0"
-       "yyyy'\xeb\x85\x84' MM'\xec\x9b\x94' dd'\xec\x9d\xbc'\0"
-       "yyyy'\xeb\x85\x84 'MMM'\xec\x9b\x94 'd'\xec\x9d\xbc 'dddd\0"
-       "yyyy'\xeb\x85\x84 'MMM'\xec\x9b\x94 'd'\xec\x9d\xbc'\0"
-       "yyyy'\xeb\x85\x84 'MMMM d'\xec\x9d\xbc 'dddd\0"
-       "yyyy'\xeb\x85\x84 'MMMM d'\xec\x9d\xbc'\0"
-       "yyyy'\xeb\x85\x84' M'\xec\x9b\x94'\0"
-       "yyyy'\xeb\x85\x84' MMM'\xec\x9b\x94'\0"
-       "yyyy'\xeb\x85\x84' MMMM\0"
        "a.m.\0"
        "p.m.\0"
-       "zondag\0"
-       "maandag\0"
-       "dinsdag\0"
-       "woensdag\0"
-       "donderdag\0"
-       "vrijdag\0"
-       "zaterdag\0"
-       "zo\0"
-       "di\0"
-       "wo\0"
-       "do\0"
-       "vr\0"
-       "za\0"
-       "Z\0"
-       "januari\0"
-       "februari\0"
-       "maart\0"
-       "mei\0"
-       "augustus\0"
-       "mrt\0"
-       "d-M-yyyy\0"
-       "dd.MMM.yyyy\0"
-       "HH.mm' uur'\0"
-       "HH:mm' uur'\0"
-       "HH.mm.ss' uur'\0"
-       "HH:mm:ss' uur'\0"
-       "d.MMMM.\0"
-       "s\xc3\xb8.\0"
-       "ma.\0"
-       "ti.\0"
-       "on.\0"
-       "to.\0"
-       "fr.\0"
-       "l\xc3\xb8.\0"
-       "des\0"
-       "niedziela\0"
-       "poniedzia\xc5\x82\x65k\0"
-       "wtorek\0"
-       "\xc5\x9broda\0"
-       "czwartek\0"
-       "pi\xc4\x85tek\0"
-       "niedz.\0"
-       "pon.\0"
-       "wt.\0"
-       "\xc5\x9br.\0"
-       "czw.\0"
-       "pt.\0"
-       "sob.\0"
-       "\xc5\x9a\0"
-       "C\0"
-       "stycze\xc5\x84\0"
-       "luty\0"
-       "marzec\0"
-       "kwiecie\xc5\x84\0"
-       "czerwiec\0"
-       "lipiec\0"
-       "sierpie\xc5\x84\0"
-       "wrzesie\xc5\x84\0"
-       "pa\xc5\xba\x64ziernik\0"
-       "grudzie\xc5\x84\0"
-       "stycznia\0"
-       "lutego\0"
-       "marca\0"
-       "kwietnia\0"
-       "maja\0"
-       "czerwca\0"
-       "lipca\0"
-       "sierpnia\0"
-       "wrze\xc5\x9bnia\0"
-       "pa\xc5\xba\x64ziernika\0"
-       "listopada\0"
-       "grudnia\0"
-       "sty\0"
-       "lut\0"
-       "kwi\0"
-       "cze\0"
-       "lip\0"
-       "sie\0"
-       "wrz\0"
-       "pa\xc5\xba\0"
-       "gru\0"
-       "segunda-feira\0"
-       "ter\xc3\xa7\x61-feira\0"
-       "quarta-feira\0"
-       "quinta-feira\0"
-       "sexta-feira\0"
-       "seg\0"
-       "ter\0"
-       "qua\0"
-       "qui\0"
-       "sex\0"
-       "s\xc3\xa1\x62\0"
-       "Q\0"
-       "janeiro\0"
-       "fevereiro\0"
-       "mar\xc3\xa7o\0"
-       "maio\0"
-       "junho\0"
-       "julho\0"
-       "setembro\0"
-       "outubro\0"
-       "novembro\0"
-       "dezembro\0"
-       "fev\0"
-       "abr\0"
-       "out\0"
-       "dez\0"
-       "d.M.yy\0"
-       "am\0"
-       "sm\0"
-       "dumengia\0"
-       "glindesdi\0"
-       "mesemna\0"
-       "gievgia\0"
-       "venderdi\0"
-       "sonda\0"
-       "du\0"
-       "gli\0"
-       "me\0"
-       "gie\0"
-       "ve\0"
-       "schaner\0"
-       "favrer\0"
-       "avrigl\0"
-       "matg\0"
-       "zercladur\0"
-       "fanadur\0"
-       "avust\0"
-       "settember\0"
-       "october\0"
-       "schan.\0"
-       "favr.\0"
-       "zercl.\0"
-       "fan.\0"
-       "sett.\0"
-       "dddd, 'ils' d 'da' MMMM yyyy\0"
-       "d 'da' MMMM yyyy\0"
-       "duminic\xc4\x83\0"
-       "luni\0"
-       "mar\xc8\x9bi\0"
-       "miercuri\0"
-       "joi\0"
-       "vineri\0"
-       "s\xc3\xa2mb\xc4\x83t\xc4\x83\0"
-       "Dum\0"
-       "Lun\0"
-       "Mie\0"
-       "Joi\0"
-       "Vin\0"
-       "S\xc3\xa2m\0"
-       "ianuarie\0"
-       "februarie\0"
-       "martie\0"
-       "aprilie\0"
-       "iunie\0"
-       "iulie\0"
-       "septembrie\0"
-       "octombrie\0"
-       "noiembrie\0"
-       "decembrie\0"
-       "ian.\0"
-       "iun.\0"
-       "iul.\0"
-       "\xd0\xb4\xd0\xbe \xd0\xbf\xd0\xbe\xd0\xbb\xd1\x83\xd0\xb4\xd0\xbd\xd1\x8f\0"
-       "\xd0\xbf\xd0\xbe\xd1\x81\xd0\xbb\xd0\xb5 \xd0\xbf\xd0\xbe\xd0\xbb\xd1\x83\xd0\xb4\xd0\xbd\xd1\x8f\0"
-       "\xd0\xb2\xd0\xbe\xd1\x81\xd0\xba\xd1\x80\xd0\xb5\xd1\x81\xd0\xb5\xd0\xbd\xd1\x8c\xd0\xb5\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd1\x8c\xd0\xbd\xd0\xb8\xd0\xba\0"
-       "\xd1\x81\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb0\0"
-       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb3\0"
-       "\xd0\xbf\xd1\x8f\xd1\x82\xd0\xbd\xd0\xb8\xd1\x86\xd0\xb0\0"
-       "\xd1\x81\xd1\x83\xd0\xb1\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
-       "\xd0\x92\xd1\x81\0"
-       "\xd0\x9f\xd0\xbd\0"
-       "\xd0\x92\xd1\x82\0"
-       "\xd0\xa1\xd1\x80\0"
-       "\xd0\xa7\xd1\x82\0"
-       "\xd0\x9f\xd1\x82\0"
-       "\xd0\xa1\xd0\xb1\0"
-       "\xd0\x92\0"
-       "\xd0\x9f\0"
-       "\xd0\xa1\0"
-       "\xd0\xa7\0"
-       "\xd0\xaf\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\xd1\x8c\0"
-       "\xd0\xa4\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\xd1\x8c\0"
-       "\xd0\x9c\xd0\xb0\xd1\x80\xd1\x82\0"
-       "\xd0\x90\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\xd1\x8c\0"
-       "\xd0\x9c\xd0\xb0\xd0\xb9\0"
-       "\xd0\x98\xd1\x8e\xd0\xbd\xd1\x8c\0"
-       "\xd0\x98\xd1\x8e\xd0\xbb\xd1\x8c\0"
-       "\xd0\x90\xd0\xb2\xd0\xb3\xd1\x83\xd1\x81\xd1\x82\0"
-       "\xd0\xa1\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd0\x9e\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd0\x9d\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd0\x94\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd1\x8f\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\xd1\x8f\0"
-       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\xd1\x8f\0"
-       "\xd0\xbc\xd0\xb0\xd1\x80\xd1\x82\xd0\xb0\0"
-       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\xd1\x8f\0"
-       "\xd0\xbc\xd0\xb0\xd1\x8f\0"
-       "\xd0\xb8\xd1\x8e\xd0\xbd\xd1\x8f\0"
-       "\xd0\xb8\xd1\x8e\xd0\xbb\xd1\x8f\0"
-       "\xd0\xb0\xd0\xb2\xd0\xb3\xd1\x83\xd1\x81\xd1\x82\xd0\xb0\0"
-       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8f\0"
-       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8f\0"
-       "\xd0\xbd\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8f\0"
-       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\xd1\x8f\0"
-       "\xd0\xaf\xd0\xbd\xd0\xb2.\0"
-       "\xd0\xa4\xd0\xb5\xd0\xb2\xd1\x80.\0"
-       "\xd0\x90\xd0\xbf\xd1\x80.\0"
-       "\xd0\x90\xd0\xb2\xd0\xb3.\0"
-       "\xd0\xa1\xd0\xb5\xd0\xbd\xd1\x82.\0"
-       "\xd0\x9e\xd0\xba\xd1\x82.\0"
-       "\xd0\x9d\xd0\xbe\xd1\x8f\xd0\xb1.\0"
-       "\xd0\x94\xd0\xb5\xd0\xba.\0"
-       "nedjelja\0"
-       "ponedjeljak\0"
-       "utorak\0"
-       "srijeda\0"
-       "\xc4\x8d\x65tvrtak\0"
-       "petak\0"
-       "subota\0"
-       "ned\0"
-       "pon\0"
-       "uto\0"
-       "sri\0"
-       "\xc4\x8d\x65t\0"
-       "pet\0"
-       "sub\0"
-       "n\0"
-       "p\0"
-       "u\0"
-       "s\0"
-       "\xc4\x8d\0"
-       "sije\xc4\x8d\x61nj\0"
-       "velja\xc4\x8d\x61\0"
-       "o\xc5\xbeujak\0"
-       "travanj\0"
-       "svibanj\0"
-       "lipanj\0"
-       "srpanj\0"
-       "kolovoz\0"
-       "rujan\0"
-       "studeni\0"
-       "prosinac\0"
-       "sije\xc4\x8dnja\0"
-       "velja\xc4\x8d\x65\0"
-       "o\xc5\xbeujka\0"
-       "travnja\0"
-       "svibnja\0"
-       "lipnja\0"
-       "srpnja\0"
-       "kolovoza\0"
-       "rujna\0"
-       "studenoga\0"
-       "prosinca\0"
-       "sij\0"
-       "velj\0"
-       "o\xc5\xbeu\0"
-       "tra\0"
-       "svi\0"
-       "kol\0"
-       "ruj\0"
-       "stu\0"
-       "d.M.yyyy.\0"
-       "d.M.yy.\0"
-       "d. M. yyyy.\0"
-       "dd.MM.yyyy.\0"
-       "d. M. yy.\0"
-       "dd.MM.yy.\0"
-       "dd. MM. yy.\0"
-       "d. MMMM yyyy.\0"
-       "dd. MMMM yyyy.\0"
-       "dddd, d. MMMM yyyy.\0"
-       "nede\xc4\xbe\x61\0"
-       "pondelok\0"
-       "utorok\0"
-       "streda\0"
-       "\xc5\xa1tvrtok\0"
-       "piatok\0"
-       "ut\0"
-       "\xc5\xa1t\0"
-       "pi\0"
-       "U\0"
-       "\xc5\xa0\0"
-       "marec\0"
-       "m\xc3\xa1j\0"
-       "j\xc3\xban\0"
-       "j\xc3\xbal\0"
-       "janu\xc3\xa1ra\0"
-       "febru\xc3\xa1ra\0"
-       "apr\xc3\xadla\0"
-       "m\xc3\xa1ja\0"
-       "j\xc3\xbana\0"
-       "j\xc3\xbala\0"
-       "augusta\0"
-       "septembra\0"
-       "okt\xc3\xb3\x62ra\0"
-       "novembra\0"
-       "decembra\0"
-       "paradite\0"
-       "pasdite\0"
-       "e diel\0"
-       "e h\xc3\xabn\xc3\xab\0"
-       "e mart\xc3\xab\0"
-       "e m\xc3\xabrkur\xc3\xab\0"
-       "e enjte\0"
-       "e premte\0"
-       "e shtun\xc3\xab\0"
-       "Die\0"
-       "H\xc3\xabn\0"
-       "M\xc3\xabr\0"
-       "Enj\0"
-       "Pre\0"
-       "Sht\0"
-       "E\0"
-       "janar\0"
-       "shkurt\0"
-       "prill\0"
-       "qershor\0"
-       "korrik\0"
-       "gusht\0"
-       "shtator\0"
-       "tetor\0"
-       "n\xc3\xabntor\0"
-       "dhjetor\0"
-       "Shk\0"
-       "Pri\0"
-       "Maj\0"
-       "Qer\0"
-       "Kor\0"
-       "Gsh\0"
-       "Tet\0"
-       "N\xc3\xabn\0"
-       "Dhj\0"
-       "'den 'd MMMM\0"
-       "FM\0"
-       "EM\0"
-       "s\xc3\xb6ndag\0"
-       "m\xc3\xa5ndag\0"
-       "tisdag\0"
-       "l\xc3\xb6rdag\0"
-       "s\xc3\xb6n\0"
-       "m\xc3\xa5n\0"
-       "tis\0"
-       "l\xc3\xb6r\0"
-       "augusti\0"
-       "'den 'd MMMM yyyy\0"
-       "dddd' den 'd MMMM yyyy\0"
-       "'kl 'H:mm\0"
-       "'kl 'H:mm:ss\0"
-       "dd MMM yyyy\0"
-       "ddd d MMMM yyyy\0"
-       "'\xe0\xb8\xa7\xe0\xb8\xb1\xe0\xb8\x99'dddd'\xe0\xb8\x97\xe0\xb8\xb5\xe0\xb9\x88' d MMMM gg yyyy\0"
+       "\xd0\x94\xd0\x9f\0"
+       "\xd0\x9f\xd0\x9f\0"
+       "e paradites\0"
+       "e pasdites\0"
+       "fm\0"
+       "em\0"
        "\xc3\x96\xc3\x96\0"
        "\xc3\x96S\0"
-       "Pazar\0"
-       "Pazartesi\0"
-       "Sal\xc4\xb1\0"
-       "\xc3\x87\x61r\xc5\x9f\x61mba\0"
-       "Per\xc5\x9f\x65mbe\0"
-       "Cuma\0"
-       "Cumartesi\0"
-       "Paz\0"
-       "Pzt\0"
-       "Sal\0"
-       "\xc3\x87\x61r\0"
-       "Per\0"
-       "Cum\0"
-       "Cmt\0"
-       "\xc3\x87\0"
-       "Ocak\0"
-       "\xc5\x9eubat\0"
-       "Mart\0"
-       "Nisan\0"
-       "May\xc4\xb1s\0"
-       "Haziran\0"
-       "Temmuz\0"
-       "A\xc4\x9fustos\0"
-       "Eyl\xc3\xbcl\0"
-       "Ekim\0"
-       "Kas\xc4\xb1m\0"
-       "Aral\xc4\xb1k\0"
-       "Oca\0"
-       "\xc5\x9eub\0"
-       "Nis\0"
-       "Haz\0"
-       "Tem\0"
-       "A\xc4\x9fu\0"
-       "Eyl\0"
-       "Eki\0"
-       "Kas\0"
-       "Ara\0"
-       "d.MM.yyyy\0"
-       "d MMMM yyyy dddd\0"
-       "\xd9\x82\xd8\xa8\xd9\x84 \xd8\xaf\xd9\x88\xd9\xbe\xdb\x81\xd8\xb1\0"
-       "\xd8\xa8\xd8\xb9\xd8\xaf \xd8\xaf\xd9\x88\xd9\xbe\xdb\x81\xd8\xb1\0"
-       "\xd8\xa7\xd8\xaa\xd9\x88\xd8\xa7\xd8\xb1\0"
-       "\xd8\xb3\xd9\x88\xd9\x85\xd9\x88\xd8\xa7\xd8\xb1\0"
-       "\xd9\x85\xd9\x86\xda\xaf\xd9\x84\0"
-       "\xd8\xa8\xd8\xaf\xda\xbe\0"
-       "\xd8\xac\xd9\x85\xd8\xb9\xd8\xb1\xd8\xa7\xd8\xaa\0"
-       "\xd8\xac\xd9\x85\xd8\xb9\xdb\x81\0"
-       "\xdb\x81\xd9\x81\xd8\xaa\xdb\x81\0"
-       "\xd8\xac\xd9\x86\xd9\x88\xd8\xb1\xdb\x8c\0"
-       "\xd9\x81\xd8\xb1\xd9\x88\xd8\xb1\xdb\x8c\0"
-       "\xd9\x85\xd8\xa7\xd8\xb1\xda\x86\0"
-       "\xd8\xa7\xd9\xbe\xd8\xb1\xdb\x8c\xd9\x84\0"
-       "\xd9\x85\xd8\xa6\xdb\x8c\0"
-       "\xd8\xac\xd9\x88\xd9\x86\0"
-       "\xd8\xac\xd9\x88\xd9\x84\xd8\xa7\xd8\xa6\xdb\x8c\0"
-       "\xd8\xa7\xda\xaf\xd8\xb3\xd8\xaa\0"
-       "\xd8\xb3\xd8\xaa\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xd8\xa7\xda\xa9\xd8\xaa\xd9\x88\xd8\xa8\xd8\xb1\0"
-       "\xd9\x86\xd9\x88\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xd8\xaf\xd8\xb3\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "dd MMMM, yyyy\0"
-       "Minggu\0"
-       "Senin\0"
-       "Selasa\0"
-       "Rabu\0"
-       "Kamis\0"
-       "Jumat\0"
-       "Sabtu\0"
-       "Min\0"
-       "Sen\0"
-       "Sel\0"
-       "Rab\0"
-       "Kam\0"
-       "Jum\0"
-       "Sab\0"
-       "R\0"
-       "Januari\0"
-       "Februari\0"
-       "Maret\0"
-       "Mei\0"
-       "Agustus\0"
-       "Desember\0"
-       "Agt\0"
-       "Des\0"
-       "dddd, dd MMMM yyyy\0"
        "\xd0\xb4\xd0\xbf\0"
        "\xd0\xbf\xd0\xbf\0"
-       "\xd0\xbd\xd0\xb5\xd0\xb4\xd1\x96\xd0\xbb\xd1\x8f\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd1\x96\xd0\xbb\xd0\xbe\xd0\xba\0"
-       "\xd0\xb2\xd1\x96\xd0\xb2\xd1\x82\xd0\xbe\xd1\x80\xd0\xbe\xd0\xba\0"
-       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb0\0"
-       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd0\xb5\xd1\x80\0"
-       "\xd0\xbf\xca\xbc\xd1\x8f\xd1\x82\xd0\xbd\xd0\xb8\xd1\x86\xd1\x8f\0"
-       "\xd1\x81\xd1\x83\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
-       "\xd0\x9d\xd0\xb4\0"
-       "\xd0\x9d\0"
-       "\xd0\xa1\xd1\x96\xd1\x87\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\x9b\xd1\x8e\xd1\x82\xd0\xb8\xd0\xb9\0"
-       "\xd0\x91\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb7\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\x9a\xd0\xb2\xd1\x96\xd1\x82\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xa2\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xa7\xd0\xb5\xd1\x80\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\x9b\xd0\xb8\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xa1\xd0\xb5\xd1\x80\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\x92\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\x96\xd0\xbe\xd0\xb2\xd1\x82\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\x9b\xd0\xb8\xd1\x81\xd1\x82\xd0\xbe\xd0\xbf\xd0\xb0\xd0\xb4\0"
-       "\xd0\x93\xd1\x80\xd1\x83\xd0\xb4\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd1\x81\xd1\x96\xd1\x87\xd0\xbd\xd1\x8f\0"
-       "\xd0\xbb\xd1\x8e\xd1\x82\xd0\xbe\xd0\xb3\xd0\xbe\0"
-       "\xd0\xb1\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb7\xd0\xbd\xd1\x8f\0"
-       "\xd0\xba\xd0\xb2\xd1\x96\xd1\x82\xd0\xbd\xd1\x8f\0"
-       "\xd1\x82\xd1\x80\xd0\xb0\xd0\xb2\xd0\xbd\xd1\x8f\0"
-       "\xd1\x87\xd0\xb5\xd1\x80\xd0\xb2\xd0\xbd\xd1\x8f\0"
-       "\xd0\xbb\xd0\xb8\xd0\xbf\xd0\xbd\xd1\x8f\0"
-       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xbf\xd0\xbd\xd1\x8f\0"
-       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81\xd0\xbd\xd1\x8f\0"
-       "\xd0\xb6\xd0\xbe\xd0\xb2\xd1\x82\xd0\xbd\xd1\x8f\0"
-       "\xd0\xbb\xd0\xb8\xd1\x81\xd1\x82\xd0\xbe\xd0\xbf\xd0\xb0\xd0\xb4\xd0\xb0\0"
-       "\xd0\xb3\xd1\x80\xd1\x83\xd0\xb4\xd0\xbd\xd1\x8f\0"
-       "\xd0\xa1\xd1\x96\xd1\x87\0"
-       "\xd0\x9b\xd1\x8e\xd1\x82\0"
-       "\xd0\x91\xd0\xb5\xd1\x80\0"
-       "\xd0\x9a\xd0\xb2\xd1\x96\0"
-       "\xd0\xa2\xd1\x80\xd0\xb0\0"
-       "\xd0\xa7\xd0\xb5\xd1\x80\0"
-       "\xd0\x9b\xd0\xb8\xd0\xbf\0"
-       "\xd0\xa1\xd0\xb5\xd1\x80\0"
-       "\xd0\x92\xd0\xb5\xd1\x80\0"
-       "\xd0\x96\xd0\xbe\xd0\xb2\0"
-       "\xd0\x9b\xd0\xb8\xd1\x81\0"
-       "\xd0\x93\xd1\x80\xd1\x83\0"
-       "d MMMM yyyy' \xd1\x80.'\0"
-       "MMMM yyyy' \xd1\x80.'\0"
-       "\xd1\x80\xd0\xb0\xd0\xbd\xd1\x96\xd1\x86\xd1\x8b\0"
-       "\xd0\xb2\xd0\xb5\xd1\x87\xd0\xb0\xd1\x80\xd0\xb0\0"
-       "\xd0\xbd\xd1\x8f\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbb\xd1\x8f\0"
-       "\xd0\xbf\xd0\xb0\xd0\xbd\xd1\x8f\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbb\xd0\xb0\xd0\xba\0"
-       "\xd0\xb0\xd1\x9e\xd1\x82\xd0\xbe\xd1\x80\xd0\xb0\xd0\xba\0"
-       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xb0\xd0\xb4\xd0\xb0\0"
-       "\xd1\x87\xd0\xb0\xd1\x86\xd0\xb2\xd0\xb5\xd1\x80\0"
-       "\xd0\xbf\xd1\x8f\xd1\x82\xd0\xbd\xd1\x96\xd1\x86\xd0\xb0\0"
-       "\xd0\xb0\xd1\x9e\0"
-       "\xd1\x87\xd1\x86\0"
-       "\xd0\xb0\0"
-       "\xd1\x81\xd1\x82\xd1\x83\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xbb\xd1\x8e\xd1\x82\xd1\x8b\0"
-       "\xd1\x81\xd0\xb0\xd0\xba\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\0"
-       "\xd0\xba\xd1\x80\xd0\xb0\xd1\x81\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\0"
-       "\xd1\x87\xd1\x8d\xd1\x80\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xbb\xd1\x96\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xb6\xd0\xbd\xd1\x96\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb0\xd1\x81\xd0\xb5\xd0\xbd\xd1\x8c\0"
-       "\xd0\xba\xd0\xb0\xd1\x81\xd1\x82\xd1\x80\xd1\x8b\xd1\x87\xd0\xbd\xd1\x96\xd0\xba\0"
-       "\xd0\xbb\xd1\x96\xd1\x81\xd1\x82\xd0\xb0\xd0\xbf\xd0\xb0\xd0\xb4\0"
-       "\xd1\x81\xd0\xbd\xd0\xb5\xd0\xb6\xd0\xb0\xd0\xbd\xd1\x8c\0"
-       "\xd1\x81\xd1\x82\xd1\x83\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbd\xd1\x8f\0"
-       "\xd0\xbb\xd1\x8e\xd1\x82\xd0\xb0\xd0\xb3\xd0\xb0\0"
-       "\xd1\x81\xd0\xb0\xd0\xba\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\xd0\xb0\0"
-       "\xd0\xba\xd1\x80\xd0\xb0\xd1\x81\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\xd0\xb0\0"
-       "\xd1\x87\xd1\x8d\xd1\x80\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8f\0"
-       "\xd0\xbb\xd1\x96\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8f\0"
-       "\xd0\xb6\xd0\xbd\xd1\x96\xd1\x9e\xd0\xbd\xd1\x8f\0"
-       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb0\xd1\x81\xd0\xbd\xd1\x8f\0"
-       "\xd0\xba\xd0\xb0\xd1\x81\xd1\x82\xd1\x80\xd1\x8b\xd1\x87\xd0\xbd\xd1\x96\xd0\xba\xd0\xb0\0"
-       "\xd0\xbb\xd1\x96\xd1\x81\xd1\x82\xd0\xb0\xd0\xbf\xd0\xb0\xd0\xb4\xd0\xb0\0"
-       "\xd1\x81\xd0\xbd\xd0\xb5\xd0\xb6\xd0\xbd\xd1\x8f\0"
-       "\xd1\x81\xd1\x82\xd1\x83\0"
-       "\xd0\xbb\xd1\x8e\xd1\x82\0"
-       "\xd1\x81\xd0\xb0\xd0\xba\0"
-       "\xd0\xba\xd1\x80\xd0\xb0\0"
-       "\xd1\x87\xd1\x8d\xd1\x80\0"
-       "\xd0\xbb\xd1\x96\xd0\xbf\0"
-       "\xd0\xb6\xd0\xbd\xd1\x96\0"
-       "\xd0\xb2\xd0\xb5\xd1\x80\0"
-       "\xd0\xba\xd0\xb0\xd1\x81\0"
-       "\xd0\xbb\xd1\x96\xd1\x81\0"
-       "\xd1\x81\xd0\xbd\xd0\xb5\0"
-       "MMMM yyyy \xd0\xb3.\0"
-       "dop.\0"
        "pop.\0"
-       "nedelja\0"
-       "ponedeljek\0"
-       "torek\0"
-       "sreda\0"
-       "\xc4\x8d\x65trtek\0"
-       "petek\0"
-       "sre\0"
-       "sob\0"
-       "t\0"
-       "junij\0"
-       "julij\0"
-       "avgust\0"
-       "avg\0"
-       "d. MM. yyyy\0"
-       "dddd, dd. MMMM yyyy\0"
-       "dd. MMMM yyyy\0"
-       "e.k.\0"
-       "p.k.\0"
-       "p\xc3\xbchap\xc3\xa4\x65v\0"
-       "esmasp\xc3\xa4\x65v\0"
-       "teisip\xc3\xa4\x65v\0"
-       "kolmap\xc3\xa4\x65v\0"
-       "neljap\xc3\xa4\x65v\0"
-       "reede\0"
-       "laup\xc3\xa4\x65v\0"
-       "jaanuar\0"
-       "veebruar\0"
-       "m\xc3\xa4rts\0"
-       "aprill\0"
-       "juuni\0"
-       "juuli\0"
-       "oktoober\0"
-       "detsember\0"
-       "jaan\0"
-       "veebr\0"
-       "sept\0"
-       "dets\0"
-       "H:mm.ss\0"
-       "priek\xc5\xa1pusdien\xc4\x81\0"
-       "p\xc4\x93\x63pusdien\xc4\x81\0"
-       "sv\xc4\x93tdiena\0"
-       "pirmdiena\0"
-       "otrdiena\0"
-       "tre\xc5\xa1\x64iena\0"
-       "ceturtdiena\0"
-       "piektdiena\0"
-       "sestdiena\0"
-       "Sv\0"
-       "Pr\0"
-       "Ot\0"
-       "Tr\0"
-       "Ce\0"
-       "Pk\0"
-       "Se\0"
-       "Janv\xc4\x81ris\0"
-       "Febru\xc4\x81ris\0"
-       "Marts\0"
-       "Apr\xc4\xablis\0"
-       "Maijs\0"
-       "J\xc5\xabnijs\0"
-       "J\xc5\xablijs\0"
-       "Augusts\0"
-       "Septembris\0"
-       "Oktobris\0"
-       "Novembris\0"
-       "Decembris\0"
-       "janv\xc4\x81ris\0"
-       "febru\xc4\x81ris\0"
-       "apr\xc4\xablis\0"
-       "maijs\0"
-       "j\xc5\xabnijs\0"
-       "j\xc5\xablijs\0"
-       "augusts\0"
-       "septembris\0"
-       "oktobris\0"
-       "novembris\0"
-       "decembris\0"
-       "Janv.\0"
-       "Febr.\0"
-       "Apr.\0"
-       "J\xc5\xabn.\0"
-       "J\xc5\xabl.\0"
-       "Aug.\0"
-       "Okt.\0"
-       "Dec.\0"
-       "yyyy. 'gada' d. MMM\0"
-       "dddd, yyyy. 'gada' d. MMMM\0"
-       "yyyy. 'gada' d. MMMM\0"
-       "yyyy. 'g'. MMMM\0"
-       "pr.p.\0"
-       "sekmadienis\0"
-       "pirmadienis\0"
-       "antradienis\0"
-       "tre\xc4\x8diadienis\0"
-       "ketvirtadienis\0"
-       "penktadienis\0"
-       "\xc5\xa1\x65\xc5\xa1tadienis\0"
-       "sk\0"
-       "pr\0"
-       "an\0"
-       "tr\0"
-       "kt\0"
-       "pn\0"
-       "A\0"
-       "sausis\0"
-       "vasaris\0"
-       "kovas\0"
-       "balandis\0"
-       "gegu\xc5\xbe\xc4\x97\0"
-       "bir\xc5\xbe\x65lis\0"
-       "liepa\0"
-       "rugpj\xc5\xabtis\0"
-       "rugs\xc4\x97jis\0"
-       "spalis\0"
-       "lapkritis\0"
-       "gruodis\0"
-       "saus.\0"
-       "vas.\0"
-       "kov.\0"
-       "bal.\0"
-       "geg.\0"
-       "bir\xc5\xbe.\0"
-       "liep.\0"
-       "rugp.\0"
-       "rugs.\0"
-       "spal.\0"
-       "lapkr.\0"
-       "gruod.\0"
-       "yyyy 'm'. MMMM d 'd'., dddd\0"
-       "yyyy 'm'. MMMM d 'd'.\0"
-       "yyyy MMMM\0"
+       "priek\xc5\xa1p.\0"
+       "p\xc4\x93\x63p.\0"
+       "prie\xc5\xa1piet\0"
+       "popiet\0"
        "\xd0\xbf\xd0\xb5. \xd1\x87\xd0\xbe.\0"
        "\xd0\xbf\xd0\xb0. \xd1\x87\xd0\xbe.\0"
-       "\xd0\xaf\xd0\xba\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
-       "\xd0\x94\xd1\x83\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
-       "\xd0\xa1\xd0\xb5\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
-       "\xd0\xa7\xd0\xbe\xd1\x80\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
-       "\xd0\x9f\xd0\xb0\xd0\xbd\xd2\xb7\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
-       "\xd2\xb6\xd1\x83\xd0\xbc\xd1\x8a\xd0\xb0\0"
-       "\xd0\xa8\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
-       "\xd0\xaf\xd1\x88\xd0\xb1\0"
-       "\xd0\x94\xd1\x88\xd0\xb1\0"
-       "\xd0\xa1\xd1\x88\xd0\xb1\0"
-       "\xd0\xa7\xd1\x88\xd0\xb1\0"
-       "\xd0\x9f\xd1\x88\xd0\xb1\0"
-       "\xd2\xb6\xd0\xbc\xd1\x8a\0"
-       "\xd0\xa8\xd0\xbd\xd0\xb1\0"
-       "\xd0\xaf\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\0"
-       "\xd0\xa4\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\0"
-       "\xd0\x90\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\0"
-       "\xd0\x98\xd1\x8e\xd0\xbd\0"
-       "\xd0\x98\xd1\x8e\xd0\xbb\0"
-       "\xd0\xa1\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\0"
-       "\xd0\x9e\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\0"
-       "\xd0\x9d\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\0"
-       "\xd0\x94\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\0"
-       "\xd0\xaf\xd0\xbd\xd0\xb2\0"
-       "\xd0\xa4\xd0\xb5\xd0\xb2\0"
-       "\xd0\x9c\xd0\xb0\xd1\x80\0"
-       "\xd0\x90\xd0\xbf\xd1\x80\0"
-       "\xd0\x90\xd0\xb2\xd0\xb3\0"
-       "\xd0\xa1\xd0\xb5\xd0\xbd\0"
-       "\xd0\x9e\xd0\xba\xd1\x82\0"
-       "\xd0\x9d\xd0\xbe\xd1\x8f\0"
-       "\xd0\x94\xd0\xb5\xd0\xba\0"
-       "d MMMM yyyy' \xd1\x81.'\0"
-       "dd MMMM yyyy' \xd1\x81.'\0"
-       "\xd9\x82\xd8\xa8\xd9\x84\xe2\x80\x8c\xd8\xa7\xd8\xb2\xd8\xb8\xd9\x87\xd8\xb1\0"
-       "\xd8\xa8\xd8\xb9\xd8\xaf\xd8\xa7\xd8\xb2\xd8\xb8\xd9\x87\xd8\xb1\0"
-       "\xdb\x8c\xda\xa9\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
-       "\xd8\xaf\xd9\x88\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
-       "\xd8\xb3\xd9\x87\xe2\x80\x8c\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
-       "\xda\x86\xd9\x87\xd8\xa7\xd8\xb1\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
-       "\xd9\xbe\xd9\x86\xd8\xac\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
-       "\xd8\xac\xd9\x85\xd8\xb9\xd9\x87\0"
-       "\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
-       "\xdb\x8c\0"
-       "\xd8\xaf\0"
-       "\xd8\xb3\0"
-       "\xda\x86\0"
-       "\xd9\xbe\0"
-       "\xd8\xac\0"
-       "\xd8\xb4\0"
-       "\xda\x98\xd8\xa7\xd9\x86\xd9\x88\xdb\x8c\xd9\x87\0"
-       "\xd9\x81\xd9\x88\xd8\xb1\xdb\x8c\xd9\x87\0"
-       "\xd9\x85\xd8\xa7\xd8\xb1\xd8\xb3\0"
-       "\xd8\xa2\xd9\x88\xd8\xb1\xdb\x8c\xd9\x84\0"
-       "\xd9\x85\xd9\x87\0"
-       "\xda\x98\xd9\x88\xd8\xa6\xd9\x86\0"
-       "\xda\x98\xd9\x88\xd8\xa6\xdb\x8c\xd9\x87\0"
-       "\xd8\xa7\xd9\x88\xd8\xaa\0"
-       "\xd8\xb3\xd9\xbe\xd8\xaa\xd8\xa7\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xd8\xa7\xda\xa9\xd8\xaa\xd8\xa8\xd8\xb1\0"
-       "\xd9\x86\xd9\x88\xd8\xa7\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xd8\xaf\xd8\xb3\xd8\xa7\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xda\x98\xd8\xa7\xd9\x86\xd9\x88\xdb\x8c\xd9\x87\xd9\x94\0"
-       "\xd9\x81\xd9\x88\xd8\xb1\xdb\x8c\xd9\x87\xd9\x94\0"
-       "\xd9\x85\xd9\x87\xd9\x94\0"
-       "\xda\x98\xd9\x88\xd8\xa6\xdb\x8c\xd9\x87\xd9\x94\0"
+       "\xd9\x82.\xd8\xb8.\0"
+       "\xd8\xa8.\xd8\xb8.\0"
        "SA\0"
        "CH\0"
-       "Ch\xe1\xbb\xa7 Nh\xe1\xba\xadt\0"
-       "Th\xe1\xbb\xa9 Hai\0"
-       "Th\xe1\xbb\xa9 Ba\0"
-       "Th\xe1\xbb\xa9 T\xc6\xb0\0"
-       "Th\xe1\xbb\xa9 N\xc4\x83m\0"
-       "Th\xe1\xbb\xa9 S\xc3\xa1u\0"
-       "Th\xe1\xbb\xa9 B\xe1\xba\xa3y\0"
-       "CN\0"
-       "Th 2\0"
-       "Th 3\0"
-       "Th 4\0"
-       "Th 5\0"
-       "Th 6\0"
-       "Th 7\0"
-       "T2\0"
-       "T3\0"
-       "T4\0"
-       "T5\0"
-       "T6\0"
-       "T7\0"
-       "Th\xc3\xa1ng 1\0"
-       "Th\xc3\xa1ng 2\0"
-       "Th\xc3\xa1ng 3\0"
-       "Th\xc3\xa1ng 4\0"
-       "Th\xc3\xa1ng 5\0"
-       "Th\xc3\xa1ng 6\0"
-       "Th\xc3\xa1ng 7\0"
-       "Th\xc3\xa1ng 8\0"
-       "Th\xc3\xa1ng 9\0"
-       "Th\xc3\xa1ng 10\0"
-       "Th\xc3\xa1ng 11\0"
-       "Th\xc3\xa1ng 12\0"
-       "th\xc3\xa1ng 1\0"
-       "th\xc3\xa1ng 2\0"
-       "th\xc3\xa1ng 3\0"
-       "th\xc3\xa1ng 4\0"
-       "th\xc3\xa1ng 5\0"
-       "th\xc3\xa1ng 6\0"
-       "th\xc3\xa1ng 7\0"
-       "th\xc3\xa1ng 8\0"
-       "th\xc3\xa1ng 9\0"
-       "th\xc3\xa1ng 10\0"
-       "th\xc3\xa1ng 11\0"
-       "th\xc3\xa1ng 12\0"
-       "Thg 1\0"
-       "Thg 2\0"
-       "Thg 3\0"
-       "Thg 4\0"
-       "Thg 5\0"
-       "Thg 6\0"
-       "Thg 7\0"
-       "Thg 8\0"
-       "Thg 9\0"
-       "Thg 10\0"
-       "Thg 11\0"
-       "Thg 12\0"
-       "\xd5\xaf\xd5\xa5\xd5\xbd\xd6\x85\xd6\x80\xd5\xab\xd6\x81 \xd5\xa1\xd5\xbc\xd5\xa1\xd5\xbb\0"
-       "\xd5\xaf\xd5\xa5\xd5\xbd\xd6\x85\xd6\x80\xd5\xab\xd6\x81 \xd5\xb0\xd5\xa5\xd5\xbf\xd5\xb8\0"
-       "\xd5\xaf\xd5\xab\xd6\x80\xd5\xa1\xd5\xaf\xd5\xab\0"
-       "\xd5\xa5\xd6\x80\xd5\xaf\xd5\xb8\xd6\x82\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
-       "\xd5\xa5\xd6\x80\xd5\xa5\xd6\x84\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
-       "\xd5\xb9\xd5\xb8\xd6\x80\xd5\xa5\xd6\x84\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
-       "\xd5\xb0\xd5\xab\xd5\xb6\xd5\xa3\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
-       "\xd5\xb8\xd6\x82\xd6\x80\xd5\xa2\xd5\xa1\xd5\xa9\0"
-       "\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa1\xd5\xa9\0"
-       "\xd5\xaf\xd5\xab\xd6\x80\0"
-       "\xd5\xa5\xd6\x80\xd5\xaf\0"
-       "\xd5\xa5\xd6\x80\xd6\x84\0"
-       "\xd5\xb9\xd6\x80\xd6\x84\0"
-       "\xd5\xb0\xd5\xb6\xd5\xa3\0"
-       "\xd5\xb8\xd6\x82\xd6\x80\0"
-       "\xd5\xb7\xd5\xa2\xd5\xa9\0"
-       "\xd4\xbf\0"
-       "\xd4\xb5\0"
-       "\xd5\x89\0"
-       "\xd5\x80\0"
-       "\xd5\x88\xd6\x82\0"
-       "\xd5\x87\0"
-       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xbe\xd5\xa1\xd6\x80\0"
-       "\xd6\x83\xd5\xa5\xd5\xbf\xd6\x80\xd5\xbe\xd5\xa1\xd6\x80\0"
-       "\xd5\xb4\xd5\xa1\xd6\x80\xd5\xbf\0"
-       "\xd5\xa1\xd5\xba\xd6\x80\xd5\xab\xd5\xac\0"
-       "\xd5\xb4\xd5\xa1\xd5\xb5\xd5\xab\xd5\xbd\0"
-       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xab\xd5\xbd\0"
-       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xac\xd5\xab\xd5\xbd\0"
-       "\xd6\x85\xd5\xa3\xd5\xb8\xd5\xbd\xd5\xbf\xd5\xb8\xd5\xbd\0"
-       "\xd5\xbd\xd5\xa5\xd5\xba\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
-       "\xd5\xb0\xd5\xb8\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
-       "\xd5\xb6\xd5\xb8\xd5\xb5\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
-       "\xd5\xa4\xd5\xa5\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
-       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xbe\xd5\xa1\xd6\x80\xd5\xab\0"
-       "\xd6\x83\xd5\xa5\xd5\xbf\xd6\x80\xd5\xbe\xd5\xa1\xd6\x80\xd5\xab\0"
-       "\xd5\xb4\xd5\xa1\xd6\x80\xd5\xbf\xd5\xab\0"
-       "\xd5\xa1\xd5\xba\xd6\x80\xd5\xab\xd5\xac\xd5\xab\0"
-       "\xd5\xb4\xd5\xa1\xd5\xb5\xd5\xab\xd5\xbd\xd5\xab\0"
-       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xab\xd5\xbd\xd5\xab\0"
-       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xac\xd5\xab\xd5\xbd\xd5\xab\0"
-       "\xd6\x85\xd5\xa3\xd5\xb8\xd5\xbd\xd5\xbf\xd5\xb8\xd5\xbd\xd5\xab\0"
-       "\xd5\xbd\xd5\xa5\xd5\xba\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
-       "\xd5\xb0\xd5\xb8\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
-       "\xd5\xb6\xd5\xb8\xd5\xb5\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
-       "\xd5\xa4\xd5\xa5\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
-       "\xd5\xb0\xd5\xb6\xd5\xbe\0"
-       "\xd6\x83\xd5\xbf\xd5\xbe\0"
-       "\xd5\xb4\xd6\x80\xd5\xbf\0"
-       "\xd5\xa1\xd5\xba\xd6\x80\0"
-       "\xd5\xb4\xd5\xb5\xd5\xbd\0"
-       "\xd5\xb0\xd5\xb6\xd5\xbd\0"
-       "\xd5\xb0\xd5\xac\xd5\xbd\0"
-       "\xd6\x85\xd5\xa3\xd5\xbd\0"
-       "\xd5\xbd\xd5\xba\xd5\xbf\0"
-       "\xd5\xb0\xd5\xaf\xd5\xbf\0"
-       "\xd5\xb6\xd5\xb5\xd5\xb4\0"
-       "\xd5\xa4\xd5\xaf\xd5\xbf\0"
-       "d/MM/yyyy\0"
-       "d/MMM/yyyy\0"
-       "d-MMM-yyyy\0"
-       "dd-MMM-yyyy\0"
-       "ddd, d-MMMM-yyyy\0"
-       "ddd, dd-MMMM-yyyy\0"
-       "bazar\0"
-       "bazar ert\xc9\x99si\0"
-       "\xc3\xa7\xc9\x99r\xc5\x9f\xc9\x99nb\xc9\x99 ax\xc5\x9f\x61m\xc4\xb1\0"
-       "\xc3\xa7\xc9\x99r\xc5\x9f\xc9\x99nb\xc9\x99\0"
-       "c\xc3\xbcm\xc9\x99 ax\xc5\x9f\x61m\xc4\xb1\0"
-       "c\xc3\xbcm\xc9\x99\0"
-       "\xc5\x9f\xc9\x99nb\xc9\x99\0"
-       "B.\0"
-       "B.E.\0"
-       "\xc3\x87.A.\0"
-       "\xc3\x87.\0"
-       "C.A.\0"
-       "\xc5\x9e.\0"
-       "Yanvar\0"
-       "Fevral\0"
-       "Aprel\0"
-       "\xc4\xb0yun\0"
-       "\xc4\xb0yul\0"
-       "Avqust\0"
-       "Sentyabr\0"
-       "Oktyabr\0"
-       "Noyabr\0"
-       "Dekabr\0"
-       "yanvar\0"
-       "fevral\0"
-       "mart\0"
-       "aprel\0"
-       "may\0"
-       "iyun\0"
-       "iyul\0"
-       "avqust\0"
-       "sentyabr\0"
-       "oktyabr\0"
-       "noyabr\0"
-       "dekabr\0"
-       "yan\0"
-       "iyn\0"
-       "iyl\0"
-       "avq\0"
-       "sen\0"
-       "noy\0"
-       "dek\0"
-       "d MMMM yyyy, dddd\0"
-       "igandea\0"
-       "astelehena\0"
-       "asteartea\0"
-       "asteazkena\0"
-       "osteguna\0"
-       "ostirala\0"
-       "larunbata\0"
-       "ig.\0"
-       "al.\0"
-       "ar.\0"
-       "az.\0"
-       "og.\0"
-       "or.\0"
-       "lr.\0"
-       "I\0"
-       "urtarrila\0"
-       "otsaila\0"
-       "martxoa\0"
-       "apirila\0"
-       "maiatza\0"
-       "ekaina\0"
-       "uztaila\0"
-       "abuztua\0"
-       "iraila\0"
-       "urria\0"
-       "azaroa\0"
-       "abendua\0"
-       "urtarrilak\0"
-       "otsailak\0"
-       "martxoak\0"
-       "apirilak\0"
-       "maiatzak\0"
-       "ekainak\0"
-       "uztailak\0"
-       "abuztuak\0"
-       "irailak\0"
-       "urriak\0"
-       "azaroak\0"
-       "abenduak\0"
-       "urt.\0"
-       "ots.\0"
-       "api.\0"
-       "mai.\0"
-       "eka.\0"
-       "uzt.\0"
-       "abu.\0"
-       "ira.\0"
-       "urr.\0"
-       "aza.\0"
-       "abe.\0"
-       "yyyy MMM d\0"
-       "yyyy('e')'ko' MMMM d, dddd\0"
-       "yyyy('e')'ko' MMMM d\0"
-       "yyyy('e')'ko' MMMM\0"
-       "\xd0\xbf\xd1\x80\xd0\xb5\xd1\x82\xd0\xbf\xd0\xbb\xd0\xb0\xd0\xb4\xd0\xbd\xd0\xb5\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbf\xd0\xbb\xd0\xb0\xd0\xb4\xd0\xbd\xd0\xb5\0"
-       "\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\0"
-       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd1\x80\xd1\x82\xd0\xbe\xd0\xba\0"
-       "\xd0\xbf\xd0\xb5\xd1\x82\xd0\xbe\xd0\xba\0"
-       "\xd1\x81\xd0\xb0\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
-       "\xd0\xbd\xd0\xb5\xd0\xb4.\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbd.\0"
-       "\xd0\xb2\xd1\x82.\0"
-       "\xd1\x81\xd1\x80\xd0\xb5.\0"
-       "\xd1\x87\xd0\xb5\xd1\x82.\0"
-       "\xd0\xbf\xd0\xb5\xd1\x82.\0"
-       "\xd1\x81\xd0\xb0\xd0\xb1.\0"
-       "\xd1\x98\xd0\xb0\xd0\xbd\xd1\x83\xd0\xb0\xd1\x80\xd0\xb8\0"
-       "\xd0\xbc\xd0\xb0\xd1\x98\0"
-       "\xd1\x98\xd1\x83\xd0\xbd\xd0\xb8\0"
-       "\xd1\x98\xd1\x83\xd0\xbb\xd0\xb8\0"
-       "\xd1\x98\xd0\xb0\xd0\xbd.\0"
-       "\xd1\x84\xd0\xb5\xd0\xb2.\0"
-       "\xd0\xbc\xd0\xb0\xd1\x80.\0"
-       "\xd1\x98\xd1\x83\xd0\xbd.\0"
-       "\xd1\x98\xd1\x83\xd0\xbb.\0"
-       "dd.M.yyyy\0"
-       "MMMM yyyy '\xd0\xb3'.\0"
-       "Tshipi\0"
-       "Mosopulogo\0"
-       "Labobedi\0"
-       "Laboraro\0"
-       "Labone\0"
-       "Labotlhano\0"
-       "Matlhatso\0"
-       "Tsh\0"
-       "Mos\0"
-       "Bed\0"
-       "Rar\0"
-       "Ne\0"
-       "Tla\0"
-       "Mat\0"
-       "Ferikgong\0"
-       "Tlhakole\0"
-       "Mopitlo\0"
-       "Moranang\0"
-       "Motsheganang\0"
-       "Seetebosigo\0"
-       "Phukwi\0"
-       "Phatwe\0"
-       "Lwetse\0"
-       "Diphalane\0"
-       "Ngwanatsele\0"
-       "Sedimonthole\0"
-       "Fer\0"
-       "Tlh\0"
-       "Mop\0"
-       "Mor\0"
-       "Mot\0"
-       "See\0"
-       "Phu\0"
-       "Pha\0"
-       "Lwe\0"
-       "Dip\0"
-       "Ngw\0"
-       "Sed\0"
-       "yyyy MMMM d, dddd\0"
-       "yyyy MMMM d\0"
-       "Cawe\0"
-       "Mvulo\0"
-       "Lwesibini\0"
-       "Lwesithathu\0"
-       "Lwesine\0"
-       "Lwesihlanu\0"
-       "Mgqibelo\0"
-       "Caw\0"
-       "Mvu\0"
-       "Bin\0"
-       "Tha\0"
-       "Sin\0"
-       "Hla\0"
-       "Mgq\0"
-       "Janyuwari\0"
-       "Februwari\0"
-       "Matshi\0"
-       "Epreli\0"
-       "Meyi\0"
-       "Julayi\0"
-       "Agasti\0"
-       "Septemba\0"
-       "Okthoba\0"
-       "Novemba\0"
-       "Disemba\0"
-       "Epr\0"
-       "Mey\0"
-       "Aga\0"
-       "Dis\0"
-       "Sonto\0"
-       "Msombuluko\0"
-       "Lwesibili\0"
-       "Son\0"
-       "Mso\0"
-       "Bil\0"
-       "B\0"
-       "uJanuwari\0"
-       "uFebruwari\0"
-       "uMashi\0"
-       "u-Apreli\0"
-       "uMeyi\0"
-       "uJuni\0"
-       "uJulayi\0"
-       "uAgasti\0"
-       "uSepthemba\0"
-       "u-Okthoba\0"
-       "uNovemba\0"
-       "uDisemba\0"
-       "Januwari\0"
-       "Mashi\0"
-       "Apreli\0"
-       "Septhemba\0"
-       "Mas\0"
-       "MMM d, yyyy\0"
+       "\xd4\xbf\xd4\xb1\0"
+       "\xd4\xbf\xd5\x80\0"
+       "dopo\xc5\x82\x64nja\0"
+       "popo\xc5\x82\x64nju\0"
+       "\xd0\xbf\xd1\x80\xd0\xb5\xd1\x82\xd0\xbf\xd0\xbb.\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbf\xd0\xbb.\0"
        "vm.\0"
        "nm.\0"
-       "Sondag\0"
-       "Maandag\0"
-       "Dinsdag\0"
-       "Woensdag\0"
-       "Donderdag\0"
-       "Vrydag\0"
-       "Saterdag\0"
-       "Ma\0"
-       "Wo\0"
-       "Vr\0"
-       "Januarie\0"
-       "Februarie\0"
-       "Maart\0"
-       "Junie\0"
-       "Julie\0"
-       "Augustus\0"
-       "\xe1\x83\x99\xe1\x83\x95\xe1\x83\x98\xe1\x83\xa0\xe1\x83\x90\0"
-       "\xe1\x83\x9d\xe1\x83\xa0\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
-       "\xe1\x83\xa1\xe1\x83\x90\xe1\x83\x9b\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
-       "\xe1\x83\x9d\xe1\x83\x97\xe1\x83\xae\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
-       "\xe1\x83\xae\xe1\x83\xa3\xe1\x83\x97\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
-       "\xe1\x83\x9e\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x90\xe1\x83\xa1\xe1\x83\x99\xe1\x83\x94\xe1\x83\x95\xe1\x83\x98\0"
-       "\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
-       "\xe1\x83\x99\xe1\x83\x95\xe1\x83\x98\0"
-       "\xe1\x83\x9d\xe1\x83\xa0\xe1\x83\xa8\0"
-       "\xe1\x83\xa1\xe1\x83\x90\xe1\x83\x9b\0"
-       "\xe1\x83\x9d\xe1\x83\x97\xe1\x83\xae\0"
-       "\xe1\x83\xae\xe1\x83\xa3\xe1\x83\x97\0"
-       "\xe1\x83\x9e\xe1\x83\x90\xe1\x83\xa0\0"
-       "\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\0"
-       "\xe1\x83\x99\0"
-       "\xe1\x83\x9d\0"
-       "\xe1\x83\xa1\0"
-       "\xe1\x83\xae\0"
-       "\xe1\x83\x9e\0"
-       "\xe1\x83\xa8\0"
-       "\xe1\x83\x98\xe1\x83\x90\xe1\x83\x9c\xe1\x83\x95\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x98\0"
-       "\xe1\x83\x97\xe1\x83\x94\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x95\xe1\x83\x90\xe1\x83\x9a\xe1\x83\x98\0"
-       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\xa0\xe1\x83\xa2\xe1\x83\x98\0"
-       "\xe1\x83\x90\xe1\x83\x9e\xe1\x83\xa0\xe1\x83\x98\xe1\x83\x9a\xe1\x83\x98\0"
-       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\x98\xe1\x83\xa1\xe1\x83\x98\0"
-       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9c\xe1\x83\x98\xe1\x83\xa1\xe1\x83\x98\0"
-       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9a\xe1\x83\x98\xe1\x83\xa1\xe1\x83\x98\0"
-       "\xe1\x83\x90\xe1\x83\x92\xe1\x83\x95\xe1\x83\x98\xe1\x83\xa1\xe1\x83\xa2\xe1\x83\x9d\0"
-       "\xe1\x83\xa1\xe1\x83\x94\xe1\x83\xa5\xe1\x83\xa2\xe1\x83\x94\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
-       "\xe1\x83\x9d\xe1\x83\xa5\xe1\x83\xa2\xe1\x83\x9d\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
-       "\xe1\x83\x9c\xe1\x83\x9d\xe1\x83\x94\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
-       "\xe1\x83\x93\xe1\x83\x94\xe1\x83\x99\xe1\x83\x94\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
-       "\xe1\x83\x98\xe1\x83\x90\xe1\x83\x9c\0"
-       "\xe1\x83\x97\xe1\x83\x94\xe1\x83\x91\0"
-       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\xa0\0"
-       "\xe1\x83\x90\xe1\x83\x9e\xe1\x83\xa0\0"
-       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\x98\0"
-       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9c\0"
-       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9a\0"
-       "\xe1\x83\x90\xe1\x83\x92\xe1\x83\x95\0"
-       "\xe1\x83\xa1\xe1\x83\x94\xe1\x83\xa5\0"
-       "\xe1\x83\x9d\xe1\x83\xa5\xe1\x83\xa2\0"
-       "\xe1\x83\x9c\xe1\x83\x9d\xe1\x83\x94\0"
-       "\xe1\x83\x93\xe1\x83\x94\xe1\x83\x99\0"
-       "d MMM, yyyy\0"
-       "f.p.\0"
-       "s.p.\0"
-       "m\xc3\xa1nadagur\0"
-       "t\xc3\xbdsdagur\0"
-       "mikudagur\0"
-       "h\xc3\xb3sdagur\0"
-       "fr\xc3\xadggjadagur\0"
-       "leygardagur\0"
-       "sun\0"
-       "m\xc3\xa1n\0"
-       "t\xc3\xbds\0"
-       "mik\0"
-       "h\xc3\xb3s\0"
-       "fr\xc3\xad\0"
-       "ley\0"
-       "\xe0\xa4\xaa\xe0\xa5\x82\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\xb5\0"
-       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xbf\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb8\xe0\xa5\x8b\xe0\xa4\xae\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb2\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xac\xe0\xa5\x81\xe0\xa4\xa7\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\x97\xe0\xa5\x81\xe0\xa4\xb0\xe0\xa5\x81\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb6\xe0\xa5\x81\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb6\xe0\xa4\xa8\xe0\xa4\xbf\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xbf\0"
-       "\xe0\xa4\xb8\xe0\xa5\x8b\xe0\xa4\xae\0"
-       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb2\0"
-       "\xe0\xa4\xac\xe0\xa5\x81\xe0\xa4\xa7\0"
-       "\xe0\xa4\x97\xe0\xa5\x81\xe0\xa4\xb0\xe0\xa5\x81\0"
-       "\xe0\xa4\xb6\xe0\xa5\x81\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb6\xe0\xa4\xa8\xe0\xa4\xbf\0"
-       "\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb8\xe0\xa5\x8b\0"
-       "\xe0\xa4\xae\xe0\xa4\x82\0"
-       "\xe0\xa4\xac\xe0\xa5\x81\0"
-       "\xe0\xa4\x97\xe0\xa5\x81\0"
-       "\xe0\xa4\xb6\xe0\xa5\x81\0"
-       "\xe0\xa4\xb6\0"
-       "\xe0\xa4\x9c\xe0\xa4\xa8\xe0\xa4\xb5\xe0\xa4\xb0\xe0\xa5\x80\0"
-       "\xe0\xa4\xab\xe0\xa4\xbc\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xb0\xe0\xa5\x80\0"
-       "\xe0\xa4\xae\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\x9a\0"
-       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x88\xe0\xa4\xb2\0"
-       "\xe0\xa4\xae\xe0\xa4\x88\0"
-       "\xe0\xa4\x9c\xe0\xa5\x82\xe0\xa4\xa8\0"
-       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xb2\xe0\xa4\xbe\xe0\xa4\x88\0"
-       "\xe0\xa4\x85\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\xa4\0"
-       "\xe0\xa4\xb8\xe0\xa4\xbf\xe0\xa4\xa4\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\x85\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\xa8\xe0\xa4\xb5\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\x9c\xe0\xa4\xa8\0"
-       "\xe0\xa4\xab\xe0\xa4\xbc\xe0\xa4\xb0\0"
-       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x88\0"
-       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xb2\xe0\xa4\xbe\0"
-       "\xe0\xa4\x85\xe0\xa4\x97\0"
-       "\xe0\xa4\xb8\xe0\xa4\xbf\xe0\xa4\xa4\xe0\xa4\x82\0"
-       "\xe0\xa4\x85\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x82\0"
-       "\xe0\xa4\xa8\xe0\xa4\xb5\xe0\xa4\x82\0"
-       "\xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa4\x82\0"
-       "d 'ta'\xe2\x80\x99 MMMM\0"
-       "QN\0"
-       "WN\0"
-       "Il-\xc4\xa6\x61\x64\x64\0"
-       "It-Tnejn\0"
-       "It-Tlieta\0"
-       "L-Erbg\xc4\xa7\x61\0"
-       "Il-\xc4\xa6\x61mis\0"
-       "Il-\xc4\xa0img\xc4\xa7\x61\0"
-       "Is-Sibt\0"
-       "\xc4\xa6\x61\x64\0"
-       "Tne\0"
-       "Tli\0"
-       "Erb\0"
-       "\xc4\xa6\x61m\0"
-       "\xc4\xa0im\0"
-       "Sib\0"
-       "\xc4\xa6\0"
-       "\xc4\xa0\0"
-       "Jannar\0"
-       "Frar\0"
-       "Marzu\0"
-       "Mejju\0"
-       "\xc4\xa0unju\0"
-       "Lulju\0"
-       "Awwissu\0"
-       "Settembru\0"
-       "Ottubru\0"
-       "Novembru\0"
-       "Di\xc4\x8b\x65mbru\0"
-       "Fra\0"
-       "Mej\0"
-       "\xc4\xa0un\0"
-       "Lul\0"
-       "Aww\0"
-       "Set\0"
-       "Ott\0"
-       "Di\xc4\x8b\0"
-       "dddd, d 'ta'\xe2\x80\x99 MMMM yyyy\0"
-       "d 'ta'\xe2\x80\x99 MMMM yyyy\0"
-       "MMMM 'ta'\xe2\x80\x99 yyyy\0"
+       "\xe0\xa4\xaa\xe0\xa5\x82\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb9\xe0\xa5\x8d\xe0\xa4\xa8\0"
+       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa4\xb0\xe0\xa4\xbe\xe0\xa4\xb9\xe0\xa5\x8d\xe0\xa4\xa8\0"
        "i.b.\0"
        "e.b.\0"
-       "sotnabeaivi\0"
-       "vuoss\xc3\xa1rga\0"
-       "ma\xc5\x8b\xc5\x8b\x65\x62\xc3\xa1rga\0"
-       "gaskavahkku\0"
-       "duorasdat\0"
-       "bearjadat\0"
-       "l\xc3\xa1vvardat\0"
-       "sotn\0"
-       "vuos\0"
-       "ma\xc5\x8b\0"
-       "gask\0"
-       "duor\0"
-       "bear\0"
-       "l\xc3\xa1v\0"
-       "o\xc4\x91\xc4\x91\x61jagem\xc3\xa1nnu\0"
-       "guovvam\xc3\xa1nnu\0"
-       "njuk\xc4\x8d\x61m\xc3\xa1nnu\0"
-       "cuo\xc5\x8bom\xc3\xa1nnu\0"
-       "miessem\xc3\xa1nnu\0"
-       "geassem\xc3\xa1nnu\0"
-       "suoidnem\xc3\xa1nnu\0"
-       "borgem\xc3\xa1nnu\0"
-       "\xc4\x8d\x61k\xc4\x8d\x61m\xc3\xa1nnu\0"
-       "golggotm\xc3\xa1nnu\0"
-       "sk\xc3\xa1\x62mam\xc3\xa1nnu\0"
-       "juovlam\xc3\xa1nnu\0"
-       "o\xc4\x91\xc4\x91j\0"
-       "guov\0"
-       "njuk\0"
-       "cuo\0"
-       "mies\0"
-       "geas\0"
-       "suoi\0"
-       "borg\0"
-       "\xc4\x8d\x61k\xc4\x8d\0"
-       "golg\0"
-       "sk\xc3\xa1\x62\0"
-       "juov\0"
-       "D\xc3\xa9 Domhnaigh\0"
-       "D\xc3\xa9 Luain\0"
-       "D\xc3\xa9 M\xc3\xa1irt\0"
-       "D\xc3\xa9 C\xc3\xa9\x61\x64\x61oin\0"
-       "D\xc3\xa9\x61rdaoin\0"
-       "D\xc3\xa9 hAoine\0"
-       "D\xc3\xa9 Sathairn\0"
-       "Domh\0"
-       "Luan\0"
-       "M\xc3\xa1irt\0"
-       "C\xc3\xa9\x61\x64\0"
-       "D\xc3\xa9\x61r\0"
-       "Aoine\0"
-       "Sath\0"
-       "Ean\xc3\xa1ir\0"
-       "Feabhra\0"
-       "M\xc3\xa1rta\0"
-       "Aibre\xc3\xa1n\0"
-       "Bealtaine\0"
-       "Meitheamh\0"
-       "I\xc3\xbail\0"
-       "L\xc3\xbanasa\0"
-       "Me\xc3\xa1n F\xc3\xb3mhair\0"
-       "Deireadh F\xc3\xb3mhair\0"
-       "Samhain\0"
-       "Nollaig\0"
-       "Ean\0"
-       "Feabh\0"
-       "Aib\0"
-       "Beal\0"
-       "Meith\0"
-       "L\xc3\xban\0"
-       "MF\xc3\xb3mh\0"
-       "DF\xc3\xb3mh\0"
-       "Samh\0"
-       "Noll\0"
-       "pg\0"
-       "ptg\0"
-       "Ahad\0"
-       "Isnin\0"
-       "Khamis\0"
-       "Jumaat\0"
-       "Ahd\0"
-       "Isn\0"
-       "Kha\0"
-       "Mac\0"
-       "Julai\0"
-       "Ogos\0"
-       "Disember\0"
-       "Ogo\0"
-       "\xd1\x82\xd2\xaf\xd1\x81\xd0\xba\xd0\xb5 \xd0\xb4\xd0\xb5\xd0\xb9\xd1\x96\xd0\xbd\0"
-       "\xd1\x82\xd2\xaf\xd1\x81\xd1\x82\xd0\xb5\xd0\xbd \xd0\xba\xd0\xb5\xd0\xb9\xd1\x96\xd0\xbd\0"
-       "\xd0\xb6\xd0\xb5\xd0\xba\xd1\x81\xd0\xb5\xd0\xbd\xd1\x96\0"
-       "\xd0\xb4\xd1\x83\xd0\xb9\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
-       "\xd1\x81\xd0\xb5\xd0\xb9\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
-       "\xd1\x81\xd3\x99\xd1\x80\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
-       "\xd0\xb1\xd0\xb5\xd0\xb9\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
-       "\xd0\xb6\xd2\xb1\xd0\xbc\xd0\xb0\0"
-       "\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
-       "\xd0\xb6\xd1\x81.\0"
-       "\xd0\xb4\xd1\x81.\0"
-       "\xd1\x81\xd1\x81.\0"
-       "\xd1\x81\xd1\x80.\0"
-       "\xd0\xb1\xd1\x81.\0"
-       "\xd0\xb6\xd0\xbc.\0"
-       "\xd1\x81\xd0\xb1.\0"
-       "\xd0\x96\0"
-       "\xd0\x94\0"
-       "\xd0\x91\0"
-       "\xd2\x9b\xd0\xb0\xd2\xa3\xd1\x82\xd0\xb0\xd1\x80\0"
-       "\xd0\xb0\xd2\x9b\xd0\xbf\xd0\xb0\xd0\xbd\0"
-       "\xd0\xbd\xd0\xb0\xd1\x83\xd1\x80\xd1\x8b\xd0\xb7\0"
-       "\xd1\x81\xd3\x99\xd1\x83\xd1\x96\xd1\x80\0"
-       "\xd0\xbc\xd0\xb0\xd0\xbc\xd1\x8b\xd1\x80\0"
-       "\xd0\xbc\xd0\xb0\xd1\x83\xd1\x81\xd1\x8b\xd0\xbc\0"
-       "\xd1\x88\xd1\x96\xd0\xbb\xd0\xb4\xd0\xb5\0"
-       "\xd1\x82\xd0\xb0\xd0\xbc\xd1\x8b\xd0\xb7\0"
-       "\xd2\x9b\xd1\x8b\xd1\x80\xd0\xba\xd2\xaf\xd0\xb9\xd0\xb5\xd0\xba\0"
-       "\xd2\x9b\xd0\xb0\xd0\xb7\xd0\xb0\xd0\xbd\0"
-       "\xd2\x9b\xd0\xb0\xd1\x80\xd0\xb0\xd1\x88\xd0\xb0\0"
-       "\xd0\xb6\xd0\xb5\xd0\xbb\xd1\x82\xd0\xbe\xd2\x9b\xd1\x81\xd0\xb0\xd0\xbd\0"
-       "\xd2\x9b\xd0\xb0\xd2\xa3.\0"
-       "\xd0\xb0\xd2\x9b\xd0\xbf.\0"
-       "\xd0\xbd\xd0\xb0\xd1\x83.\0"
-       "\xd1\x81\xd3\x99\xd1\x83.\0"
-       "\xd0\xbc\xd0\xb0\xd0\xbc.\0"
-       "\xd0\xbc\xd0\xb0\xd1\x83.\0"
-       "\xd1\x88\xd1\x96\xd0\xbb.\0"
-       "\xd1\x82\xd0\xb0\xd0\xbc.\0"
-       "\xd2\x9b\xd1\x8b\xd1\x80.\0"
-       "\xd2\x9b\xd0\xb0\xd0\xb7.\0"
-       "\xd2\x9b\xd0\xb0\xd1\x80.\0"
-       "\xd0\xb6\xd0\xb5\xd0\xbb\xd1\x82.\0"
-       "yyyy, dd-MMM\0"
-       "d-MMMM\0"
-       "\xd1\x82\xd2\xaf\xd1\x88\xd0\xba\xd3\xa9 \xd1\x87\xd0\xb5\xd0\xb9\xd0\xb8\xd0\xbd\xd0\xba\xd0\xb8\0"
-       "\xd1\x82\xd2\xaf\xd1\x88\xd1\x82\xd3\xa9\xd0\xbd \xd0\xba\xd0\xb8\xd0\xb9\xd0\xb8\xd0\xbd\xd0\xba\xd0\xb8\0"
-       "\xd0\x96\xd0\xb5\xd0\xba\0"
-       "\xd0\x94\xd2\xaf\xd0\xb9\0"
-       "\xd0\xa8\xd0\xb5\xd0\xb9\0"
-       "\xd0\xa8\xd0\xb0\xd1\x80\0"
-       "\xd0\x91\xd0\xb5\xd0\xb9\0"
-       "\xd0\x96\xd1\x83\xd0\xbc\0"
-       "\xd0\x98\xd1\x88\xd0\xbc\0"
-       "\xd0\xa8\0"
-       "\xd0\x98\0"
-       "\xd1\x8f\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\xd1\x8c\0"
-       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\xd1\x8c\0"
-       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\xd1\x8c\0"
-       "\xd0\xb8\xd1\x8e\xd0\xbd\xd1\x8c\0"
-       "\xd0\xb8\xd1\x8e\xd0\xbb\xd1\x8c\0"
-       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd0\xbd\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\xd1\x8c\0"
-       "\xd1\x8f\xd0\xbd\xd0\xb2.\0"
-       "\xd0\xb8\xd1\x8e\xd0\xbd.\0"
-       "\xd0\xb8\xd1\x8e\xd0\xbb.\0"
-       "\xd1\x81\xd0\xb5\xd0\xbd.\0"
-       "\xd0\xbd\xd0\xbe\xd1\x8f.\0"
-       "d-MMM yy\0"
-       "dd-MMMM yyyy'-\xd0\xb6.'\0"
-       "MMMM yyyy'-\xd0\xb6.'\0"
-       "Jumapili\0"
-       "Jumatatu\0"
-       "Jumanne\0"
-       "Jumatano\0"
-       "Alhamisi\0"
-       "Ijumaa\0"
-       "Jumamosi\0"
-       "J2\0"
-       "J3\0"
-       "J4\0"
-       "J5\0"
-       "Alh\0"
-       "Ij\0"
-       "J1\0"
-       "Machi\0"
-       "Aprili\0"
-       "Agosti\0"
-       "Oktoba\0"
-       "Desemba\0"
-       "Ago\0"
-       "yakshanba\0"
-       "dushanba\0"
-       "seshanba\0"
-       "chorshanba\0"
-       "payshanba\0"
-       "juma\0"
-       "shanba\0"
-       "Yaksh\0"
-       "Dush\0"
-       "Sesh\0"
-       "Chor\0"
-       "Pay\0"
-       "Shan\0"
-       "Y\0"
-       "Iyun\0"
-       "Iyul\0"
-       "Avgust\0"
-       "Yanv\0"
-       "Fev\0"
-       "Avg\0"
-       "Noya\0"
-       "Dek\0"
-       "dddd, yyyy MMMM dd\0"
-       "\xe0\xa6\xaa\xe0\xa7\x82\xe0\xa6\xb0\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb9\xe0\xa7\x8d\xe0\xa6\xa3\0"
-       "\xe0\xa6\x85\xe0\xa6\xaa\xe0\xa6\xb0\xe0\xa6\xbe\xe0\xa6\xb9\xe0\xa7\x8d\xe0\xa6\xa3\0"
-       "\xe0\xa6\xb0\xe0\xa6\xac\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xb8\xe0\xa7\x8b\xe0\xa6\xae\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xae\xe0\xa6\x99\xe0\xa7\x8d\xe0\xa6\x97\xe0\xa6\xb2\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xac\xe0\xa7\x81\xe0\xa6\xa7\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xb6\xe0\xa6\xa8\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
-       "\xe0\xa6\xb0\xe0\xa6\xac\xe0\xa6\xbf\0"
-       "\xe0\xa6\xb8\xe0\xa7\x8b\xe0\xa6\xae\0"
-       "\xe0\xa6\xae\xe0\xa6\x99\xe0\xa7\x8d\xe0\xa6\x97\xe0\xa6\xb2\0"
-       "\xe0\xa6\xac\xe0\xa7\x81\xe0\xa6\xa7\0"
-       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb8\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\0"
-       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\xb0\0"
-       "\xe0\xa6\xb6\xe0\xa6\xa8\xe0\xa6\xbf\0"
-       "\xe0\xa6\xb0\0"
-       "\xe0\xa6\xb8\xe0\xa7\x8b\0"
-       "\xe0\xa6\xae\0"
-       "\xe0\xa6\xac\xe0\xa7\x81\0"
-       "\xe0\xa6\xac\xe0\xa7\x83\0"
-       "\xe0\xa6\xb6\xe0\xa7\x81\0"
-       "\xe0\xa6\xb6\0"
-       "\xe0\xa6\x9c\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x81\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x80\0"
-       "\xe0\xa6\xab\xe0\xa7\x87\xe0\xa6\xac\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa7\x81\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x80\0"
-       "\xe0\xa6\xae\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x8d\xe0\xa6\x9a\0"
-       "\xe0\xa6\x8f\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\xb2\0"
-       "\xe0\xa6\xae\xe0\xa7\x87\0"
-       "\xe0\xa6\x9c\xe0\xa7\x81\xe0\xa6\xa8\0"
-       "\xe0\xa6\x9c\xe0\xa7\x81\xe0\xa6\xb2\xe0\xa6\xbe\xe0\xa6\x87\0"
-       "\xe0\xa6\x86\xe0\xa6\x97\xe0\xa6\xb8\xe0\xa7\x8d\xe0\xa6\x9f\0"
-       "\xe0\xa6\xb8\xe0\xa7\x87\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xb0\0"
-       "\xe0\xa6\x85\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x8b\xe0\xa6\xac\xe0\xa6\xb0\0"
-       "\xe0\xa6\xa8\xe0\xa6\xad\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xb0\0"
-       "\xe0\xa6\xa1\xe0\xa6\xbf\xe0\xa6\xb8\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xb0\0"
-       "tt hh.mm\0"
-       "tt h.mm\0"
-       "tt hh.mm.ss\0"
-       "tt h.mm.ss\0"
-       "\xe0\xa8\x90\xe0\xa8\xa4\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\xb8\xe0\xa9\x8b\xe0\xa8\xae\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\xae\xe0\xa9\xb0\xe0\xa8\x97\xe0\xa8\xb2\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\xac\xe0\xa9\x81\xe0\xa8\xa7\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\xb5\xe0\xa9\x80\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa9\x81\xe0\xa9\xb1\xe0\xa8\x95\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa8\xa8\xe0\xa9\x80\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
-       "\xe0\xa8\x90\xe0\xa8\xa4.\0"
-       "\xe0\xa8\xb8\xe0\xa9\x8b\xe0\xa8\xae.\0"
-       "\xe0\xa8\xae\xe0\xa9\xb0\xe0\xa8\x97\xe0\xa8\xb2.\0"
-       "\xe0\xa8\xac\xe0\xa9\x81\xe0\xa8\xa7.\0"
-       "\xe0\xa8\xb5\xe0\xa9\x80\xe0\xa8\xb0.\0"
-       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa9\x81\xe0\xa9\xb1\xe0\xa8\x95\xe0\xa8\xb0.\0"
-       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa8\xa8\xe0\xa9\x80.\0"
-       "\xe0\xa8\x90\0"
-       "\xe0\xa8\xb8\xe0\xa9\x8b\0"
-       "\xe0\xa8\xae\xe0\xa9\xb0\0"
-       "\xe0\xa8\xac\xe0\xa9\x81\xe0\xa9\xb1\0"
-       "\xe0\xa8\xb5\xe0\xa9\x80\0"
-       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa9\x81\xe0\xa9\xb1\0"
-       "\xe0\xa8\xb8\xe0\xa8\xbc\0"
-       "\xe0\xa8\x9c\xe0\xa8\xa8\xe0\xa8\xb5\xe0\xa8\xb0\xe0\xa9\x80\0"
-       "\xe0\xa8\xab\xe0\xa8\xbc\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xb0\xe0\xa9\x80\0"
-       "\xe0\xa8\xae\xe0\xa8\xbe\xe0\xa8\xb0\xe0\xa8\x9a\0"
-       "\xe0\xa8\x85\xe0\xa8\xaa\xe0\xa9\x8d\xe0\xa8\xb0\xe0\xa9\x88\xe0\xa8\xb2\0"
-       "\xe0\xa8\xae\xe0\xa8\x88\0"
-       "\xe0\xa8\x9c\xe0\xa9\x82\xe0\xa8\xa8\0"
-       "\xe0\xa8\x9c\xe0\xa9\x81\xe0\xa8\xb2\xe0\xa8\xbe\xe0\xa8\x88\0"
-       "\xe0\xa8\x85\xe0\xa8\x97\xe0\xa8\xb8\xe0\xa8\xa4\0"
-       "\xe0\xa8\xb8\xe0\xa8\xa4\xe0\xa9\xb0\xe0\xa8\xac\xe0\xa8\xb0\0"
-       "\xe0\xa8\x85\xe0\xa8\x95\xe0\xa8\xa4\xe0\xa9\x82\xe0\xa8\xac\xe0\xa8\xb0\0"
-       "\xe0\xa8\xa8\xe0\xa8\xb5\xe0\xa9\xb0\xe0\xa8\xac\xe0\xa8\xb0\0"
-       "\xe0\xa8\xa6\xe0\xa8\xb8\xe0\xa9\xb0\xe0\xa8\xac\xe0\xa8\xb0\0"
-       "dd MMMM yyyy dddd\0"
-       "\xe0\xaa\xb0\xe0\xaa\xb5\xe0\xaa\xbf\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\xb8\xe0\xab\x8b\xe0\xaa\xae\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\xae\xe0\xaa\x82\xe0\xaa\x97\xe0\xaa\xb3\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\xac\xe0\xab\x81\xe0\xaa\xa7\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\x97\xe0\xab\x81\xe0\xaa\xb0\xe0\xab\x81\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\xb6\xe0\xab\x81\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\xb0\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\xb6\xe0\xaa\xa8\xe0\xaa\xbf\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
-       "\xe0\xaa\xb0\xe0\xaa\xb5\xe0\xaa\xbf\0"
-       "\xe0\xaa\xb8\xe0\xab\x8b\xe0\xaa\xae\0"
-       "\xe0\xaa\xae\xe0\xaa\x82\xe0\xaa\x97\xe0\xaa\xb3\0"
-       "\xe0\xaa\xac\xe0\xab\x81\xe0\xaa\xa7\0"
-       "\xe0\xaa\x97\xe0\xab\x81\xe0\xaa\xb0\xe0\xab\x81\0"
-       "\xe0\xaa\xb6\xe0\xab\x81\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\xb0\0"
-       "\xe0\xaa\xb6\xe0\xaa\xa8\xe0\xaa\xbf\0"
-       "\xe0\xaa\xb0\0"
-       "\xe0\xaa\xb8\xe0\xab\x8b\0"
-       "\xe0\xaa\xae\xe0\xaa\x82\0"
-       "\xe0\xaa\xac\xe0\xab\x81\0"
-       "\xe0\xaa\x97\xe0\xab\x81\0"
-       "\xe0\xaa\xb6\xe0\xab\x81\0"
-       "\xe0\xaa\xb6\0"
-       "\xe0\xaa\x9c\xe0\xaa\xbe\xe0\xaa\xa8\xe0\xab\x8d\xe0\xaa\xaf\xe0\xab\x81\xe0\xaa\x86\xe0\xaa\xb0\xe0\xab\x80\0"
-       "\xe0\xaa\xab\xe0\xab\x87\xe0\xaa\xac\xe0\xab\x8d\xe0\xaa\xb0\xe0\xab\x81\xe0\xaa\x86\xe0\xaa\xb0\xe0\xab\x80\0"
-       "\xe0\xaa\xae\xe0\xaa\xbe\xe0\xaa\xb0\xe0\xab\x8d\xe0\xaa\x9a\0"
-       "\xe0\xaa\x8f\xe0\xaa\xaa\xe0\xab\x8d\xe0\xaa\xb0\xe0\xaa\xbf\xe0\xaa\xb2\0"
-       "\xe0\xaa\xae\xe0\xab\x87\0"
-       "\xe0\xaa\x9c\xe0\xab\x82\xe0\xaa\xa8\0"
-       "\xe0\xaa\x9c\xe0\xab\x81\xe0\xaa\xb2\xe0\xaa\xbe\xe0\xaa\x88\0"
-       "\xe0\xaa\x91\xe0\xaa\x97\xe0\xaa\xb8\xe0\xab\x8d\xe0\xaa\x9f\0"
-       "\xe0\xaa\xb8\xe0\xaa\xaa\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x87\xe0\xaa\xae\xe0\xab\x8d\xe0\xaa\xac\xe0\xaa\xb0\0"
-       "\xe0\xaa\x91\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x8b\xe0\xaa\xac\xe0\xaa\xb0\0"
-       "\xe0\xaa\xa8\xe0\xaa\xb5\xe0\xab\x87\xe0\xaa\xae\xe0\xab\x8d\xe0\xaa\xac\xe0\xaa\xb0\0"
-       "\xe0\xaa\xa1\xe0\xaa\xbf\xe0\xaa\xb8\xe0\xab\x87\xe0\xaa\xae\xe0\xab\x8d\xe0\xaa\xac\xe0\xaa\xb0\0"
-       "\xe0\xaa\x9c\xe0\xaa\xbe\xe0\xaa\xa8\xe0\xab\x8d\xe0\xaa\xaf\xe0\xab\x81\0"
-       "\xe0\xaa\xab\xe0\xab\x87\xe0\xaa\xac\xe0\xab\x8d\xe0\xaa\xb0\xe0\xab\x81\0"
-       "\xe0\xaa\x91\xe0\xaa\x97\0"
-       "\xe0\xaa\xb8\xe0\xaa\xaa\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x87\0"
-       "\xe0\xaa\x91\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x8b\0"
-       "\xe0\xaa\xa8\xe0\xaa\xb5\xe0\xab\x87\0"
-       "\xe0\xaa\xa1\xe0\xaa\xbf\xe0\xaa\xb8\xe0\xab\x87\0"
-       "pm\0"
-       "\xe0\xac\xb0\xe0\xac\xac\xe0\xac\xbf\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\xb8\xe0\xad\x8b\xe0\xac\xae\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\xae\xe0\xac\x99\xe0\xad\x8d\xe0\xac\x97\xe0\xac\xb3\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\xac\xe0\xad\x81\xe0\xac\xa7\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\x97\xe0\xad\x81\xe0\xac\xb0\xe0\xad\x81\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\xb6\xe0\xad\x81\xe0\xac\x95\xe0\xad\x8d\xe0\xac\xb0\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\xb6\xe0\xac\xa8\xe0\xac\xbf\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
-       "\xe0\xac\xb0\xe0\xac\xac\xe0\xac\xbf\0"
-       "\xe0\xac\xb8\xe0\xad\x8b\xe0\xac\xae\0"
-       "\xe0\xac\xae\xe0\xac\x99\xe0\xad\x8d\xe0\xac\x97\xe0\xac\xb3\0"
-       "\xe0\xac\xac\xe0\xad\x81\xe0\xac\xa7\0"
-       "\xe0\xac\x97\xe0\xad\x81\xe0\xac\xb0\xe0\xad\x81\0"
-       "\xe0\xac\xb6\xe0\xad\x81\xe0\xac\x95\xe0\xad\x8d\xe0\xac\xb0\0"
-       "\xe0\xac\xb6\xe0\xac\xa8\xe0\xac\xbf\0"
-       "\xe0\xac\xb0\0"
-       "\xe0\xac\xb8\xe0\xad\x8b\0"
-       "\xe0\xac\xae\0"
-       "\xe0\xac\xac\xe0\xad\x81\0"
-       "\xe0\xac\x97\xe0\xad\x81\0"
-       "\xe0\xac\xb6\xe0\xad\x81\0"
-       "\xe0\xac\xb6\0"
-       "\xe0\xac\x9c\xe0\xac\xbe\xe0\xac\xa8\xe0\xad\x81\xe0\xac\x86\xe0\xac\xb0\xe0\xad\x80\0"
-       "\xe0\xac\xab\xe0\xad\x87\xe0\xac\xac\xe0\xad\x8d\xe0\xac\xb0\xe0\xad\x81\xe0\xad\x9f\xe0\xac\xbe\xe0\xac\xb0\xe0\xad\x80\0"
-       "\xe0\xac\xae\xe0\xac\xbe\xe0\xac\xb0\xe0\xad\x8d\xe0\xac\x9a\xe0\xad\x8d\xe0\xac\x9a\0"
-       "\xe0\xac\x85\xe0\xac\xaa\xe0\xad\x8d\xe0\xac\xb0\xe0\xad\x87\xe0\xac\xb2\0"
-       "\xe0\xac\xae\xe0\xad\x87\0"
-       "\xe0\xac\x9c\xe0\xad\x81\xe0\xac\xa8\0"
-       "\xe0\xac\x9c\xe0\xad\x81\xe0\xac\xb2\xe0\xac\xbe\xe0\xac\x87\0"
-       "\xe0\xac\x85\xe0\xac\x97\xe0\xac\xb7\xe0\xad\x8d\xe0\xac\x9f\0"
-       "\xe0\xac\xb8\xe0\xad\x87\xe0\xac\xaa\xe0\xad\x8d\xe0\xac\x9f\xe0\xad\x87\xe0\xac\xae\xe0\xad\x8d\xe0\xac\xac\xe0\xac\xb0\0"
-       "\xe0\xac\x85\xe0\xac\x95\xe0\xad\x8d\xe0\xac\x9f\xe0\xad\x8b\xe0\xac\xac\xe0\xac\xb0\0"
-       "\xe0\xac\xa8\xe0\xac\xad\xe0\xad\x87\xe0\xac\xae\xe0\xad\x8d\xe0\xac\xac\xe0\xac\xb0\0"
-       "\xe0\xac\xa1\xe0\xac\xbf\xe0\xac\xb8\xe0\xad\x87\xe0\xac\xae\xe0\xad\x8d\xe0\xac\xac\xe0\xac\xb0\0"
+       "PG\0"
+       "PTG\0"
+       "\xd1\x82\xd2\xa3\0"
+       "\xd1\x82\xd0\xba\0"
+       "TO\0"
+       "TK\0"
+       "\xe0\xa8\xaa\xe0\xa9\x82.\xe0\xa8\xa6\xe0\xa9\x81.\0"
+       "\xe0\xa8\xac\xe0\xa8\xbe.\xe0\xa8\xa6\xe0\xa9\x81.\0"
        "\xe0\xae\xae\xe0\xaf\x81\xe0\xae\xb1\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\x95\xe0\xae\xb2\xe0\xaf\x8d\0"
        "\xe0\xae\xaa\xe0\xae\xbf\xe0\xae\xb1\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\x95\xe0\xae\xb2\xe0\xaf\x8d\0"
-       "\xe0\xae\x9e\xe0\xae\xbe\xe0\xae\xaf\xe0\xae\xbf\xe0\xae\xb1\xe0\xaf\x81\0"
-       "\xe0\xae\xa4\xe0\xae\xbf\xe0\xae\x99\xe0\xaf\x8d\xe0\xae\x95\xe0\xae\xb3\xe0\xaf\x8d\0"
-       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xb5\xe0\xaf\x8d\xe0\xae\xb5\xe0\xae\xbe\xe0\xae\xaf\xe0\xaf\x8d\0"
-       "\xe0\xae\xaa\xe0\xaf\x81\xe0\xae\xa4\xe0\xae\xa9\xe0\xaf\x8d\0"
-       "\xe0\xae\xb5\xe0\xae\xbf\xe0\xae\xaf\xe0\xae\xbe\xe0\xae\xb4\xe0\xae\xa9\xe0\xaf\x8d\0"
-       "\xe0\xae\xb5\xe0\xaf\x86\xe0\xae\xb3\xe0\xaf\x8d\xe0\xae\xb3\xe0\xae\xbf\0"
-       "\xe0\xae\x9a\xe0\xae\xa9\xe0\xae\xbf\0"
-       "\xe0\xae\x9e\xe0\xae\xbe\0"
-       "\xe0\xae\xa4\xe0\xae\xbf\0"
-       "\xe0\xae\x9a\xe0\xaf\x86\0"
-       "\xe0\xae\xaa\xe0\xaf\x81\0"
-       "\xe0\xae\xb5\xe0\xae\xbf\0"
-       "\xe0\xae\xb5\xe0\xaf\x86\0"
-       "\xe0\xae\x9a\0"
-       "\xe0\xae\x9c\xe0\xae\xa9\xe0\xae\xb5\xe0\xae\xb0\xe0\xae\xbf\0"
-       "\xe0\xae\xaa\xe0\xae\xbf\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\xb0\xe0\xae\xb5\xe0\xae\xb0\xe0\xae\xbf\0"
-       "\xe0\xae\xae\xe0\xae\xbe\xe0\xae\xb0\xe0\xaf\x8d\xe0\xae\x9a\xe0\xaf\x8d\0"
-       "\xe0\xae\x8f\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\xb0\xe0\xae\xb2\xe0\xaf\x8d\0"
-       "\xe0\xae\xae\xe0\xaf\x87\0"
-       "\xe0\xae\x9c\xe0\xaf\x82\xe0\xae\xa9\xe0\xaf\x8d\0"
-       "\xe0\xae\x9c\xe0\xaf\x82\xe0\xae\xb2\xe0\xaf\x88\0"
-       "\xe0\xae\x86\xe0\xae\x95\xe0\xae\xb8\xe0\xaf\x8d\xe0\xae\x9f\xe0\xaf\x81\0"
-       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\x9f\xe0\xae\xae\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
-       "\xe0\xae\x85\xe0\xae\x95\xe0\xaf\x8d\xe0\xae\x9f\xe0\xaf\x8b\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
-       "\xe0\xae\xa8\xe0\xae\xb5\xe0\xae\xae\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
-       "\xe0\xae\x9f\xe0\xae\xbf\xe0\xae\x9a\xe0\xae\xae\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
-       "\xe0\xae\x86\xe0\xae\x95\xe0\xae\xb8\xe0\xaf\x8d\xe0\xae\x9f\xe0\xaf\x8d\0"
-       "\xe0\xae\x9c\xe0\xae\xa9.\0"
-       "\xe0\xae\xaa\xe0\xae\xbf\xe0\xae\xaa\xe0\xaf\x8d.\0"
-       "\xe0\xae\xae\xe0\xae\xbe\xe0\xae\xb0\xe0\xaf\x8d.\0"
-       "\xe0\xae\x8f\xe0\xae\xaa\xe0\xaf\x8d.\0"
-       "\xe0\xae\x86\xe0\xae\x95.\0"
-       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xaa\xe0\xaf\x8d.\0"
-       "\xe0\xae\x85\xe0\xae\x95\xe0\xaf\x8d.\0"
-       "\xe0\xae\xa8\xe0\xae\xb5.\0"
-       "\xe0\xae\x9f\xe0\xae\xbf\xe0\xae\x9a.\0"
-       "\xe0\xb0\x86\xe0\xb0\xa6\xe0\xb0\xbf\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\xb8\xe0\xb1\x8b\xe0\xb0\xae\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\xae\xe0\xb0\x82\xe0\xb0\x97\xe0\xb0\xb3\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\xac\xe0\xb1\x81\xe0\xb0\xa7\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\x97\xe0\xb1\x81\xe0\xb0\xb0\xe0\xb1\x81\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\xb6\xe0\xb1\x81\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\xb6\xe0\xb0\xa8\xe0\xb0\xbf\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
-       "\xe0\xb0\x86\xe0\xb0\xa6\xe0\xb0\xbf\0"
-       "\xe0\xb0\xb8\xe0\xb1\x8b\xe0\xb0\xae\0"
-       "\xe0\xb0\xae\xe0\xb0\x82\xe0\xb0\x97\xe0\xb0\xb3\0"
-       "\xe0\xb0\xac\xe0\xb1\x81\xe0\xb0\xa7\0"
-       "\xe0\xb0\x97\xe0\xb1\x81\xe0\xb0\xb0\xe0\xb1\x81\0"
-       "\xe0\xb0\xb6\xe0\xb1\x81\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\xb0\0"
-       "\xe0\xb0\xb6\xe0\xb0\xa8\xe0\xb0\xbf\0"
-       "\xe0\xb0\x86\0"
-       "\xe0\xb0\xb8\xe0\xb1\x8b\0"
-       "\xe0\xb0\xae\0"
-       "\xe0\xb0\xac\xe0\xb1\x81\0"
-       "\xe0\xb0\x97\xe0\xb1\x81\0"
-       "\xe0\xb0\xb6\xe0\xb1\x81\0"
-       "\xe0\xb0\xb6\0"
-       "\xe0\xb0\x9c\xe0\xb0\xa8\xe0\xb0\xb5\xe0\xb0\xb0\xe0\xb0\xbf\0"
-       "\xe0\xb0\xab\xe0\xb0\xbf\xe0\xb0\xac\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xb5\xe0\xb0\xb0\xe0\xb0\xbf\0"
-       "\xe0\xb0\xae\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb1\x8d\xe0\xb0\x9a\xe0\xb0\xbf\0"
-       "\xe0\xb0\x8e\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xbf\xe0\xb0\xb2\xe0\xb1\x8d\0"
-       "\xe0\xb0\xae\xe0\xb1\x87\0"
-       "\xe0\xb0\x9c\xe0\xb1\x82\xe0\xb0\xa8\xe0\xb1\x8d\0"
-       "\xe0\xb0\x9c\xe0\xb1\x82\xe0\xb0\xb2\xe0\xb1\x88\0"
-       "\xe0\xb0\x86\xe0\xb0\x97\xe0\xb0\xb8\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x81\0"
-       "\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x86\xe0\xb0\x82\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
-       "\xe0\xb0\x85\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x8b\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
-       "\xe0\xb0\xa8\xe0\xb0\xb5\xe0\xb0\x82\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
-       "\xe0\xb0\xa1\xe0\xb0\xbf\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\x82\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
-       "\xe0\xb0\x9c\xe0\xb1\x81\xe0\xb0\xb2\xe0\xb1\x88\0"
-       "\xe0\xb0\x9c\xe0\xb0\xa8\0"
-       "\xe0\xb0\xab\xe0\xb0\xbf\xe0\xb0\xac\xe0\xb1\x8d\xe0\xb0\xb0\0"
-       "\xe0\xb0\x8f\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xbf\0"
-       "\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x86\xe0\xb0\x82\0"
-       "\xe0\xb0\x85\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x8b\0"
-       "\xe0\xb0\xa8\xe0\xb0\xb5\xe0\xb0\x82\0"
-       "\xe0\xb0\xa1\xe0\xb0\xbf\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\x82\0"
-       "\xe0\xb2\xb0\xe0\xb2\xb5\xe0\xb2\xbf\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\xb8\xe0\xb3\x8b\xe0\xb2\xae\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\xae\xe0\xb2\x82\xe0\xb2\x97\xe0\xb2\xb3\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\xac\xe0\xb3\x81\xe0\xb2\xa7\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\x97\xe0\xb3\x81\xe0\xb2\xb0\xe0\xb3\x81\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\xb6\xe0\xb3\x81\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\xb6\xe0\xb2\xa8\xe0\xb2\xbf\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
-       "\xe0\xb2\xb0\xe0\xb2\xb5\xe0\xb2\xbf\0"
-       "\xe0\xb2\xb8\xe0\xb3\x8b\xe0\xb2\xae\0"
-       "\xe0\xb2\xae\xe0\xb2\x82\xe0\xb2\x97\xe0\xb2\xb3\0"
-       "\xe0\xb2\xac\xe0\xb3\x81\xe0\xb2\xa7\0"
-       "\xe0\xb2\x97\xe0\xb3\x81\xe0\xb2\xb0\xe0\xb3\x81\0"
-       "\xe0\xb2\xb6\xe0\xb3\x81\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\xb0\0"
-       "\xe0\xb2\xb6\xe0\xb2\xa8\xe0\xb2\xbf\0"
-       "\xe0\xb2\xb0\0"
-       "\xe0\xb2\xb8\xe0\xb3\x8b\0"
-       "\xe0\xb2\xae\xe0\xb2\x82\0"
-       "\xe0\xb2\xac\xe0\xb3\x81\0"
-       "\xe0\xb2\x97\xe0\xb3\x81\0"
-       "\xe0\xb2\xb6\xe0\xb3\x81\0"
-       "\xe0\xb2\xb6\0"
-       "\xe0\xb2\x9c\xe0\xb2\xa8\xe0\xb2\xb5\xe0\xb2\xb0\xe0\xb2\xbf\0"
-       "\xe0\xb2\xab\xe0\xb3\x86\xe0\xb2\xac\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xb5\xe0\xb2\xb0\xe0\xb2\xbf\0"
-       "\xe0\xb2\xae\xe0\xb2\xbe\xe0\xb2\xb0\xe0\xb3\x8d\xe0\xb2\x9a\xe0\xb3\x8d\0"
-       "\xe0\xb2\x8f\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xbf\xe0\xb2\xb2\xe0\xb3\x8d\0"
-       "\xe0\xb2\xae\xe0\xb3\x87\0"
-       "\xe0\xb2\x9c\xe0\xb3\x82\xe0\xb2\xa8\xe0\xb3\x8d\0"
-       "\xe0\xb2\x9c\xe0\xb3\x81\xe0\xb2\xb2\xe0\xb3\x88\0"
-       "\xe0\xb2\x86\xe0\xb2\x97\xe0\xb2\xb8\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x8d\0"
-       "\xe0\xb2\xb8\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
-       "\xe0\xb2\x85\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x8b\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
-       "\xe0\xb2\xa8\xe0\xb2\xb5\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
-       "\xe0\xb2\xa1\xe0\xb2\xbf\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
-       "\xe0\xb2\x9c\xe0\xb2\xa8.\0"
-       "\xe0\xb2\xab\xe0\xb3\x86\xe0\xb2\xac\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb3\x81.\0"
-       "\xe0\xb2\xae\xe0\xb2\xbe\0"
-       "\xe0\xb2\x8f\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xbf.\0"
-       "\xe0\xb2\x9c\xe0\xb3\x82\0"
-       "\xe0\xb2\x9c\xe0\xb3\x81.\0"
-       "\xe0\xb2\x86\xe0\xb2\x97.\0"
-       "\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x86\xe0\xb2\x82.\0"
-       "\xe0\xb2\x85\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x8b.\0"
-       "\xe0\xb2\xa8\xe0\xb2\xb5\xe0\xb3\x86\xe0\xb2\x82.\0"
-       "\xe0\xb2\xa1\xe0\xb2\xbf\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\x82.\0"
-       "MMMM dd\0"
-       "\xe0\xb4\x9e\xe0\xb4\xbe\xe0\xb4\xaf\xe0\xb4\xb1\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
-       "\xe0\xb4\xa4\xe0\xb4\xbf\xe0\xb4\x99\xe0\xb5\x8d\xe0\xb4\x95\xe0\xb4\xb3\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
-       "\xe0\xb4\x9a\xe0\xb5\x8a\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xb5\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe0\xb4\x9a\0"
-       "\xe0\xb4\xac\xe0\xb5\x81\xe0\xb4\xa7\xe0\xb4\xa8\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
-       "\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
-       "\xe0\xb4\xb5\xe0\xb5\x86\xe0\xb4\xb3\xe0\xb5\x8d\xe0\xb4\xb3\xe0\xb4\xbf\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
-       "\xe0\xb4\xb6\xe0\xb4\xa8\xe0\xb4\xbf\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
-       "\xe0\xb4\x9e\xe0\xb4\xbe\xe0\xb4\xaf\xe0\xb5\xbc\0"
-       "\xe0\xb4\xa4\xe0\xb4\xbf\xe0\xb4\x99\xe0\xb5\x8d\xe0\xb4\x95\xe0\xb5\xbe\0"
-       "\xe0\xb4\x9a\xe0\xb5\x8a\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xb5\0"
-       "\xe0\xb4\xac\xe0\xb5\x81\xe0\xb4\xa7\xe0\xb5\xbb\0"
-       "\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb4\x82\0"
-       "\xe0\xb4\xb5\xe0\xb5\x86\xe0\xb4\xb3\xe0\xb5\x8d\xe0\xb4\xb3\xe0\xb4\xbf\0"
-       "\xe0\xb4\xb6\xe0\xb4\xa8\xe0\xb4\xbf\0"
-       "\xe0\xb4\x9e\xe0\xb4\xbe\0"
-       "\xe0\xb4\xa4\xe0\xb4\xbf\0"
-       "\xe0\xb4\x9a\xe0\xb5\x8a\0"
-       "\xe0\xb4\xac\xe0\xb5\x81\0"
-       "\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xaf\xe0\xb4\xbe\0"
-       "\xe0\xb4\xb5\xe0\xb5\x86\0"
-       "\xe0\xb4\xb6\0"
-       "\xe0\xb4\x9c\xe0\xb4\xa8\xe0\xb5\x81\xe0\xb4\xb5\xe0\xb4\xb0\xe0\xb4\xbf\0"
-       "\xe0\xb4\xab\xe0\xb5\x86\xe0\xb4\xac\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb5\x81\xe0\xb4\xb5\xe0\xb4\xb0\xe0\xb4\xbf\0"
-       "\xe0\xb4\xae\xe0\xb4\xbe\xe0\xb5\xbc\xe0\xb4\x9a\xe0\xb5\x8d\xe0\xb4\x9a\xe0\xb5\x8d\0"
-       "\xe0\xb4\x8f\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb4\xbf\xe0\xb5\xbd\0"
-       "\xe0\xb4\xae\xe0\xb5\x87\xe0\xb4\xaf\xe0\xb5\x8d\0"
-       "\xe0\xb4\x9c\xe0\xb5\x82\xe0\xb5\xba\0"
-       "\xe0\xb4\x9c\xe0\xb5\x82\xe0\xb4\xb2\xe0\xb5\x88\0"
-       "\xe0\xb4\x86\xe0\xb4\x97\xe0\xb4\xb8\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\0"
-       "\xe0\xb4\xb8\xe0\xb5\x86\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb4\x82\xe0\xb4\xac\xe0\xb5\xbc\0"
-       "\xe0\xb4\x92\xe0\xb4\x95\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9f\xe0\xb5\x8b\xe0\xb4\xac\xe0\xb5\xbc\0"
-       "\xe0\xb4\xa8\xe0\xb4\xb5\xe0\xb4\x82\xe0\xb4\xac\xe0\xb5\xbc\0"
-       "\xe0\xb4\xa1\xe0\xb4\xbf\xe0\xb4\xb8\xe0\xb4\x82\xe0\xb4\xac\xe0\xb5\xbc\0"
-       "\xe0\xb4\x9c\xe0\xb4\xa8\xe0\xb5\x81\0"
-       "\xe0\xb4\xab\xe0\xb5\x86\xe0\xb4\xac\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb5\x81\0"
-       "\xe0\xb4\xae\xe0\xb4\xbe\xe0\xb5\xbc\0"
-       "\xe0\xb4\x8f\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb4\xbf\0"
-       "\xe0\xb4\x93\xe0\xb4\x97\0"
-       "\xe0\xb4\xb8\xe0\xb5\x86\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb4\x82\0"
-       "\xe0\xb4\x92\xe0\xb4\x95\xe0\xb5\x8d\xe0\xb4\x9f\xe0\xb5\x8b\0"
-       "\xe0\xb4\xa8\xe0\xb4\xb5\xe0\xb4\x82\0"
-       "\xe0\xb4\xa1\xe0\xb4\xbf\xe0\xb4\xb8\xe0\xb4\x82\0"
+       "\xe0\xb2\xaa\xe0\xb3\x82\xe0\xb2\xb0\xe0\xb3\x8d\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb9\xe0\xb3\x8d\xe0\xb2\xa8\0"
+       "\xe0\xb2\x85\xe0\xb2\xaa\xe0\xb2\xb0\xe0\xb2\xbe\xe0\xb2\xb9\xe0\xb3\x8d\xe0\xb2\xa8\0"
        "\xe0\xa6\xaa\xe0\xa7\x82\xe0\xa7\xb0\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb9\xe0\xa7\x8d\xe0\xa6\xa3\0"
        "\xe0\xa6\x85\xe0\xa6\xaa\xe0\xa7\xb0\xe0\xa6\xbe\xe0\xa6\xb9\xe0\xa7\x8d\xe0\xa6\xa3\0"
-       "\xe0\xa6\xa6\xe0\xa7\x87\xe0\xa6\x93\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa6\xb8\xe0\xa7\x8b\xe0\xa6\xae\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa6\xae\xe0\xa6\x99\xe0\xa7\x8d\xe0\xa6\x97\xe0\xa6\xb2\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa6\xac\xe0\xa7\x81\xe0\xa6\xa7\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa6\xb6\xe0\xa6\xa8\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
-       "\xe0\xa7\xb0\xe0\xa6\xac\xe0\xa6\xbf\0"
-       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\0"
-       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa7\xb0\0"
-       "\xe0\xa6\x9c\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x81\xe0\xa7\xb1\xe0\xa6\xbe\xe0\xa7\xb0\xe0\xa7\x80\0"
-       "\xe0\xa6\xab\xe0\xa7\x87\xe0\xa6\xac\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa7\x81\xe0\xa7\xb1\xe0\xa6\xbe\xe0\xa7\xb0\xe0\xa7\x80\0"
-       "\xe0\xa6\xae\xe0\xa6\xbe\xe0\xa7\xb0\xe0\xa7\x8d\xe0\xa6\x9a\0"
-       "\xe0\xa6\x8f\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa6\xbf\xe0\xa6\xb2\0"
-       "\xe0\xa6\x86\xe0\xa6\x97\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\x9f\0"
-       "\xe0\xa6\x9b\xe0\xa7\x87\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\xa4\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa7\xb0\0"
-       "\xe0\xa6\x85\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x8b\xe0\xa6\xac\xe0\xa7\xb0\0"
-       "\xe0\xa6\xa8\xe0\xa7\xb1\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa7\xb0\0"
-       "\xe0\xa6\xa1\xe0\xa6\xbf\xe0\xa6\x9a\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa7\xb0\0"
-       "\xe0\xa6\x9c\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x81\0"
-       "\xe0\xa6\xab\xe0\xa7\x87\xe0\xa6\xac\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa7\x81\0"
-       "\xe0\xa6\x86\xe0\xa6\x97\0"
-       "\xe0\xa6\xb8\xe0\xa7\x87\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\x9f\0"
-       "\xe0\xa6\x85\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x8b\0"
-       "\xe0\xa6\xa8\xe0\xa6\xad\xe0\xa7\x87\0"
-       "\xe0\xa6\xa1\xe0\xa6\xbf\xe0\xa6\xb8\xe0\xa7\x87\0"
-       "yyyy,MMMM dd, dddd\0"
-       "MMMM,yy\0"
-       "MMMM,yyyy\0"
-       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb3\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb3\0"
-       "\xe0\xa4\x9c\xe0\xa4\xbe\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa5\x80\0"
-       "\xe0\xa4\xab\xe0\xa5\x87\xe0\xa4\xac\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x81\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa5\x80\0"
-       "\xe0\xa4\x8f\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xb2\0"
-       "\xe0\xa4\xae\xe0\xa5\x87\0"
-       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xb2\xe0\xa5\x88\0"
-       "\xe0\xa4\x91\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\x9f\0"
-       "\xe0\xa4\xb8\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\x91\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\xa8\xe0\xa5\x8b\xe0\xa4\xb5\xe0\xa5\x8d\xe0\xa4\xb9\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\xa1\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\x9c\xe0\xa4\xbe\xe0\xa4\xa8\xe0\xa5\x87\0"
-       "\xe0\xa4\xab\xe0\xa5\x87\xe0\xa4\xac\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x81\0"
-       "\xe0\xa4\x8f\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xbf\0"
-       "\xe0\xa4\x91\xe0\xa4\x97\0"
-       "\xe0\xa4\xb8\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\x82\0"
-       "\xe0\xa4\x91\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\0"
-       "\xe0\xa4\xa8\xe0\xa5\x8b\xe0\xa4\xb5\xe0\xa5\x8d\xe0\xa4\xb9\xe0\xa5\x87\xe0\xa4\x82\0"
-       "\xe0\xa4\xa1\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\x82\0"
+       "\xe0\xa4\xae.\xe0\xa4\xaa\xe0\xa5\x82.\0"
+       "\xe0\xa4\xae.\xe0\xa4\x89.\0"
        "\xd2\xae\xd3\xa8\0"
        "\xd2\xae\xd0\xa5\0"
-       "\xd0\xbd\xd1\x8f\xd0\xbc\0"
-       "\xd0\xb4\xd0\xb0\xd0\xb2\xd0\xb0\xd0\xb0\0"
-       "\xd0\xbc\xd1\x8f\xd0\xb3\xd0\xbc\xd0\xb0\xd1\x80\0"
-       "\xd0\xbb\xd1\x85\xd0\xb0\xd0\xb3\xd0\xb2\xd0\xb0\0"
-       "\xd0\xbf\xd2\xaf\xd1\x80\xd1\x8d\xd0\xb2\0"
-       "\xd0\xb1\xd0\xb0\xd0\xb0\xd1\x81\xd0\xb0\xd0\xbd\0"
-       "\xd0\xb1\xd1\x8f\xd0\xbc\xd0\xb1\xd0\xb0\0"
-       "\xd0\x9d\xd1\x8f\0"
-       "\xd0\x94\xd0\xb0\0"
-       "\xd0\x9c\xd1\x8f\0"
-       "\xd0\x9b\xd1\x85\0"
-       "\xd0\x9f\xd2\xaf\0"
-       "\xd0\x91\xd0\xb0\0"
-       "\xd0\x91\xd1\x8f\0"
-       "\xd0\x9d\xd1\x8d\xd0\xb3\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\xa5\xd0\xbe\xd1\x91\xd1\x80\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x93\xd1\x83\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x94\xd3\xa9\xd1\x80\xd3\xa9\xd0\xb2\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\xa2\xd0\xb0\xd0\xb2\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x97\xd1\x83\xd1\x80\xd0\xb3\xd0\xb0\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x94\xd0\xbe\xd0\xbb\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x9d\xd0\xb0\xd0\xb9\xd0\xbc\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x95\xd1\x81\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x90\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x90\xd1\x80\xd0\xb2\xd0\xb0\xd0\xbd \xd0\xbd\xd1\x8d\xd0\xb3\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "\xd0\x90\xd1\x80\xd0\xb2\xd0\xb0\xd0\xbd \xd1\x85\xd0\xbe\xd1\x91\xd1\x80\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "1-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "2-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "3-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "4-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "5-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "6-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "7-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "8-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "9-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "10-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "11-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "12-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
-       "dddd, yyyy '\xd0\xbe\xd0\xbd\xd1\x8b' MM '\xd1\x81\xd0\xb0\xd1\x80\xd1\x8b\xd0\xbd' d\0"
-       "yyyy '\xd0\xbe\xd0\xbd\xd1\x8b' MM '\xd1\x81\xd0\xb0\xd1\x80\xd1\x8b\xd0\xbd' d\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8bM\xe0\xbd\x9a\xe0\xbd\xba\xe0\xbd\xa6\xe0\xbc\x8b\x64\0"
        "\xe0\xbd\xa6\xe0\xbe\x94\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbe\xb2\xe0\xbd\xbc\xe0\xbc\x8b\0"
        "\xe0\xbd\x95\xe0\xbe\xb1\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbe\xb2\xe0\xbd\xbc\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x98\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x98\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x98\xe0\xbd\xa2\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\xa7\xe0\xbe\xb3\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x95\xe0\xbd\xb4\xe0\xbd\xa2\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xb4\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbd\x84\xe0\xbd\xa6\xe0\xbc\x8b\0"
-       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbe\xa4\xe0\xbd\xba\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x98\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\0"
-       "\xe0\xbd\x98\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x98\xe0\xbd\xa2\xe0\xbc\x8b\0"
-       "\xe0\xbd\xa7\xe0\xbe\xb3\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x95\xe0\xbd\xb4\xe0\xbd\xa2\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xb4\xe0\xbc\x8b\0"
-       "\xe0\xbd\xa6\xe0\xbd\x84\xe0\xbd\xa6\xe0\xbc\x8b\0"
-       "\xe0\xbd\xa6\xe0\xbe\xa4\xe0\xbd\xba\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x89\xe0\xbd\xb2\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\0"
-       "\xe0\xbd\x98\xe0\xbd\xb2\0"
-       "\xe0\xbd\xa7\xe0\xbe\xb3\0"
-       "\xe0\xbd\x95\xe0\xbd\xb4\0"
-       "\xe0\xbd\xa6\0"
-       "\xe0\xbd\xa6\xe0\xbe\xa4\xe0\xbd\xba\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x84\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbd\xbc\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbd\xa6\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbd\xb4\xe0\xbd\x98\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x9e\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\xa3\xe0\xbe\x94\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbe\xb2\xe0\xbd\xb4\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x91\xe0\xbd\xb4\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xa2\xe0\xbe\x92\xe0\xbe\xb1\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x82\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x85\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbd\xa6\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa2\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa3\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa4\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa5\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa6\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa7\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa8\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa9\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\xe0\xbc\xa0\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\xe0\xbc\xa1\0"
-       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\xe0\xbc\xa2\0"
-       "yyyy'\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3' M'\xe0\xbd\x9a\xe0\xbd\xba\xe0\xbd\xa6' d\0"
-       "yyyy'\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3' M'\xe0\xbd\x9a\xe0\xbd\xba\xe0\xbd\xa6' d dddd\0"
-       "yyyy\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3 MMM d\0"
-       "yyyy\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3 MMM d dddd\0"
-       "yyyy'\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b' M\0"
-       "Dydd Sul\0"
-       "Dydd Llun\0"
-       "Dydd Mawrth\0"
-       "Dydd Mercher\0"
-       "Dydd Iau\0"
-       "Dydd Gwener\0"
-       "Dydd Sadwrn\0"
-       "Sul\0"
-       "Llun\0"
-       "Maw\0"
-       "Mer\0"
-       "Iau\0"
-       "Gwe\0"
-       "Sad\0"
-       "Ll\0"
-       "Ionawr\0"
-       "Chwefror\0"
-       "Mawrth\0"
-       "Ebrill\0"
-       "Mehefin\0"
-       "Gorffennaf\0"
-       "Awst\0"
-       "Medi\0"
-       "Hydref\0"
-       "Tachwedd\0"
-       "Rhagfyr\0"
-       "Ion\0"
-       "Chw\0"
-       "Ebr\0"
-       "Meh\0"
-       "Gor\0"
-       "Hyd\0"
-       "Tach\0"
-       "Rhag\0"
-       "\xe1\x9e\x96\xe1\x9f\x92\xe1\x9e\x9a\xe1\x9e\xb9\xe1\x9e\x80\0"
-       "\xe1\x9e\x9b\xe1\x9f\x92\xe1\x9e\x84\xe1\x9e\xb6\xe1\x9e\x85\0"
-       "\xe1\x9e\xa2\xe1\x9e\xb6\xe1\x9e\x91\xe1\x9e\xb7\xe1\x9e\x8f\xe1\x9f\x92\xe1\x9e\x99\0"
-       "\xe1\x9e\x85\xe1\x9e\x93\xe1\x9f\x92\xe1\x9e\x91\0"
-       "\xe1\x9e\xa2\xe1\x9e\x84\xe1\x9f\x92\xe1\x9e\x82\xe1\x9e\xb6\xe1\x9e\x9a\0"
-       "\xe1\x9e\x96\xe1\x9e\xbb\xe1\x9e\x92\0"
-       "\xe1\x9e\x96\xe1\x9f\x92\xe1\x9e\x9a\xe1\x9e\xa0\xe1\x9e\x9f\xe1\x9f\x92\xe1\x9e\x94\xe1\x9e\x8f\xe1\x9e\xb7\xe1\x9f\x8d\0"
-       "\xe1\x9e\x9f\xe1\x9e\xbb\xe1\x9e\x80\xe1\x9f\x92\xe1\x9e\x9a\0"
-       "\xe1\x9e\x9f\xe1\x9f\x85\xe1\x9e\x9a\xe1\x9f\x8d\0"
-       "\xe1\x9e\x98\xe1\x9e\x80\xe1\x9e\x9a\xe1\x9e\xb6\0"
-       "\xe1\x9e\x80\xe1\x9e\xbb\xe1\x9e\x98\xe1\x9f\x92\xe1\x9e\x97\xe1\x9f\x88\0"
-       "\xe1\x9e\x98\xe1\x9e\xb8\xe1\x9e\x93\xe1\x9e\xb6\0"
-       "\xe1\x9e\x98\xe1\x9f\x81\xe1\x9e\x9f\xe1\x9e\xb6\0"
-       "\xe1\x9e\xa7\xe1\x9e\x9f\xe1\x9e\x97\xe1\x9e\xb6\0"
-       "\xe1\x9e\x98\xe1\x9e\xb7\xe1\x9e\x90\xe1\x9e\xbb\xe1\x9e\x93\xe1\x9e\xb6\0"
-       "\xe1\x9e\x80\xe1\x9e\x80\xe1\x9f\x92\xe1\x9e\x80\xe1\x9e\x8a\xe1\x9e\xb6\0"
-       "\xe1\x9e\x9f\xe1\x9e\xb8\xe1\x9e\xa0\xe1\x9e\xb6\0"
-       "\xe1\x9e\x80\xe1\x9e\x89\xe1\x9f\x92\xe1\x9e\x89\xe1\x9e\xb6\0"
-       "\xe1\x9e\x8f\xe1\x9e\xbb\xe1\x9e\x9b\xe1\x9e\xb6\0"
-       "\xe1\x9e\x9c\xe1\x9e\xb7\xe1\x9e\x85\xe1\x9f\x92\xe1\x9e\x86\xe1\x9e\xb7\xe1\x9e\x80\xe1\x9e\xb6\0"
-       "\xe1\x9e\x92\xe1\x9f\x92\xe1\x9e\x93\xe1\x9e\xbc\0"
-       "'\xe1\x9e\x81\xe1\x9f\x82' MM '\xe1\x9e\x86\xe1\x9f\x92\xe1\x9e\x93\xe1\x9e\xb6\xe1\x9f\x86' yyyy\0"
+       "yb\0"
+       "yh\0"
        "\xe0\xba\x81\xe0\xbb\x88\xe0\xba\xad\xe0\xba\x99\xe0\xba\x97\xe0\xbb\x88\xe0\xba\xbd\xe0\xba\x87\0"
        "\xe0\xba\xab\xe0\xba\xbc\xe0\xba\xb1\xe0\xba\x87\xe0\xba\x97\xe0\xbb\x88\xe0\xba\xbd\xe0\xba\x87\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xad\xe0\xba\xb2\xe0\xba\x97\xe0\xba\xb4\xe0\xba\x94\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x88\xe0\xba\xb1\xe0\xba\x99\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xad\xe0\xba\xb1\xe0\xba\x87\xe0\xba\x84\xe0\xba\xb2\xe0\xba\x99\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x9e\xe0\xba\xb8\xe0\xba\x94\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x9e\xe0\xba\xb0\xe0\xba\xab\xe0\xba\xb1\xe0\xba\x94\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xaa\xe0\xba\xb8\xe0\xba\x81\0"
-       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xbb\x80\xe0\xba\xaa\xe0\xba\xbb\xe0\xba\xb2\0"
-       "\xe0\xba\x97\0"
-       "\xe0\xba\x88\0"
-       "\xe0\xba\x84\0"
-       "\xe2\x80\x8b\xe0\xba\x9e\xe0\xba\xb8\0"
-       "\xe0\xba\x9e\0"
-       "\xe2\x80\x8b\xe0\xba\xaa\xe0\xba\xb8\0"
-       "\xe0\xba\xaa\0"
-       "\xe0\xba\xa1\xe0\xba\xb1\xe0\xba\x87\xe0\xba\x81\xe0\xba\xad\xe0\xba\x99\0"
-       "\xe0\xba\x81\xe0\xba\xb8\xe0\xba\xa1\xe0\xba\x9e\xe0\xba\xb2\0"
-       "\xe0\xba\xa1\xe0\xba\xb5\xe0\xba\x99\xe0\xba\xb2\0"
-       "\xe0\xbb\x80\xe0\xba\xa1\xe0\xba\xaa\xe0\xba\xb2\0"
-       "\xe0\xba\x9e\xe0\xba\xb6\xe0\xba\x94\xe0\xba\xaa\xe0\xba\xb0\xe0\xba\x9e\xe0\xba\xb2\0"
-       "\xe0\xba\xa1\xe0\xba\xb4\xe0\xba\x96\xe0\xba\xb8\xe0\xba\x99\xe0\xba\xb2\0"
-       "\xe0\xba\x81\xe0\xbb\x8d\xe0\xba\xa5\xe0\xba\xb0\xe0\xba\x81\xe0\xba\xbb\xe0\xba\x94\0"
-       "\xe0\xba\xaa\xe0\xba\xb4\xe0\xba\x87\xe0\xba\xab\xe0\xba\xb2\0"
-       "\xe0\xba\x81\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x8d\xe0\xba\xb2\0"
-       "\xe0\xba\x95\xe0\xba\xb8\xe0\xba\xa5\xe0\xba\xb2\0"
-       "\xe0\xba\x9e\xe0\xba\xb0\xe0\xba\x88\xe0\xba\xb4\xe0\xba\x81\0"
-       "\xe0\xba\x97\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xa7\xe0\xba\xb2\0"
-       "\xe0\xba\xa1.\xe0\xba\x81.\0"
-       "\xe0\xba\x81.\xe0\xba\x9e.\0"
-       "\xe0\xba\xa1.\xe0\xba\x99.\0"
-       "\xe0\xba\xa1.\xe0\xba\xaa.\0"
-       "\xe0\xba\x9e.\xe0\xba\x9e.\0"
-       "\xe0\xba\xa1\xe0\xba\xb4.\xe0\xba\x96.\0"
-       "\xe0\xba\x81.\xe0\xba\xa5.\0"
-       "\xe0\xba\xaa.\xe0\xba\xab.\0"
-       "\xe0\xba\x81.\xe0\xba\x8d.\0"
-       "\xe0\xba\x95.\xe0\xba\xa5.\0"
-       "\xe0\xba\x9e.\xe0\xba\x88.\0"
-       "\xe0\xba\x97.\xe0\xba\xa7.\0"
-       "dddd \xe0\xba\x97\xe0\xba\xb5 d MMMM gg yyyy\0"
-       "luns\0"
-       "m\xc3\xa9rcores\0"
-       "xoves\0"
-       "venres\0"
-       "Dom\0"
-       "M\xc3\xa9r\0"
-       "Xov\0"
-       "Ven\0"
-       "S\xc3\xa1\x62\0"
-       "X\0"
-       "Xaneiro\0"
-       "Febreiro\0"
-       "Maio\0"
-       "Xu\xc3\xb1o\0"
-       "Xullo\0"
-       "Setembro\0"
-       "Outubro\0"
-       "Novembro\0"
-       "Decembro\0"
-       "xaneiro\0"
-       "febreiro\0"
-       "xu\xc3\xb1o\0"
-       "xullo\0"
-       "decembro\0"
-       "Xan\0"
-       "Abr\0"
-       "Xu\xc3\xb1\0"
-       "Xul\0"
-       "Out\0"
-       "\xe0\xa4\xae.\xe0\xa4\xaa\xe0\xa5\x82.\0"
+       "\xe1\x80\x94\xe1\x80\xb6\xe1\x80\x94\xe1\x80\x80\xe1\x80\xba\0"
+       "\xe1\x80\x8a\xe1\x80\x94\xe1\x80\xb1\0"
        "\xe0\xa4\xae.\xe0\xa4\xa8\xe0\xa4\x82.\0"
-       "\xe0\xa4\x86\xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xa4\xe0\xa5\x8d\xe0\xa4\xaf\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb3\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\x93\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\x9f\0"
-       "\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\x93\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\xe0\xa4\xac\xe0\xa4\xb0\0"
        "\xe0\xb6\xb4\xe0\xb7\x99.\xe0\xb7\x80.\0"
        "\xe0\xb6\xb4.\xe0\xb7\x80.\0"
-       "\xe0\xb6\x89\xe0\xb6\xbb\xe0\xb7\x92\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb7\x83\xe0\xb6\xb3\xe0\xb7\x94\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb6\x85\xe0\xb6\x9f\xe0\xb7\x84\xe0\xb6\xbb\xe0\xb7\x94\xe0\xb7\x80\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb6\xb6\xe0\xb6\xaf\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb6\xb6\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x84\xe0\xb7\x83\xe0\xb7\x8a\xe0\xb6\xb4\xe0\xb6\xad\xe0\xb7\x92\xe0\xb6\xb1\xe0\xb7\x8a\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb7\x83\xe0\xb7\x92\xe0\xb6\x9a\xe0\xb7\x94\xe0\xb6\xbb\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb7\x83\xe0\xb7\x99\xe0\xb6\xb1\xe0\xb7\x83\xe0\xb7\x94\xe0\xb6\xbb\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
-       "\xe0\xb6\x85\xe0\xb6\x9f\xe0\xb7\x84\0"
-       "\xe0\xb6\xb6\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x84\xe0\xb7\x83\xe0\xb7\x8a\0"
-       "\xe0\xb7\x83\xe0\xb7\x92\xe0\xb6\x9a\xe0\xb7\x94\0"
-       "\xe0\xb7\x83\xe0\xb7\x99\xe0\xb6\xb1\0"
-       "\xe0\xb6\x89\0"
-       "\xe0\xb7\x83\0"
-       "\xe0\xb6\x85\0"
-       "\xe0\xb6\xb6\0"
-       "\xe0\xb6\xb6\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\0"
-       "\xe0\xb7\x83\xe0\xb7\x92\0"
-       "\xe0\xb7\x83\xe0\xb7\x99\0"
-       "\xe0\xb6\xa2\xe0\xb6\xb1\xe0\xb7\x80\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x92\0"
-       "\xe0\xb6\xb4\xe0\xb7\x99\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x80\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x92\0"
-       "\xe0\xb6\xb8\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x94\0"
-       "\xe0\xb6\x85\xe0\xb6\xb4\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x9a\xe0\xb6\xbd\xe0\xb7\x8a\0"
-       "\xe0\xb6\xb8\xe0\xb7\x90\xe0\xb6\xba\xe0\xb7\x92\0"
-       "\xe0\xb6\xa2\xe0\xb7\x96\xe0\xb6\xb1\xe0\xb7\x92\0"
-       "\xe0\xb6\xa2\xe0\xb7\x96\xe0\xb6\xbd\xe0\xb7\x92\0"
-       "\xe0\xb6\x85\xe0\xb6\x9c\xe0\xb7\x9d\xe0\xb7\x83\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x94\0"
-       "\xe0\xb7\x83\xe0\xb7\x90\xe0\xb6\xb4\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x90\xe0\xb6\xb8\xe0\xb7\x8a\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
-       "\xe0\xb6\x94\xe0\xb6\x9a\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x9d\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
-       "\xe0\xb6\xb1\xe0\xb7\x9c\xe0\xb7\x80\xe0\xb7\x90\xe0\xb6\xb8\xe0\xb7\x8a\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
-       "\xe0\xb6\xaf\xe0\xb7\x99\xe0\xb7\x83\xe0\xb7\x90\xe0\xb6\xb8\xe0\xb7\x8a\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
-       "\xe0\xb6\xa2\xe0\xb6\xb1\0"
-       "\xe0\xb6\xb4\xe0\xb7\x99\xe0\xb6\xb6\0"
-       "\xe0\xb6\xb8\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x8a\0"
-       "\xe0\xb6\x85\xe0\xb6\x9c\xe0\xb7\x9d\0"
-       "\xe0\xb7\x83\xe0\xb7\x90\xe0\xb6\xb4\xe0\xb7\x8a\0"
-       "\xe0\xb6\x94\xe0\xb6\x9a\xe0\xb7\x8a\0"
-       "\xe0\xb6\xb1\xe0\xb7\x9c\xe0\xb7\x80\xe0\xb7\x90\0"
-       "\xe0\xb6\xaf\xe0\xb7\x99\xe0\xb7\x83\xe0\xb7\x90\0"
+       "\xe1\x8f\x8c\xe1\x8e\xbe\xe1\x8e\xb4\0"
+       "\xe1\x8f\x92\xe1\x8e\xaf\xe1\x8f\xb1\xe1\x8e\xa2\xe1\x8f\x97\xe1\x8f\xa2\0"
        "\xe1\x8c\xa5\xe1\x8b\x8b\xe1\x89\xb5\0"
        "\xe1\x8a\xa8\xe1\x88\xb0\xe1\x8b\x93\xe1\x89\xb5\0"
-       "\xe1\x8a\xa5\xe1\x88\x91\xe1\x8b\xb5\0"
-       "\xe1\x88\xb0\xe1\x8a\x9e\0"
-       "\xe1\x88\x9b\xe1\x8a\xad\xe1\x88\xb0\xe1\x8a\x9e\0"
-       "\xe1\x88\xa8\xe1\x89\xa1\xe1\x8b\x95\0"
-       "\xe1\x88\x90\xe1\x88\x99\xe1\x88\xb5\0"
-       "\xe1\x8b\x93\xe1\x88\xad\xe1\x89\xa5\0"
-       "\xe1\x89\x85\xe1\x8b\xb3\xe1\x88\x9c\0"
-       "\xe1\x88\x9b\xe1\x8a\xad\xe1\x88\xb0\0"
-       "\xe1\x8a\xa5\0"
-       "\xe1\x88\xb0\0"
-       "\xe1\x88\x9b\0"
-       "\xe1\x88\xa8\0"
-       "\xe1\x88\x90\0"
-       "\xe1\x8b\x93\0"
-       "\xe1\x89\x85\0"
-       "\xe1\x8c\x83\xe1\x8a\x95\xe1\x8b\xa9\xe1\x8b\x88\xe1\x88\xaa\0"
-       "\xe1\x8d\x8c\xe1\x89\xa5\xe1\x88\xa9\xe1\x8b\x88\xe1\x88\xaa\0"
-       "\xe1\x88\x9b\xe1\x88\xad\xe1\x89\xbd\0"
-       "\xe1\x8a\xa4\xe1\x8d\x95\xe1\x88\xaa\xe1\x88\x8d\0"
-       "\xe1\x88\x9c\xe1\x8b\xad\0"
-       "\xe1\x8c\x81\xe1\x8a\x95\0"
-       "\xe1\x8c\x81\xe1\x88\x8b\xe1\x8b\xad\0"
-       "\xe1\x8a\xa6\xe1\x8c\x88\xe1\x88\xb5\xe1\x89\xb5\0"
-       "\xe1\x88\xb4\xe1\x8d\x95\xe1\x89\xb4\xe1\x88\x9d\xe1\x89\xa0\xe1\x88\xad\0"
-       "\xe1\x8a\xa6\xe1\x8a\xad\xe1\x89\xb6\xe1\x89\xa0\xe1\x88\xad\0"
-       "\xe1\x8a\x96\xe1\x89\xac\xe1\x88\x9d\xe1\x89\xa0\xe1\x88\xad\0"
-       "\xe1\x8b\xb2\xe1\x88\xb4\xe1\x88\x9d\xe1\x89\xa0\xe1\x88\xad\0"
-       "\xe1\x8a\xa6\xe1\x8a\xad\xe1\x89\xb0\xe1\x8b\x8d\xe1\x89\xa0\xe1\x88\xad\0"
-       "\xe1\x8c\x83\xe1\x8a\x95\xe1\x8b\xa9\0"
-       "\xe1\x8d\x8c\xe1\x89\xa5\xe1\x88\xa9\0"
-       "\xe1\x8a\xa4\xe1\x8d\x95\xe1\x88\xaa\0"
-       "\xe1\x8a\xa6\xe1\x8c\x88\xe1\x88\xb5\0"
-       "\xe1\x88\xb4\xe1\x8d\x95\xe1\x89\xb4\0"
-       "\xe1\x8a\xa6\xe1\x8a\xad\xe1\x89\xb6\0"
-       "\xe1\x8a\x96\xe1\x89\xac\xe1\x88\x9d\0"
-       "\xe1\x8b\xb2\xe1\x88\xb4\xe1\x88\x9d\0"
        "Zdat azal\0"
        "\xe1\xb8\x8c\x65\x66\x66ir aza\0"
-       "Asamas\0"
-       "Aynas\0"
-       "Asinas\0"
-       "Akras\0"
-       "Akwas\0"
-       "Asimwas\0"
-       "Asi\xe1\xb8\x8dyas\0"
-       "Asa\0"
-       "Ayn\0"
-       "Asn\0"
-       "Akr\0"
-       "Akw\0"
-       "Asm\0"
-       "As\xe1\xb8\x8d\0"
-       "Yennayer\0"
-       "Yebrayer\0"
-       "Mars\0"
-       "Ibrir\0"
-       "Mayyu\0"
-       "Yunyu\0"
-       "Yulyuz\0"
-       "\xc6\x94uct\0"
-       "Cutanbir\0"
-       "K\xe1\xb9\xaduber\0"
-       "Nwanbir\0"
-       "Dujanbir\0"
-       "Yen\0"
-       "Yeb\0"
-       "Ibr\0"
-       "Yun\0"
-       "Yul\0"
-       "\xc6\x94uc\0"
-       "Cut\0"
-       "K\xe1\xb9\xadu\0"
-       "Nwa\0"
-       "Duj\0"
-       "\xe0\xa4\xaa\xe0\xa5\x82\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\xb5 \xe0\xa4\xae\xe0\xa4\xa7\xe0\xa5\x8d\xe0\xa4\xaf\xe0\xa4\xbe\xe0\xa4\xa8\xe0\xa5\x8d\xe0\xa4\xb9\0"
-       "\xe0\xa4\x89\xe0\xa4\xa4\xe0\xa5\x8d\xe0\xa4\xa4\xe0\xa4\xb0 \xe0\xa4\xae\xe0\xa4\xa7\xe0\xa5\x8d\xe0\xa4\xaf\xe0\xa4\xbe\xe0\xa4\xa8\xe0\xa5\x8d\xe0\xa4\xb9\0"
-       "\xe0\xa4\x86\xe0\xa4\x87\xe0\xa4\xa4\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb8\xe0\xa5\x8b\xe0\xa4\xae\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xae\xe0\xa4\x99\xe0\xa5\x8d\xe0\xa4\x97\xe0\xa4\xb2\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xac\xe0\xa5\x81\xe0\xa4\xa7\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xac\xe0\xa4\xbf\xe0\xa4\xb9\xe0\xa5\x80\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb6\xe0\xa5\x81\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\xb6\xe0\xa4\xa8\xe0\xa4\xbf\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
-       "\xe0\xa4\x86\xe0\xa4\x87\xe0\xa4\xa4\0"
-       "\xe0\xa4\xae\xe0\xa4\x99\xe0\xa5\x8d\xe0\xa4\x97\xe0\xa4\xb2\0"
-       "\xe0\xa4\xac\xe0\xa4\xbf\xe0\xa4\xb9\xe0\xa5\x80\0"
-       "\xe0\xa4\x86\0"
-       "\xe0\xa4\xae\0"
-       "\xe0\xa4\xac\xe0\xa4\xbf\0"
-       "\xe0\xa4\xab\xe0\xa5\x87\xe0\xa4\xac\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x81\xe0\xa4\x85\xe0\xa4\xb0\xe0\xa5\x80\0"
-       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xb2\0"
-       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xa8\0"
-       "\xe0\xa4\x85\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\x9f\0"
-       "\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\xae\xe0\xa5\x8d\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\x85\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\xa8\xe0\xa5\x8b\xe0\xa4\xad\xe0\xa5\x87\xe0\xa4\xae\xe0\xa5\x8d\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "\xe0\xa4\xa1\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\xae\xe0\xa5\x8d\xe0\xa4\xac\xe0\xa4\xb0\0"
-       "dddd, MMMM dd, yyyy\0"
-       "MMMM dd, yyyy\0"
-       "\xd9\x88\xd8\xb1\xdb\x8c\0"
-       "\xd8\xba\xd9\x88\xdb\x8c\xdb\x8c\0"
-       "\xd8\xba\xd8\xa8\xd8\xb1\xda\xab\xd9\x88\xd9\x84\xdb\x8c\0"
-       "\xda\x86\xd9\x86\xda\xab\xd8\xa7\xda\x9a\0"
-       "\xd8\xb2\xd9\x85\xd8\xb1\xdb\x8c\0"
-       "\xd9\x88\xda\x96\xdb\x8c\0"
-       "\xd8\xaa\xd9\x84\xd9\x87\0"
-       "\xd9\x84\xda\x93\xd9\x85\0"
-       "\xd9\x84\xdb\x8c\xd9\x86\xd8\xaf\xdb\x8d\0"
-       "\xd9\x85\xd8\xb1\xd8\xba\xd9\x88\xd9\x85\xdb\x8c\0"
-       "\xd8\xb3\xd9\x84\xd9\x88\xd8\xa7\xd8\xba\xd9\x87\0"
-       "\xda\xa9\xd8\xa8\0"
-       "Linggo\0"
-       "Lunes\0"
-       "Martes\0"
-       "Miyerkules\0"
-       "Huwebes\0"
-       "Biyernes\0"
-       "Sabado\0"
-       "Lin\0"
-       "Miy\0"
-       "Huw\0"
-       "Biy\0"
-       "Pebrero\0"
-       "Marso\0"
-       "Hunyo\0"
-       "Hulyo\0"
-       "Setyembre\0"
-       "Oktubre\0"
-       "Nobyembre\0"
-       "Disyembre\0"
-       "Ene\0"
-       "Peb\0"
-       "Hun\0"
-       "Hul\0"
-       "Nob\0"
-       "Lahadi\0"
-       "Litinin\0"
-       "Talata\0"
-       "Laraba\0"
-       "Alhamis\0"
-       "Jumma'a\0"
-       "Asabar\0"
-       "Lh\0"
-       "Li\0"
-       "Ta\0"
-       "Lr\0"
-       "Al\0"
-       "Ju\0"
-       "As\0"
-       "Janairu\0"
-       "Faburairu\0"
-       "Maris\0"
-       "Afirilu\0"
-       "Mayu\0"
-       "Yuni\0"
-       "Yuli\0"
-       "Agusta\0"
-       "Satumba\0"
-       "Nuwamba\0"
-       "Disamba\0"
-       "Fab\0"
-       "Afi\0"
-       "Agu\0"
-       "Nuw\0"
+       "subaka\0"
+       "kikii\xc9\x97\x65\0"
        "\xc3\x80\xc3\xa1r\xe1\xbb\x8d\xcc\x80\0"
        "\xe1\xbb\x8c\xcc\x80s\xc3\xa1n\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xc3\x80\xc3\xack\xc3\xba\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 Aj\xc3\xa9\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xc3\x8cs\xe1\xba\xb9\xcc\x81gun\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81r\xc3\xba\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81\x62\xe1\xbb\x8d\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xe1\xba\xb8t\xc3\xac\0"
-       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xc3\x80\x62\xc3\xa1m\xe1\xba\xb9\xcc\x81ta\0"
-       "\xc3\x80\xc3\xack\xc3\xba\0"
-       "Aj\xc3\xa9\0"
-       "\xc3\x8cs\xe1\xba\xb9\xcc\x81gun\0"
-       "\xe1\xba\xb8t\xc3\xac\0"
-       "\xc3\x80\x62\xc3\xa1m\xe1\xba\xb9\xcc\x81ta\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xb9\xa2\xe1\xba\xb9\xcc\x81r\xe1\xba\xb9\xcc\x81\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x88r\xc3\xa8l\xc3\xa8\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xba\xb8r\xe1\xba\xb9\xcc\x80n\xc3\xa0\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x8cgb\xc3\xa9\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xba\xb8\xcc\x80\x62ibi\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x92k\xc3\xba\x64u\0"
-       "O\xe1\xb9\xa3\xc3\xb9 Ag\xe1\xba\xb9m\xe1\xbb\x8d\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x92g\xc3\xban\0"
-       "O\xe1\xb9\xa3\xc3\xb9 Owewe\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xbb\x8c\xcc\x80w\xc3\xa0r\xc3\xa0\0"
-       "O\xe1\xb9\xa3\xc3\xb9 B\xc3\xa9l\xc3\xba\0"
-       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xbb\x8c\xcc\x80p\xe1\xba\xb9\xcc\x80\0"
-       "\xe1\xb9\xa2\xe1\xba\xb9\xcc\x81r\xe1\xba\xb9\xcc\x81\0"
-       "\xc3\x88r\xc3\xa8l\xc3\xa8\0"
-       "\xe1\xba\xb8r\xe1\xba\xb9\xcc\x80n\xc3\xa0\0"
-       "\xc3\x8cgb\xc3\xa9\0"
-       "\xe1\xba\xb8\xcc\x80\x62ibi\0"
-       "\xc3\x92k\xc3\xba\x64u\0"
-       "Ag\xe1\xba\xb9m\xe1\xbb\x8d\0"
-       "\xc3\x92g\xc3\xban\0"
-       "Owewe\0"
-       "\xe1\xbb\x8c\xcc\x80w\xc3\xa0r\xc3\xa0\0"
-       "B\xc3\xa9l\xc3\xba\0"
-       "\xe1\xbb\x8c\xcc\x80p\xe1\xba\xb9\xcc\x80\0"
-       "Sontaga\0"
-       "Mosupalogo\0"
-       "Labohlano\0"
-       "Mokibelo\0"
-       "Mok\0"
-       "Janaware\0"
-       "Feberware\0"
-       "Mat\xc5\xa1he\0"
-       "Aporele\0"
-       "Julae\0"
-       "Agostose\0"
-       "Setemere\0"
-       "Oktobore\0"
-       "Nofemere\0"
-       "Disemere\0"
-       "Apo\0"
-       "Nof\0"
-       "MMMM d'.-at'\0"
+       "moies\0"
+       "nom\xc3\xabttes\0"
        "u.t.\0"
        "u.k.\0"
-       "sabaat\0"
-       "ataasinngorneq\0"
-       "marlunngorneq\0"
-       "pingasunngorneq\0"
-       "sisamanngorneq\0"
-       "tallimanngorneq\0"
-       "arfininngorneq\0"
-       "ata\0"
-       "pin\0"
-       "sis\0"
-       "tal\0"
-       "arf\0"
-       "martsi\0"
-       "aprili\0"
-       "maji\0"
-       "augustusi\0"
-       "septemberi\0"
-       "oktoberi\0"
-       "novemberi\0"
-       "decemberi\0"
-       "MMMM d'.-at, 'yyyy\0"
        "A.M.\0"
        "P.M.\0"
-       "Mb\xe1\xbb\x8ds\xe1\xbb\x8b \xe1\xbb\xa4ka\0"
-       "M\xe1\xbb\x8dnde\0"
-       "Tiuzdee\0"
-       "Wenezdee\0"
-       "T\xe1\xbb\x8d\xe1\xbb\x8dzdee\0"
-       "Fra\xe1\xbb\x8b\x64\x65\x65\0"
-       "Sat\xe1\xbb\x8d\x64\x65\x65\0"
-       "\xe1\xbb\xa4ka\0"
-       "M\xe1\xbb\x8dn\0"
-       "Tiu\0"
-       "Wen\0"
-       "T\xe1\xbb\x8d\xe1\xbb\x8d\0"
-       "Fra\xe1\xbb\x8b\0"
-       "Jen\xe1\xbb\xa5war\xe1\xbb\x8b\0"
-       "Febr\xe1\xbb\xa5war\xe1\xbb\x8b\0"
-       "Maach\xe1\xbb\x8b\0"
-       "Eprel\0"
-       "Mee\0"
-       "Juun\0"
-       "Jula\xe1\xbb\x8b\0"
-       "\xe1\xbb\x8cg\xe1\xbb\x8d\xe1\xbb\x8dst\0"
-       "\xe1\xbb\x8cktoba\0"
-       "Jen\0"
-       "Maa\0"
-       "Juu\0"
-       "\xe1\xbb\x8cg\xe1\xbb\x8d\0"
-       "\xe1\xbb\x8ckt\0"
-       "M\xe2\x80\x99 \xea\x86\xaa\xe2\x80\x99\x64\xe2\x80\x99 \xea\x91\x8d\xe2\x80\x99\0"
+       "WD\0"
+       "WB\0"
+       "\xe1\x8a\x95\xe1\x8c\x89\xe1\x88\x86 \xe1\x88\xb0\xe1\x8b\x93\xe1\x89\xb0\0"
+       "\xe1\x8b\xb5\xe1\x88\x95\xe1\x88\xad \xe1\x88\xb0\xe1\x8b\x93\xe1\x89\xb5\0"
+       "sn.\0"
+       "gn.\0"
        "\xea\x8e\xb8\xea\x84\x91\0"
        "\xea\x81\xaf\xea\x8b\x92\0"
-       "\xea\x91\xad\xea\x86\x8f\xea\x91\x8d\0"
-       "\xea\x86\x8f\xea\x8a\x82\xea\x8b\x8d\0"
-       "\xea\x86\x8f\xea\x8a\x82\xea\x91\x8d\0"
-       "\xea\x86\x8f\xea\x8a\x82\xea\x8c\x95\0"
-       "\xea\x86\x8f\xea\x8a\x82\xea\x87\x96\0"
-       "\xea\x86\x8f\xea\x8a\x82\xea\x89\xac\0"
-       "\xea\x86\x8f\xea\x8a\x82\xea\x83\x98\0"
-       "\xea\x91\xad\xea\x86\x8f\0"
-       "\xea\x86\x8f\xea\x8b\x8d\0"
-       "\xea\x86\x8f\xea\x91\x8d\0"
-       "\xea\x86\x8f\xea\x8c\x95\0"
-       "\xea\x86\x8f\xea\x87\x96\0"
-       "\xea\x86\x8f\xea\x89\xac\0"
-       "\xea\x86\x8f\xea\x83\x98\0"
-       "\xea\x86\x8f\0"
-       "\xea\x8b\x8d\0"
-       "\xea\x91\x8d\0"
-       "\xea\x8c\x95\0"
-       "\xea\x87\x96\0"
-       "\xea\x89\xac\0"
-       "\xea\x83\x98\0"
-       "\xea\x8b\x8d\xea\x86\xaa\0"
-       "\xea\x91\x8d\xea\x86\xaa\0"
-       "\xea\x8c\x95\xea\x86\xaa\0"
-       "\xea\x87\x96\xea\x86\xaa\0"
-       "\xea\x89\xac\xea\x86\xaa\0"
-       "\xea\x83\x98\xea\x86\xaa\0"
-       "\xea\x8f\x83\xea\x86\xaa\0"
-       "\xea\x89\x86\xea\x86\xaa\0"
-       "\xea\x88\xac\xea\x86\xaa\0"
-       "\xea\x8a\xb0\xea\x86\xaa\0"
-       "\xea\x8a\xb0\xea\x8a\xaa\xea\x86\xaa\0"
-       "\xea\x8a\xb0\xea\x91\x8b\xea\x86\xaa\0"
-       "yyyy'\xea\x88\x8e' M'\xea\x86\xaa' d'\xea\x91\x8d'\0"
-       "dddd, yyyy'\xea\x88\x8e' M'\xea\x86\xaa' d'\xea\x91\x8d'\0"
-       "yyyy'\xea\x88\x8e' M'\xea\x86\xaa' d'\xea\x91\x8d', dddd\0"
-       "yyyy\xea\x88\x8e MMM d\xea\x91\x8d\0"
-       "dddd, yyyy\xea\x88\x8e MMM d\xea\x91\x8d\0"
-       "yyyy'\xea\x88\x8e' M'\xea\x86\xaa'\0"
-       "Meurzh\0"
-       "Merc\xca\xbcher\0"
-       "Yaou\0"
-       "Gwener\0"
-       "Sadorn\0"
-       "sul\0"
-       "meu.\0"
-       "yaou\0"
-       "gwe.\0"
-       "sad.\0"
-       "lu\0"
-       "mz\0"
-       "mc\0"
-       "ya\0"
-       "gw\0"
-       "sa\0"
-       "Genver\0"
-       "C\xca\xbchwevrer\0"
-       "Ebrel\0"
-       "Mae\0"
-       "Mezheven\0"
-       "Gouere\0"
-       "Eost\0"
-       "Gwengolo\0"
-       "Here\0"
-       "Du\0"
-       "Kerzu\0"
-       "Gen\0"
-       "C\xca\xbchwe\0"
-       "Meur\0"
-       "Mezh\0"
-       "Goue\0"
-       "Gwen\0"
-       "Ker\0"
+       "G.M.\0"
+       "\xda\x86.\xd8\xa8\0"
+       "\xda\x86.\xd9\x83\0"
        "v.m.\0"
        "n.m.\0"
-       "Sunntig\0"
-       "M\xc3\xa4\xc3\xa4ntig\0"
-       "Ziischtig\0"
-       "Mittwuch\0"
-       "Dunschtig\0"
-       "Friitig\0"
-       "Samschtig\0"
-       "Su.\0"
-       "M\xc3\xa4.\0"
-       "Zi.\0"
-       "Mi.\0"
-       "Du.\0"
-       "Fr.\0"
-       "Sa.\0"
-       "Auguscht\0"
-       "Sept\xc3\xa4mber\0"
-       "Oktoober\0"
-       "Nov\xc3\xa4mber\0"
-       "Dez\xc3\xa4mber\0"
-       "MMMM d \xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d\0"
        "\xd0\xad\xd0\x98\0"
        "\xd0\xad\xd0\x9a\0"
-       "\xd0\x91\xd0\xb0\xd1\x81\xd0\xba\xd1\x8b\xd2\xbb\xd1\x8b\xd0\xb0\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb0\0"
-       "\xd0\x91\xd1\x8d\xd0\xbd\xd0\xb8\xd0\xb4\xd0\xb8\xd1\x8d\xd0\xbb\xd0\xb8\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb8\xd0\xba\0"
-       "\xd0\x9e\xd0\xbf\xd1\x82\xd1\x83\xd0\xbe\xd1\x80\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\xd0\xba\0"
-       "\xd0\xa1\xd1\x8d\xd1\x80\xd1\x8d\xd0\xb4\xd1\x8d\0"
-       "\xd0\xa7\xd1\x8d\xd0\xbf\xd0\xbf\xd0\xb8\xd1\x8d\xd1\x80\0"
-       "\xd0\x91\xd1\x8d\xd1\x8d\xd1\x82\xd0\xb8\xd2\xa5\xd1\x81\xd1\x8d\0"
-       "\xd0\xa1\xd1\x83\xd0\xb1\xd1\x83\xd0\xbe\xd1\x82\xd0\xb0\0"
-       "\xd0\x91\xd1\x81\0"
-       "\xd0\x91\xd0\xbd\0"
-       "\xd0\x9e\xd0\xbf\0"
-       "\xd0\xa1\xd1\x8d\0"
-       "\xd0\xa7\xd0\xbf\0"
-       "\xd0\x91\xd1\x8d\0"
-       "\xd0\x9e\0"
-       "\xd0\xa2\xd0\xbe\xd1\x85\xd1\x81\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\0"
-       "\xd0\x9e\xd0\xbb\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\0"
-       "\xd0\x9a\xd1\x83\xd0\xbb\xd1\x83\xd0\xbd \xd1\x82\xd1\x83\xd1\x82\xd0\xb0\xd1\x80\0"
-       "\xd0\x9c\xd1\x83\xd1\x83\xd1\x81 \xd1\x83\xd1\x81\xd1\x82\xd0\xb0\xd1\x80\0"
-       "\xd0\xab\xd0\xb0\xd0\xbc \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
-       "\xd0\x91\xd1\x8d\xd1\x81 \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
-       "\xd0\x9e\xd1\x82 \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
-       "\xd0\x90\xd1\x82\xd1\x8b\xd1\x80\xd0\xb4\xd1\x8c\xd1\x8b\xd1\x85 \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
-       "\xd0\x91\xd0\xb0\xd0\xbb\xd0\xb0\xd2\x95\xd0\xb0\xd0\xbd \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
-       "\xd0\x90\xd0\xbb\xd1\x82\xd1\x8b\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x8b\0"
-       "\xd0\xa1\xd1\x8d\xd1\x82\xd0\xb8\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb8\0"
-       "\xd0\x90\xd1\x85\xd1\x81\xd1\x8b\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x8b\0"
-       "\xd0\xa2\xd0\xbe\xd1\x85\xd1\x81\0"
-       "\xd0\x9e\xd0\xbb\xd1\x83\xd0\xbd\0"
-       "\xd0\x9a\xd0\xbb\xd0\xbd_\xd1\x82\xd1\x82\xd1\x80\0"
-       "\xd0\x9c\xd1\x83\xd1\x81_\xd1\x83\xd1\x81\xd1\x82\0"
-       "\xd0\xab\xd0\xb0\xd0\xbc_\xd0\xb9\xd0\xbd\0"
-       "\xd0\x91\xd1\x8d\xd1\x81_\xd0\xb9\xd0\xbd\0"
-       "\xd0\x9e\xd1\x82_\xd0\xb9\xd0\xbd\0"
-       "\xd0\x90\xd1\x82\xd1\x80\xd0\xb4\xd1\x8c_\xd0\xb9\xd0\xbd\0"
-       "\xd0\x91\xd0\xbb\xd2\x95\xd0\xbd_\xd0\xb9\xd0\xbd\0"
-       "\xd0\x90\xd0\xbb\xd1\x82\0"
-       "\xd0\xa1\xd1\x8d\xd1\x82\0"
-       "\xd0\x90\xd1\x85\xd1\x81\0"
-       "yyyy MM d\0"
-       "dd yyyy MM d\0"
-       "dddd, yyyy '\xd1\x81.' MMMM d '\xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d'\0"
-       "yyyy '\xd1\x81.' MMMM d '\xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d'\0"
-       "dddd, MMMM d '\xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d' yyyy '\xd1\x81.'\0"
-       "yyyy '\xd1\x81.' MMMM\0"
-       "Ku cyumweru\0"
-       "Kuwa mbere\0"
-       "Kuwa kabiri\0"
-       "Kuwa gatatu\0"
-       "Kuwa kane\0"
-       "Kuwa gatanu\0"
-       "Kuwa gatandatu\0"
-       "cyu.\0"
-       "mbe.\0"
-       "kab.\0"
-       "gtu.\0"
-       "kan.\0"
-       "gnu.\0"
-       "gnd.\0"
-       "Mutarama\0"
-       "Gashyantare\0"
-       "Werurwe\0"
-       "Mata\0"
-       "Gicuransi\0"
-       "Kamena\0"
-       "Nyakanga\0"
-       "Kanama\0"
-       "Nzeli\0"
-       "Ukwakira\0"
-       "Ugushyingo\0"
-       "Ukuboza\0"
-       "mut.\0"
-       "gas.\0"
-       "wer.\0"
-       "mat.\0"
-       "gic.\0"
-       "kam.\0"
-       "nya.\0"
-       "nze.\0"
-       "ukw.\0"
-       "ugu.\0"
-       "uku.\0"
-       "d'mh' MMMM\0"
        "m\0"
        "f\0"
-       "DiD\xc3\xb2mhnaich\0"
-       "DiLuain\0"
-       "DiM\xc3\xa0irt\0"
-       "DiCiadain\0"
-       "Diardaoin\0"
-       "DihAoine\0"
-       "DiSathairne\0"
-       "DiD\0"
-       "DiL\0"
-       "DiM\0"
-       "DiC\0"
-       "Dia\0"
-       "Dih\0"
-       "DiS\0"
-       "Am Faoilleach\0"
-       "An Gearran\0"
-       "Am M\xc3\xa0rt\0"
-       "An Giblean\0"
-       "An C\xc3\xa8itean\0"
-       "An t-\xc3\x92gmhios\0"
-       "An t-Iuchar\0"
-       "An L\xc3\xb9nastal\0"
-       "An t-Sultain\0"
-       "An D\xc3\xa0mhair\0"
-       "An t-Samhain\0"
-       "An D\xc3\xb9\x62hlachd\0"
-       "Faoi\0"
-       "Gearr\0"
-       "M\xc3\xa0rt\0"
-       "Gibl\0"
-       "C\xc3\xa8it\0"
-       "\xc3\x92gmh\0"
-       "Iuch\0"
-       "L\xc3\xb9na\0"
-       "Sult\0"
-       "D\xc3\xa0mh\0"
-       "D\xc3\xb9\x62h\0"
-       "dddd, d'mh' MMMM yyyy\0"
-       "d'mh' MMMM yyyy\0"
-       "\xe9\x80\xb1\xe6\x97\xa5\0"
-       "\xe9\x80\xb1\xe4\xb8\x80\0"
-       "\xe9\x80\xb1\xe4\xba\x8c\0"
-       "\xe9\x80\xb1\xe4\xb8\x89\0"
-       "\xe9\x80\xb1\xe5\x9b\x9b\0"
-       "\xe9\x80\xb1\xe4\xba\x94\0"
-       "\xe9\x80\xb1\xe5\x85\xad\0"
-       "dddd yyyy\xe5\xb9\xb4MMMd\xe6\x97\xa5\0"
        "\xd8\xb5\0"
        "\xd9\x85\0"
-       "\xd8\xa7\xd9\x84\xd8\xa3\xd8\xad\xd8\xaf\0"
-       "\xd8\xa7\xd9\x84\xd8\xa7\xd8\xab\xd9\x86\xd9\x8a\xd9\x86\0"
-       "\xd8\xa7\xd9\x84\xd8\xab\xd9\x84\xd8\xa7\xd8\xab\xd8\xa7\xd8\xa1\0"
-       "\xd8\xa7\xd9\x84\xd8\xa3\xd8\xb1\xd8\xa8\xd8\xb9\xd8\xa7\xd8\xa1\0"
-       "\xd8\xa7\xd9\x84\xd8\xae\xd9\x85\xd9\x8a\xd8\xb3\0"
-       "\xd8\xa7\xd9\x84\xd8\xac\xd9\x85\xd8\xb9\xd8\xa9\0"
-       "\xd8\xa7\xd9\x84\xd8\xb3\xd8\xa8\xd8\xaa\0"
-       "\xd8\xad\0"
-       "\xd9\x86\0"
-       "\xd8\xab\0"
-       "\xd8\xb1\0"
-       "\xd8\xae\0"
-       "\xd9\x83\xd8\xa7\xd9\x86\xd9\x88\xd9\x86 \xd8\xa7\xd9\x84\xd8\xab\xd8\xa7\xd9\x86\xd9\x8a\0"
-       "\xd8\xb4\xd8\xa8\xd8\xa7\xd8\xb7\0"
-       "\xd8\xa2\xd8\xb0\xd8\xa7\xd8\xb1\0"
-       "\xd9\x86\xd9\x8a\xd8\xb3\xd8\xa7\xd9\x86\0"
-       "\xd8\xa3\xd9\x8a\xd8\xa7\xd8\xb1\0"
-       "\xd8\xad\xd8\xb2\xd9\x8a\xd8\xb1\xd8\xa7\xd9\x86\0"
-       "\xd8\xaa\xd9\x85\xd9\x88\xd8\xb2\0"
-       "\xd8\xa2\xd8\xa8\0"
-       "\xd8\xa3\xd9\x8a\xd9\x84\xd9\x88\xd9\x84\0"
-       "\xd8\xaa\xd8\xb4\xd8\xb1\xd9\x8a\xd9\x86 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\0"
-       "\xd8\xaa\xd8\xb4\xd8\xb1\xd9\x8a\xd9\x86 \xd8\xa7\xd9\x84\xd8\xab\xd8\xa7\xd9\x86\xd9\x8a\0"
-       "\xd9\x83\xd8\xa7\xd9\x86\xd9\x88\xd9\x86 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\0"
-       "dd.MMMM.\0"
-       "dom.\0"
-       "mi\xc3\xa9.\0"
-       "jue.\0"
-       "vie\0"
-       "s\xc3\xa1\x62.\0"
-       "en.\0"
-       "mzo.\0"
-       "my.\0"
-       "dic.\0"
-       "dd.MMMM\0"
-       "MMMM.yyyy\0"
-       "H.mm' u.'\0"
        "f.m.\0"
        "e.m.\0"
-       "tysdag\0"
-       "laurdag\0"
-       "tys\0"
-       "lau\0"
-       "Janeiro\0"
-       "Fevereiro\0"
-       "Mar\xc3\xa7o\0"
-       "Junho\0"
-       "Julho\0"
-       "Dezembro\0"
-       "yy.MM.dd\0"
-       "\xd0\xb1\xd0\xb0\xd0\xb7\xd0\xb0\xd1\x80\0"
-       "\xd0\xb1\xd0\xb0\xd0\xb7\xd0\xb0\xd1\x80 \xd0\xb5\xd1\x80\xd1\x82\xd3\x99\xd1\x81\xd0\xb8\0"
-       "\xd1\x87\xd3\x99\xd1\x80\xd1\x88\xd3\x99\xd0\xbd\xd0\xb1\xd3\x99 \xd0\xb0\xd1\x85\xd1\x88\xd0\xb0\xd0\xbc\xd1\x8b\0"
-       "\xd1\x87\xd3\x99\xd1\x80\xd1\x88\xd3\x99\xd0\xbd\xd0\xb1\xd3\x99\0"
-       "\xd2\xb9\xd2\xaf\xd0\xbc\xd3\x99 \xd0\xb0\xd1\x85\xd1\x88\xd0\xb0\xd0\xbc\xd1\x8b\0"
-       "\xd2\xb9\xd2\xaf\xd0\xbc\xd3\x99\0"
-       "\xd1\x88\xd3\x99\xd0\xbd\xd0\xb1\xd3\x99\0"
-       "\xd1\x98\xd0\xb0\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\0"
-       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\0"
-       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\0"
-       "\xd0\xb8\xd1\x98\xd1\x83\xd0\xbd\0"
-       "\xd0\xb8\xd1\x98\xd1\x83\xd0\xbb\0"
-       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
-       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
-       "\xd0\xbd\xd0\xbe\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
-       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\0"
-       "\xd1\x8f\xd0\xba\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
-       "\xd0\xb4\xd1\x83\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
-       "\xd1\x81\xd0\xb5\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
-       "\xd1\x87\xd0\xbe\xd1\x80\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
-       "\xd0\xbf\xd0\xb0\xd0\xb9\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
-       "\xd0\xb6\xd1\x83\xd0\xbc\xd0\xb0\0"
-       "\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
-       "\xd0\xaf\xd0\xba\xd1\x88\0"
-       "\xd0\x94\xd1\x83\xd1\x88\0"
-       "\xd0\xa1\xd0\xb5\xd1\x88\0"
-       "\xd0\xa7\xd0\xbe\xd1\x80\0"
-       "\xd0\x9f\xd0\xb0\xd0\xb9\0"
-       "\xd0\xa8\xd0\xb0\xd0\xbd\0"
-       "\xd0\xaf\0"
-       "\xd9\x8a\xd9\x86\xd8\xa7\xd9\x8a\xd8\xb1\0"
-       "\xd9\x81\xd8\xa8\xd8\xb1\xd8\xa7\xd9\x8a\xd8\xb1\0"
-       "\xd8\xa3\xd8\xa8\xd8\xb1\xd9\x8a\xd9\x84\0"
-       "\xd9\x85\xd8\xa7\xd9\x8a\xd9\x88\0"
-       "\xd9\x8a\xd9\x88\xd9\x86\xd9\x8a\xd9\x88\0"
-       "\xd9\x8a\xd9\x88\xd9\x84\xd9\x8a\xd9\x88\0"
-       "\xd8\xa3\xd8\xba\xd8\xb3\xd8\xb7\xd8\xb3\0"
-       "\xd8\xb3\xd8\xa8\xd8\xaa\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xd8\xa3\xd9\x83\xd8\xaa\xd9\x88\xd8\xa8\xd8\xb1\0"
-       "\xd9\x86\xd9\x88\xd9\x81\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "\xd8\xaf\xd9\x8a\xd8\xb3\xd9\x85\xd8\xa8\xd8\xb1\0"
-       "J\xc3\xa4nner\0"
-       "J\xc3\xa4n\0"
-       "yy MM dd\0"
-       "MMMM d'. b.'\0"
-       "aejlege\0"
-       "m\xc3\xa5\x61nta\0"
-       "d\xc3\xa4jsta\0"
-       "gaskevahkoe\0"
-       "d\xc3\xa5\x61rsta\0"
-       "bearjadahke\0"
-       "laavadahke\0"
-       "o\xc4\x91\xc4\x91\x61jage\0"
-       "guovva\0"
-       "njuk\xc4\x8d\x61\0"
-       "cuo\xc5\x8bo\0"
-       "miesse\0"
-       "geasse\0"
-       "suoidne\0"
-       "borge\0"
-       "\xc4\x8d\x61k\xc4\x8d\x61\0"
-       "golggot\0"
-       "sk\xc3\xa1\x62ma\0"
-       "juovla\0"
-       "dddd', 'MMMM d'. b. 'yyyy\0"
-       "MMMM d'. b. 'yyyy\0"
-       "M/dd/yy\0"
-       "MMMM-dd-yy\0"
-       "dd-MMMM\0"
-       "dddd, d 'de' MMMM 'de' yyyy\0"
-       "d 'de' MMMM 'de' yyyy\0"
-       "d. MMM yyyy.\0"
-       "MMMM yyyy.\0"
-       "\xd8\xac\xd8\xa7\xd9\x86\xd9\x81\xd9\x8a\0"
-       "\xd9\x81\xd9\x8a\xd9\x81\xd8\xb1\xd9\x8a\0"
-       "\xd8\xa3\xd9\x81\xd8\xb1\xd9\x8a\xd9\x84\0"
-       "\xd9\x85\xd8\xa7\xd9\x8a\0"
-       "\xd8\xac\xd9\x88\xd8\xa7\xd9\x86\0"
-       "\xd8\xac\xd9\x88\xd9\x8a\xd9\x84\xd9\x8a\xd8\xa9\0"
-       "\xd8\xa3\xd9\x88\xd8\xaa\0"
-       "dddd yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
-       "dddd yyyy MM dd\0"
-       "d/MMMM\0"
-       "MMMM/yyyy\0"
-       "pre podne\0"
+       "\xd0\x90\xd0\x9c\0"
+       "\xd0\x9f\xd0\x9c\0"
+       "w\xc3\xb3tpo\xc5\x82\x64nja\0"
+       "\xd0\xa2\xd0\x9e\0"
+       "\xd0\xa2\xd0\x9a\0"
+       "prijepodne\0"
        "popodne\0"
-       "septembar\0"
-       "oktobar\0"
-       "novembar\0"
-       "decembar\0"
-       "dd. MMM. yyyy.\0"
-       "dddd, dd. MMMM yyyy.\0"
-       "\xd9\x8a\xd9\x88\xd9\x84\xd9\x8a\xd9\x88\xd8\xb2\0"
-       "\xd8\xba\xd8\xb4\xd8\xaa\0"
-       "\xd8\xb4\xd8\xaa\xd9\x86\xd8\xa8\xd8\xb1\0"
-       "\xd9\x86\xd9\x88\xd9\x86\xd8\xa8\xd8\xb1\0"
-       "\xd8\xaf\xd8\xac\xd9\x86\xd8\xa8\xd8\xb1\0"
-       "MMMM/dd\0"
-       "ponedeljak\0"
+       "prije podne\0"
+       "po podne\0"
+       "\xd0\xbf\xd1\x80\xd0\xb8\xd1\x98\xd0\xb5 \xd0\xbf\xd0\xbe\xd0\xb4\xd0\xbd\xd0\xb5\0"
+       "\xd0\xbf\xd0\xbe \xd0\xbf\xd0\xbe\xd0\xb4\xd0\xbd\xd0\xb5\0"
        "\xd0\xbf\xd1\x80\xd0\xb5 \xd0\xbf\xd0\xbe\xd0\xb4\xd0\xbd\xd0\xb5\0"
        "\xd0\xbf\xd0\xbe\xd0\xbf\xd0\xbe\xd0\xb4\xd0\xbd\xd0\xb5\0"
-       "\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd1\x99\xd0\xb0\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd1\x99\xd0\xb0\xd0\xba\0"
-       "\xd1\x83\xd1\x82\xd0\xbe\xd1\x80\xd0\xb0\xd0\xba\0"
-       "\xd1\x81\xd1\x80\xd0\xb8\xd1\x98\xd0\xb5\xd0\xb4\xd0\xb0\0"
-       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd1\x80\xd1\x82\xd0\xb0\xd0\xba\0"
-       "\xd0\xbf\xd0\xb5\xd1\x82\xd0\xb0\xd0\xba\0"
-       "\xd0\xbd\xd0\xb5\xd0\xb4\0"
-       "\xd0\xbf\xd0\xbe\xd0\xbd\0"
-       "\xd1\x83\xd1\x82\xd0\xbe\0"
-       "\xd1\x81\xd1\x80\xd0\xb8\0"
-       "\xd1\x87\xd0\xb5\xd1\x82\0"
-       "\xd0\xbf\xd0\xb5\xd1\x82\0"
-       "\xd1\x81\xd1\x83\xd0\xb1\0"
-       "\xd1\x83\0"
-       "\xd1\x98\xd0\xb0\xd0\xbd\xd1\x83\xd0\xb0\xd1\x80\0"
-       "\xd1\x84\xd0\xb5\xd0\xb1\xd1\x80\xd1\x83\xd0\xb0\xd1\x80\0"
-       "\xd1\x81\xd0\xb5\xd0\xbf\xd1\x82\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb0\xd1\x80\0"
-       "\xd0\xbe\xd0\xba\xd1\x82\xd0\xbe\xd0\xb1\xd0\xb0\xd1\x80\0"
-       "\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb0\xd1\x80\0"
-       "\xd0\xb4\xd0\xb5\xd1\x86\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb0\xd1\x80\0"
-       "\xd1\x98\xd0\xb0\xd0\xbd\0"
-       "\xd1\x84\xd0\xb5\xd0\xb1\0"
-       "\xd0\xbc\xd0\xb0\xd1\x80\0"
-       "\xd0\xb0\xd0\xbf\xd1\x80\0"
-       "\xd1\x98\xd1\x83\xd0\xbd\0"
-       "\xd1\x98\xd1\x83\xd0\xbb\0"
-       "\xd0\xb0\xd0\xb2\xd0\xb3\0"
-       "\xd1\x81\xd0\xb5\xd0\xbf\0"
-       "\xd0\xbe\xd0\xba\xd1\x82\0"
-       "\xd0\xbd\xd0\xbe\xd0\xb2\0"
-       "\xd0\xb4\xd0\xb5\xd1\x86\0"
-       "d. M. yy\0"
-       "dd. MM. yy\0"
-       "\xd1\x81\xd1\x80\xd0\xb5\0"
-       "MMMM-yyyy\0"
-       "dd MMM,yyyy\0"
-       "yyyy-MM-dd.\0"
-       "h.mm.ss tt\0"
-       "dddd dd 'de' MMMM 'de' yyyy\0"
-       "dd 'de' MMMM 'de' yyyy\0"
+       "pre podne\0"
+       "ep.\0"
+       "mat.\0"
+       "soir\0"
        ",\0"
        "\xd8\xb1.\xd8\xb3.\xe2\x80\x8f\0"
-       "\xd9\xaa\0"
+       "\xd9\xaa\xd8\x9c\0"
        "\xd9\x84\xd9\x8a\xd8\xb3\xc2\xa0\xd8\xb1\xd9\x82\xd9\x85\0"
        "\xd8\x89\0"
-       "-Infinity\0"
+       "\xd8\x9c-Infinity\0"
        "Infinity\0"
-       "\xe2\x80\x8f+\0"
+       "\xd8\x9c-\0"
+       "\xd8\x9c+\0"
        "\xc2\xa0\0"
        "\xd0\xbb\xd0\xb2.\0"
        "%\0"
        "NaN\0"
        "\xe2\x80\xb0\0"
+       "-Infinity\0"
        "+\0"
        "\xe2\x82\xac\0"
        "-Infinit\0"
@@ -5034,7 +1832,7 @@ static const char locale_strings [] = {
        "K\xc4\x8d\0"
        "-nekone\xc4\x8dno\0"
        "+nekone\xc4\x8dno\0"
-       "kr\0"
+       "kr.\0"
        "-unendlich\0"
        "+unendlich\0"
        "-\xce\x86\xcf\x80\xce\xb5\xce\xb9\xcf\x81\xce\xbf\0"
@@ -5043,16 +1841,21 @@ static const char locale_strings [] = {
        "-Infinito\0"
        "Infinito\0"
        "ep\xc3\xa4luku\0"
-       "-Infini\0"
+       "\xd9\xaa\0"
+       "\xe2\x80\x8f\xe2\x88\x92Infini\0"
        "+Infini\0"
+       "\xe2\x80\x8f\xe2\x88\x92\0"
        "\xe2\x82\xaa\0"
        "\xe2\x80\x8e+\0"
        "Ft\0"
+       "ISK\0"
        "+Infinito\0"
        "\xef\xbf\xa5\0"
        "\xe2\x82\xa9\0"
        "-oneindig\0"
        "oneindig\0"
+       "\xd8\x9c\xe2\x88\x92Infinity\0"
+       "\xd8\x9c\xe2\x88\x92\0"
        "z\xc5\x82\0"
        "-niesko\xc5\x84\x63zono\xc5\x9b\xc4\x87\0"
        "+niesko\xc5\x84\x63zono\xc5\x9b\xc4\x87\0"
@@ -5061,73 +1864,91 @@ static const char locale_strings [] = {
        "CHF\0"
        "-infinit\0"
        "+infinit\0"
-       "\xd1\x80\xd1\x83\xd0\xb1.\0"
+       "RON\0"
+       "\xe2\x82\xbd\0"
        "\xd0\xbd\xd0\xb5\xc2\xa0\xd1\x87\xd0\xb8\xd1\x81\xd0\xbb\xd0\xbe\0"
        "-\xd0\xb1\xd0\xb5\xd1\x81\xd0\xba\xd0\xbe\xd0\xbd\xd0\xb5\xd1\x87\xd0\xbd\xd0\xbe\xd1\x81\xd1\x82\xd1\x8c\0"
        "\xd0\xb1\xd0\xb5\xd1\x81\xd0\xba\xd0\xbe\xd0\xbd\xd0\xb5\xd1\x87\xd0\xbd\xd0\xbe\xd1\x81\xd1\x82\xd1\x8c\0"
        "kn\0"
        "Lek\xc3\xab\0"
+       "kr\0"
        "\xc2\xa4\xc2\xa4\xc2\xa4\0"
-       "\xe0\xb8\xbf\0"
+       "\xd8\x89\xe2\x80\x8f\0"
+       "THB\0"
        "\xe2\x82\xba\0"
        "Rs\0"
-       "\xdb\x8c\xdb\x81\xc2\xa0\xd8\xb9\xd8\xaf\xd8\xaf\xc2\xa0\xd9\x86\xdb\x81\xdb\x8c\xda\xba\0"
        "\xe2\x80\x8e-\xe2\x80\x8eInfinity\0"
        "\xe2\x80\x8e-\xe2\x80\x8e\0"
        "\xe2\x80\x8e+\xe2\x80\x8e\0"
        "Rp\0"
        "\xe2\x82\xb4\0"
-       "\xd0\x9d\xd0\xb5\xc2\xa0\xd1\x87\xd0\xb8\xd1\x81\xd0\xbb\xd0\xbe\0"
-       "\xd1\x80.\0"
-       "-neskon\xc4\x8dnost\0"
+       "Br\0"
+       "\xe2\x80\x93neskon\xc4\x8dnost\0"
        "neskon\xc4\x8dnost\0"
-       "nav\xc2\xa0skaitlis\0"
+       "\xe2\x80\x93\0"
+       "NS\0"
        "-bezgal\xc4\xab\x62\x61\0"
        "bezgal\xc4\xab\x62\x61\0"
-       "Lt\0"
        "-begalyb\xc4\x97\0"
        "begalyb\xc4\x97\0"
        "\xd8\xb1\xdb\x8c\xd8\xa7\xd9\x84\0"
-       "\xd9\x86\xd8\xa7\xd8\xb9\xd8\xaf\xd8\xaf\0"
-       "\xe2\x80\x8e\xe2\x88\x92Infinity\0"
-       "\xe2\x80\x8e\xe2\x88\x92\0"
        "\xe2\x82\xab\0"
-       "\xd5\xa4\xd6\x80.\0"
+       "\xd6\x8f\0"
+       "\xd5\x88\xd5\xb9\xd4\xb9\0"
        "-Infinitu\0"
        "Infinitu\0"
        "\xd0\xb4\xd0\xb5\xd0\xbd\0"
-       "I-NaN\0"
+       "R\0"
+       "\xe2\x82\xbe\0"
        "\xe1\x83\x90\xe1\x83\xa0\xc2\xa0\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x98\xe1\x83\xa1\xc2\xa0\xe1\x83\xa0\xe1\x83\x98\xe1\x83\xaa\xe1\x83\xae\xe1\x83\x95\xe1\x83\x98\0"
        "\xe2\x82\xb9\0"
        "RM\0"
+       "\xe2\x82\xb8\0"
+       "\xd1\x81\xd0\xb0\xd0\xbd\xc2\xa0\xd0\xb5\xd0\xbc\xd0\xb5\xd1\x81\0"
+       "\xd1\x81\xd0\xbe\xd0\xbc\0"
        "\xd1\x81\xd0\xb0\xd0\xbd\xc2\xa0\xd1\x8d\xd0\xbc\xd0\xb5\xd1\x81\0"
        "Ksh\0"
+       "TMT\0"
+       "san\xc2\xa0\x64\xc3\xa4l\0"
+       "haqiqiy\xc2\xa0son\xc2\xa0\x65mas\0"
        "\xe0\xa6\x9f\xe0\xa6\xbe\0"
-       "\xe0\xa6\xb8\xe0\xa6\x82\xe0\xa6\x96\xe0\xa7\x8d\xe0\xa6\xaf\xe0\xa6\xbe\xc2\xa0\xe0\xa6\xa8\xe0\xa6\xbe\0"
        "`\0"
        "\xc2\xa3\0"
        "\xe1\x9f\x9b\0"
        "\xe2\x82\xad\0"
-       "\xe0\xba\x9a\xe0\xbb\x8d\xe0\xbb\x88\xe0\xbb\x81\xe0\xba\xa1\xe0\xbb\x88\xe0\xba\x99\xe0\xbb\x82\xe0\xba\x95\xe0\xbb\x80\xe0\xba\xa5\xe0\xba\x81\0"
+       "\xe0\xba\x9a\xe0\xbb\x8d\xe0\xbb\x88\xe2\x80\x8b\xe0\xbb\x81\xe0\xba\xa1\xe0\xbb\x88\xe0\xba\x99\xe2\x80\x8b\xe0\xbb\x82\xe0\xba\x95\xe2\x80\x8b\xe0\xbb\x80\xe0\xba\xa5\xe0\xba\x81\0"
+       "K\0"
+       "\xe1\x80\x82\xe1\x80\x8f\xe1\x80\x94\xe1\x80\xba\xe1\x80\xb8\xe1\x80\x99\xe1\x80\x9f\xe1\x80\xaf\xe1\x80\x90\xe1\x80\xba\xe1\x80\x9e\xe1\x80\xb1\xe1\x80\xac\0"
        "\xe0\xb6\xbb\xe0\xb7\x94.\0"
        "\xe1\x89\xa5\xe1\x88\xad\0"
-       "\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xb0\xe0\xa5\x82\0"
+       "-Infini\0"
+       "\xe0\xa4\xb0\xe0\xa5\x81\0"
        "\xd8\x8b\0"
        "\xe2\x82\xb1\0"
        "\xe2\x82\xa6\0"
+       "Nfk\0"
+       "S\0"
+       "\xd1\x87\xd1\x8b\xd1\x8b\xd2\xbb\xd1\x8b\xd0\xbb\xd0\xb0\xc2\xa0\xd0\xb1\xd1\x83\xd0\xbe\xd1\x82\xd0\xb0\xd1\x85\0"
        "RF\0"
-       "NT$\0"
        "\xe9\x9d\x9e\xe6\x95\xb8\xe5\x80\xbc\0"
-       "\xd1\x81\xd0\xbe\xd0\xbc\0"
-       "man.\0"
+       "HRK\0"
+       "\xe2\x82\xbc\0"
        "so\xca\xbbm\0"
+       "\xe2\x82\xae\0"
+       "\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xb0\xe0\xa5\x82\0"
        "\xd8\xaf.\xd8\xb9.\xe2\x80\x8f\0"
        "'\0"
-       "\xd0\xbc\xd0\xb0\xd0\xbd.\0"
+       "L\0"
+       "P\0"
        "\xd1\x81\xd1\x9e\xd0\xbc\0"
+       "\xd2\xb3\xd0\xb0\xd2\x9b\xd0\xb8\xd2\x9b\xd0\xb8\xd0\xb9\xc2\xa0\xd1\x81\xd0\xbe\xd0\xbd\xc2\xa0\xd1\x8d\xd0\xbc\xd0\xb0\xd1\x81\0"
        "\xe0\xa7\xb3\0"
+       "\xd8\xb1\0"
+       "Rs.\0"
        "\xd8\xac.\xd9\x85.\xe2\x80\x8f\0"
+       "HK$\0"
        "\xd8\xaf.\xd9\x84.\xe2\x80\x8f\0"
+       "Q\0"
        "KM\0"
        "\xd8\xaf.\xd8\xac.\xe2\x80\x8f\0"
        "MOP$\0"
@@ -5135,142 +1956,128 @@ static const char locale_strings [] = {
        "\xd8\xaf.\xd9\x85.\xe2\x80\x8f\0"
        "B/.\0"
        "\xd8\xaf.\xd8\xaa.\xe2\x80\x8f\0"
+       "RD$\0"
        "\xd0\x9a\xd0\x9c\0"
        "\xd8\xb1.\xd8\xb9.\xe2\x80\x8f\0"
        "Bs.\0"
        "\xd8\xb1.\xd9\x8a.\xe2\x80\x8f\0"
-       "din.\0"
+       "FC\0"
+       "RSD\0"
+       "epiloho\0"
        "\xd9\x84.\xd8\xb3.\xe2\x80\x8f\0"
-       "S/.\0"
-       "\xd0\xb4\xd0\xb8\xd0\xbd.\0"
+       "S/\0"
+       "CFA\0"
        "\xd8\xaf.\xd8\xa3.\xe2\x80\x8f\0"
+       "FCFA\0"
        "\xd9\x84.\xd9\x84.\xe2\x80\x8f\0"
        "\xd8\xaf.\xd9\x83.\xe2\x80\x8f\0"
        "\xd8\xaf.\xd8\xa5.\xe2\x80\x8f\0"
+       "MAD\0"
        "\xd8\xaf.\xd8\xa8.\xe2\x80\x8f\0"
-       "\xe2\x82\xb2\0"
+       "Gs.\0"
+       "G\0"
        "\xd8\xb1.\xd9\x82.\xe2\x80\x8f\0"
        "Bs\0"
        "C$\0"
        "\xd0\x94\xd0\xb8\xd0\xbd.\0"
        "Din.\0"
-       "HK$\0"
        "ar\0"
        "Arabic\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9\0"
        "ARA\0"
        "ara\0"
-       "\xd8\xa7\xd9\x84\xd8\xaa\xd9\x82\xd9\x88\xd9\x8a\xd9\x85 \xd8\xa7\xd9\x84\xd9\x87\xd8\xac\xd8\xb1\xd9\x8a\0"
        "bg\0"
        "Bulgarian\0"
        "\xd0\xb1\xd1\x8a\xd0\xbb\xd0\xb3\xd0\xb0\xd1\x80\xd1\x81\xd0\xba\xd0\xb8\0"
        "BGR\0"
        "bul\0"
-       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
        "ca\0"
        "Catalan\0"
        "catal\xc3\xa0\0"
        "CAT\0"
        "cat\0"
-       "calendari gregori\xc3\xa0\0"
-       "zh-CHS\0"
-       "Chinese (Simplified) Legacy\0"
+       "zh-Hans\0"
+       "Chinese (Simplified)\0"
        "\xe4\xb8\xad\xe6\x96\x87\0"
        "CHS\0"
        "zho\0"
        "zh\0"
-       "\xe5\x85\xac\xe5\x8e\x86\0"
-       "zh-Hans\0"
-       "Chinese (Simplified)\0"
+       "zh-CHS\0"
+       "Chinese (Simplified) Legacy\0"
        "cs\0"
        "Czech\0"
        "\xc4\x8d\x65\xc5\xa1tina\0"
        "CSY\0"
        "ces\0"
-       "Gregori\xc3\xa1nsk\xc3\xbd kalend\xc3\xa1\xc5\x99\0"
        "da\0"
        "Danish\0"
        "dansk\0"
        "DAN\0"
        "dan\0"
-       "gregoriansk kalender\0"
        "de\0"
        "German\0"
        "Deutsch\0"
        "DEU\0"
        "deu\0"
-       "Gregorianischer Kalender\0"
        "el\0"
        "Greek\0"
        "\xce\x95\xce\xbb\xce\xbb\xce\xb7\xce\xbd\xce\xb9\xce\xba\xce\xac\0"
        "ELL\0"
        "ell\0"
-       "\xce\x93\xcf\x81\xce\xb7\xce\xb3\xce\xbf\xcf\x81\xce\xb9\xce\xb1\xce\xbd\xcf\x8c \xce\xb7\xce\xbc\xce\xb5\xcf\x81\xce\xbf\xce\xbb\xcf\x8c\xce\xb3\xce\xb9\xce\xbf\0"
        "en\0"
        "English\0"
        "ENU\0"
        "eng\0"
-       "Gregorian Calendar\0"
        "es\0"
        "Spanish\0"
        "espa\xc3\xb1ol\0"
        "ESP\0"
        "spa\0"
-       "calendario gregoriano\0"
        "fi\0"
        "Finnish\0"
        "suomi\0"
        "FIN\0"
        "fin\0"
-       "gregoriaaninen kalenteri\0"
        "fr\0"
        "French\0"
        "fran\xc3\xa7\x61is\0"
        "FRA\0"
        "fra\0"
-       "calendrier gr\xc3\xa9gorien\0"
        "he\0"
        "Hebrew\0"
        "\xd7\xa2\xd7\x91\xd7\xa8\xd7\x99\xd7\xaa\0"
        "HEB\0"
        "heb\0"
-       "\xd7\x9c\xd7\x95\xd7\x97 \xd7\xa9\xd7\xa0\xd7\x94 \xd7\x92\xd7\xa8\xd7\x92\xd7\x95\xd7\xa8\xd7\x99\xd7\x90\xd7\xa0\xd7\x99\0"
        "hu\0"
        "Hungarian\0"
        "magyar\0"
        "HUN\0"
        "hun\0"
-       "Gergely-napt\xc3\xa1r\0"
        "is\0"
        "Icelandic\0"
        "\xc3\xadslenska\0"
        "ISL\0"
        "isl\0"
-       "Gregor\xc3\xadskt dagatal\0"
        "it\0"
        "Italian\0"
        "italiano\0"
        "ITA\0"
        "ita\0"
-       "Calendario gregoriano\0"
        "ja\0"
        "Japanese\0"
        "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e\0"
        "JPN\0"
        "jpn\0"
-       "\xe8\xa5\xbf\xe6\x9a\xa6(\xe3\x82\xb0\xe3\x83\xac\xe3\x82\xb4\xe3\x83\xaa\xe3\x82\xaa\xe6\x9a\xa6)\0"
        "ko\0"
        "Korean\0"
        "\xed\x95\x9c\xea\xb5\xad\xec\x96\xb4\0"
        "KOR\0"
        "kor\0"
-       "\xed\x83\x9c\xec\x96\x91\xeb\xa0\xa5\0"
        "nl\0"
        "Dutch\0"
        "Nederlands\0"
        "NLD\0"
        "nld\0"
-       "Gregoriaanse kalender\0"
        "no\0"
        "Norwegian\0"
        "norsk\0"
@@ -5282,48 +2089,41 @@ static const char locale_strings [] = {
        "polski\0"
        "PLK\0"
        "pol\0"
-       "kalendarz gregoria\xc5\x84ski\0"
        "pt\0"
        "Portuguese\0"
        "portugu\xc3\xaas\0"
        "PTB\0"
        "por\0"
-       "Calend\xc3\xa1rio Gregoriano\0"
        "rm\0"
        "Romansh\0"
        "rumantsch\0"
        "RMC\0"
        "roh\0"
-       "chalender gregorian\0"
        "ro\0"
        "Romanian\0"
        "rom\xc3\xa2n\xc4\x83\0"
        "ROM\0"
        "ron\0"
-       "calendar gregorian\0"
        "ru\0"
        "Russian\0"
        "\xd1\x80\xd1\x83\xd1\x81\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9\0"
        "RUS\0"
        "rus\0"
-       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\xd1\x8c\0"
        "hr\0"
        "Croatian\0"
        "hrvatski\0"
        "HRV\0"
        "hrv\0"
-       "gregorijanski kalendar\0"
+       "sk\0"
        "Slovak\0"
        "sloven\xc4\x8dina\0"
        "SKY\0"
        "slk\0"
-       "Gregori\xc3\xa1nsky kalend\xc3\xa1r\0"
        "sq\0"
        "Albanian\0"
-       "Shqip\0"
+       "shqip\0"
        "SQI\0"
        "sqi\0"
-       "Kalendari Gregorian\0"
        "sv\0"
        "Swedish\0"
        "svenska\0"
@@ -5334,60 +2134,51 @@ static const char locale_strings [] = {
        "\xe0\xb9\x84\xe0\xb8\x97\xe0\xb8\xa2\0"
        "THA\0"
        "tha\0"
-       "\xe0\xb8\x9b\xe0\xb8\x8f\xe0\xb8\xb4\xe0\xb8\x97\xe0\xb8\xb4\xe0\xb8\x99\xe0\xb8\x9e\xe0\xb8\xb8\xe0\xb8\x97\xe0\xb8\x98\0"
+       "tr\0"
        "Turkish\0"
        "T\xc3\xbcrk\xc3\xa7\x65\0"
        "TRK\0"
        "tur\0"
-       "Miladi Takvim\0"
        "ur\0"
        "Urdu\0"
        "\xd8\xa7\xd8\xb1\xd8\xaf\xd9\x88\0"
        "URD\0"
        "urd\0"
-       "\xd8\xac\xd8\xa7\xd8\xb1\xd8\xac\xdb\x8c\xd8\xa7\xd8\xa6\xdb\x8c \xda\xa9\xdb\x8c\xd9\x84\xd9\x86\xda\x88\xd8\xb1\0"
        "id\0"
        "Indonesian\0"
-       "Bahasa Indonesia\0"
+       "Indonesia\0"
        "IND\0"
        "ind\0"
-       "Kalender Gregorian\0"
        "uk\0"
        "Ukrainian\0"
        "\xd1\x83\xd0\xba\xd1\x80\xd0\xb0\xd1\x97\xd0\xbd\xd1\x81\xd1\x8c\xd0\xba\xd0\xb0\0"
        "UKR\0"
        "ukr\0"
-       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd1\x96\xd0\xb0\xd0\xbd\xd1\x81\xd1\x8c\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
        "be\0"
        "Belarusian\0"
        "\xd0\xb1\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x80\xd1\x83\xd1\x81\xd0\xba\xd0\xb0\xd1\x8f\0"
        "BEL\0"
        "bel\0"
-       "\xd0\xb3\xd1\x80\xd1\x8d\xd0\xb3\xd0\xb0\xd1\x80\xd1\x8b\xd1\x8f\xd0\xbd\xd1\x81\xd0\xba\xd1\x96 \xd0\xba\xd0\xb0\xd0\xbb\xd1\x8f\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
        "sl\0"
        "Slovenian\0"
        "sloven\xc5\xa1\xc4\x8dina\0"
        "SLV\0"
        "slv\0"
-       "gregorijanski koledar\0"
        "et\0"
        "Estonian\0"
        "eesti\0"
        "ETI\0"
        "est\0"
-       "Gregoriuse kalender\0"
        "lv\0"
        "Latvian\0"
        "latvie\xc5\xa1u\0"
        "LVI\0"
        "lav\0"
-       "Gregora kalend\xc4\x81rs\0"
        "lt\0"
        "Lithuanian\0"
        "lietuvi\xc5\xb3\0"
        "LTH\0"
        "lit\0"
-       "Grigaliaus kalendorius\0"
        "tg\0"
        "Tajik\0"
        "\xd0\xa2\xd0\xbe\xd2\xb7\xd0\xb8\xd0\xba\xd3\xa3\0"
@@ -5398,36 +2189,45 @@ static const char locale_strings [] = {
        "\xd9\x81\xd8\xa7\xd8\xb1\xd8\xb3\xdb\x8c\0"
        "FAR\0"
        "fas\0"
-       "\xd8\xaa\xd9\x82\xd9\x88\xdb\x8c\xd9\x85 \xd9\x85\xdb\x8c\xd9\x84\xd8\xa7\xd8\xaf\xdb\x8c\0"
        "vi\0"
        "Vietnamese\0"
        "Ti\xe1\xba\xbfng Vi\xe1\xbb\x87t\0"
        "VIT\0"
-       "L\xe1\xbb\x8b\x63h Gregory\0"
+       "vie\0"
        "hy\0"
        "Armenian\0"
        "\xd5\xb0\xd5\xa1\xd5\xb5\xd5\xa5\xd6\x80\xd5\xa5\xd5\xb6\0"
        "HYE\0"
        "hye\0"
-       "\xd4\xb3\xd6\x80\xd5\xab\xd5\xa3\xd5\xb8\xd6\x80\xd5\xb5\xd5\xa1\xd5\xb6 \xd5\xbf\xd5\xb8\xd5\xb4\xd5\xa1\xd6\x80\0"
        "az\0"
        "Azerbaijani\0"
        "az\xc9\x99rbaycan\0"
        "AZE\0"
        "aze\0"
-       "Qreqorian T\xc9\x99qvimi\0"
        "eu\0"
        "Basque\0"
        "euskara\0"
        "EUQ\0"
        "eus\0"
-       "Egutegi gregoriarra\0"
+       "hsb\0"
+       "Upper Sorbian\0"
+       "hornjoserb\xc5\xa1\xc4\x87ina\0"
+       "HSB\0"
        "mk\0"
        "Macedonian\0"
        "\xd0\xbc\xd0\xb0\xd0\xba\xd0\xb5\xd0\xb4\xd0\xbe\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8\0"
        "MKI\0"
        "mkd\0"
-       "\xd0\x93\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd1\x98\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
+       "st\0"
+       "Southern Sotho\0"
+       "Sesotho\0"
+       "SOT\0"
+       "sot\0"
+       "ts\0"
+       "Tsonga\0"
+       "Xitsonga\0"
+       "TSO\0"
+       "tso\0"
        "tn\0"
        "Tswana\0"
        "Setswana\0"
@@ -5443,18 +2243,15 @@ static const char locale_strings [] = {
        "isiZulu\0"
        "ZUL\0"
        "zul\0"
-       "i-Gregorian Calender\0"
        "af\0"
        "Afrikaans\0"
        "AFK\0"
        "afr\0"
-       "Gregoriese kalender\0"
        "ka\0"
        "Georgian\0"
        "\xe1\x83\xa5\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x97\xe1\x83\xa3\xe1\x83\x9a\xe1\x83\x98\0"
        "KAT\0"
        "kat\0"
-       "\xe1\x83\x92\xe1\x83\xa0\xe1\x83\x98\xe1\x83\x92\xe1\x83\x9d\xe1\x83\xa0\xe1\x83\x98\xe1\x83\x90\xe1\x83\x9c\xe1\x83\xa3\xe1\x83\x9a\xe1\x83\x98 \xe1\x83\x99\xe1\x83\x90\xe1\x83\x9a\xe1\x83\x94\xe1\x83\x9c\xe1\x83\x93\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x98\0"
        "fo\0"
        "Faroese\0"
        "f\xc3\xb8royskt\0"
@@ -5462,124 +2259,111 @@ static const char locale_strings [] = {
        "fao\0"
        "hi\0"
        "Hindi\0"
-       "\xe0\xa4\xb9\xe0\xa4\xbf\xe0\xa4\x82\xe0\xa4\xa6\xe0\xa5\x80\0"
+       "\xe0\xa4\xb9\xe0\xa4\xbf\xe0\xa4\xa8\xe0\xa5\x8d\xe0\xa4\xa6\xe0\xa5\x80\0"
        "HIN\0"
        "hin\0"
-       "\xe0\xa4\x97\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x87\xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xaf\xe0\xa4\xa8 \xe0\xa4\x95\xe0\xa5\x88\xe0\xa4\xb2\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xa1\xe0\xa4\xb0\0"
        "mt\0"
        "Maltese\0"
        "Malti\0"
        "MLT\0"
        "mlt\0"
-       "Kalendarju Gregorjan\0"
        "se\0"
        "Northern Sami\0"
        "davvis\xc3\xa1megiella\0"
        "SME\0"
        "sme\0"
-       "gregoria kaleander\0"
        "ga\0"
        "Irish\0"
        "Gaeilge\0"
        "IRE\0"
        "gle\0"
-       "F\xc3\xa9ilire Greag\xc3\xb3rach\0"
        "ms\0"
        "Malay\0"
        "Bahasa Melayu\0"
        "MSL\0"
        "msa\0"
-       "Kalendar Gregory\0"
        "kk\0"
        "Kazakh\0"
        "\xd2\x9b\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b \xd1\x82\xd1\x96\xd0\xbb\xd1\x96\0"
        "KKZ\0"
        "kaz\0"
-       "\xd0\x93\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd\xd0\xb4\xd1\x8b\xd2\x9b \xd0\xba\xd2\xaf\xd0\xbd\xd1\x82\xd1\x96\xd0\xb7\xd0\xb1\xd0\xb5\0"
        "ky\0"
        "Kyrgyz\0"
        "\xd0\xba\xd1\x8b\xd1\x80\xd0\xb3\xd1\x8b\xd0\xb7\xd1\x87\xd0\xb0\0"
        "KYR\0"
        "kir\0"
-       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\xd1\x8b\0"
        "sw\0"
        "Swahili\0"
        "Kiswahili\0"
        "SWK\0"
        "swa\0"
-       "Kalenda ya Kigregori\0"
+       "tk\0"
+       "Turkmen\0"
+       "t\xc3\xbcrkmen\xc3\xa7\x65\0"
+       "TUK\0"
+       "tuk\0"
        "uz\0"
        "Uzbek\0"
-       "o\xca\xbbzbekcha\0"
+       "o\xe2\x80\x98zbek\0"
        "UZB\0"
        "uzb\0"
-       "Grigorian kalendari\0"
        "bn\0"
-       "Bengali\0"
+       "Bangla\0"
        "\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\x82\xe0\xa6\xb2\xe0\xa6\xbe\0"
        "BNG\0"
-       "bng\0"
-       "\xe0\xa6\x97\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\x97\xe0\xa7\x8b\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\xe0\xa6\xa8 \xe0\xa6\xac\xe0\xa6\xb0\xe0\xa7\x8d\xe0\xa6\xb7\xe0\xa6\xaa\xe0\xa6\x9e\xe0\xa7\x8d\xe0\xa6\x9c\xe0\xa7\x80\0"
+       "ben\0"
        "pa\0"
        "Punjabi\0"
        "\xe0\xa8\xaa\xe0\xa9\xb0\xe0\xa8\x9c\xe0\xa8\xbe\xe0\xa8\xac\xe0\xa9\x80\0"
        "PAN\0"
        "pan\0"
-       "\xe0\xa8\x97\xe0\xa8\xb0\xe0\xa9\x80\xe0\xa8\x9c\xe0\xa9\x8b\xe0\xa8\xb0\xe0\xa9\x80\xe0\xa8\x85\xe0\xa8\xa8 \xe0\xa8\x95\xe0\xa9\x88\xe0\xa8\xb2\xe0\xa9\xb0\xe0\xa8\xa1\xe0\xa8\xb0\0"
        "gu\0"
        "Gujarati\0"
        "\xe0\xaa\x97\xe0\xab\x81\xe0\xaa\x9c\xe0\xaa\xb0\xe0\xaa\xbe\xe0\xaa\xa4\xe0\xab\x80\0"
        "GUJ\0"
        "guj\0"
-       "\xe0\xaa\x97\xe0\xab\x8d\xe0\xaa\xb0\xe0\xab\x87\xe0\xaa\x97\xe0\xab\x8b\xe0\xaa\xb0\xe0\xaa\xbf\xe0\xaa\xaf\xe0\xaa\xa8 \xe0\xaa\x95\xe0\xab\x87\xe0\xaa\xb2\xe0\xab\x87\xe0\xaa\xa8\xe0\xab\x8d\xe0\xaa\xa1\xe0\xaa\xb0\0"
        "or\0"
-       "Oriya\0"
+       "Odia\0"
        "\xe0\xac\x93\xe0\xac\xa1\xe0\xac\xbc\xe0\xac\xbf\xe0\xac\x86\0"
        "ORI\0"
        "ori\0"
        "ta\0"
        "Tamil\0"
        "\xe0\xae\xa4\xe0\xae\xae\xe0\xae\xbf\xe0\xae\xb4\xe0\xaf\x8d\0"
-       "TAM\0"
+       "TAI\0"
        "tam\0"
-       "\xe0\xae\x95\xe0\xae\xbf\xe0\xae\xb0\xe0\xae\xbf\xe0\xae\x95\xe0\xaf\x8b\xe0\xae\xb0\xe0\xae\xbf\xe0\xae\xaf\xe0\xae\xa9\xe0\xaf\x8d \xe0\xae\xa8\xe0\xae\xbe\xe0\xae\xb3\xe0\xaf\x8d\xe0\xae\x95\xe0\xae\xbe\xe0\xae\x9f\xe0\xaf\x8d\xe0\xae\x9f\xe0\xae\xbf\0"
        "te\0"
        "Telugu\0"
        "\xe0\xb0\xa4\xe0\xb1\x86\xe0\xb0\xb2\xe0\xb1\x81\xe0\xb0\x97\xe0\xb1\x81\0"
        "TEL\0"
        "tel\0"
-       "\xe0\xb0\x97\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb1\x87\xe0\xb0\x97\xe0\xb1\x8b\xe0\xb0\xb0\xe0\xb0\xbf\xe0\xb0\xaf\xe0\xb0\xa8\xe0\xb1\x8d \xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\xaf\xe0\xb0\xbe\xe0\xb0\xb2\xe0\xb1\x86\xe0\xb0\x82\xe0\xb0\xa1\xe0\xb0\xb0\xe0\xb1\x8d\0"
        "Kannada\0"
        "\xe0\xb2\x95\xe0\xb2\xa8\xe0\xb3\x8d\xe0\xb2\xa8\xe0\xb2\xa1\0"
        "KDI\0"
        "kan\0"
-       "\xe0\xb2\x97\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xbf\xe0\xb2\x97\xe0\xb3\x8b\xe0\xb2\xb0\xe0\xb2\xbf\xe0\xb2\xaf\xe0\xb2\xa8\xe0\xb3\x8d \xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\xaf\xe0\xb2\xbe\xe0\xb2\xb2\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xa1\xe0\xb2\xb0\xe0\xb3\x8d\0"
        "ml\0"
        "Malayalam\0"
        "\xe0\xb4\xae\xe0\xb4\xb2\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb3\xe0\xb4\x82\0"
        "MYM\0"
-       "mym\0"
-       "\xe0\xb4\x87\xe0\xb4\x82\xe0\xb4\x97\xe0\xb5\x8d\xe0\xb4\xb2\xe0\xb5\x80\xe0\xb4\xb7\xe0\xb5\x8d \xe0\xb4\x95\xe0\xb4\xb2\xe0\xb4\xa3\xe0\xb5\x8d\xe0\xb4\x9f\xe0\xb5\xbc\0"
+       "mal\0"
        "as\0"
        "Assamese\0"
        "\xe0\xa6\x85\xe0\xa6\xb8\xe0\xa6\xae\xe0\xa7\x80\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\0"
        "ASM\0"
        "asm\0"
-       "\xe0\xa6\x97\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa6\xbf\xe0\xa6\x97\xe0\xa7\x8b\xe0\xa7\xb0\xe0\xa7\x80\xe0\xa6\xaf\xe0\xa6\xbc \xe0\xa6\xaa\xe0\xa6\x9e\xe0\xa7\x8d\xe0\xa6\x9c\xe0\xa6\xbf\xe0\xa6\x95\xe0\xa6\xbe\0"
        "mr\0"
        "Marathi\0"
        "\xe0\xa4\xae\xe0\xa4\xb0\xe0\xa4\xbe\xe0\xa4\xa0\xe0\xa5\x80\0"
        "MAR\0"
-       "\xe0\xa4\x97\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x87\xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xaf\xe0\xa4\xa8 \xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xa8\xe0\xa4\xa6\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\xb6\xe0\xa4\xbf\xe0\xa4\x95\xe0\xa4\xbe\0"
+       "mar\0"
        "mn\0"
        "Mongolian\0"
        "\xd0\xbc\xd0\xbe\xd0\xbd\xd0\xb3\xd0\xbe\xd0\xbb\0"
        "MON\0"
        "mon\0"
-       "\xd0\xb3\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb9\xd0\xbd \xd1\x85\xd1\x83\xd0\xb0\xd0\xbd\xd0\xbb\xd0\xb8\0"
        "bo\0"
        "Tibetan\0"
-       "\xe0\xbd\x94\xe0\xbd\xbc\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbe\x90\xe0\xbd\x91\xe0\xbc\x8b\0"
+       "\xe0\xbd\x96\xe0\xbd\xbc\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbe\x90\xe0\xbd\x91\xe0\xbc\x8b\0"
        "BOB\0"
        "bod\0"
        "cy\0"
@@ -5587,19 +2371,21 @@ static const char locale_strings [] = {
        "Cymraeg\0"
        "CYM\0"
        "cym\0"
-       "Calendr Gregori\0"
        "km\0"
        "Khmer\0"
        "\xe1\x9e\x81\xe1\x9f\x92\xe1\x9e\x98\xe1\x9f\x82\xe1\x9e\x9a\0"
        "KHM\0"
        "khm\0"
-       "\xe1\x9e\x94\xe1\x9f\x92\xe1\x9e\x9a\xe1\x9e\x8f\xe1\x9e\xb7\xe1\x9e\x91\xe1\x9e\xb7\xe1\x9e\x93\xe2\x80\x8b\xe1\x9e\xa0\xe1\x9f\x92\xe1\x9e\x9f\xe1\x9e\x80\xe1\x9e\xa0\xe1\x9f\x92\xe1\x9e\x9f\xe1\x9f\x8a\xe1\x9e\xb8\0"
        "lo\0"
        "Lao\0"
        "\xe0\xba\xa5\xe0\xba\xb2\xe0\xba\xa7\0"
        "LAO\0"
        "lao\0"
-       "\xe0\xba\x9b\xe0\xba\xb0\xe0\xba\x95\xe0\xba\xb4\xe0\xba\x97\xe0\xba\xb4\xe0\xba\x99\xe0\xbb\x80\xe0\xba\x81\xe0\xba\xa3\xe0\xbb\x82\xe0\xba\x81\xe0\xba\xa3\xe0\xba\xbd\xe0\xba\x99\0"
+       "my\0"
+       "Burmese\0"
+       "\xe1\x80\x99\xe1\x80\xbc\xe1\x80\x94\xe1\x80\xba\xe1\x80\x99\xe1\x80\xac\0"
+       "MYA\0"
+       "mya\0"
        "gl\0"
        "Galician\0"
        "galego\0"
@@ -5614,21 +2400,28 @@ static const char locale_strings [] = {
        "\xe0\xb7\x83\xe0\xb7\x92\xe0\xb6\x82\xe0\xb7\x84\xe0\xb6\xbd\0"
        "SIN\0"
        "sin\0"
-       "\xe0\xb6\x9c\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x99\xe0\xb6\x9c\xe0\xb6\xbb\xe0\xb7\x92\xe0\xb6\xba\xe0\xb7\x8f\xe0\xb6\xb1\xe0\xb7\x94 \xe0\xb6\xaf\xe0\xb7\x92\xe0\xb6\xb1\xe0\xb6\xaf\xe0\xb7\x83\xe0\xb7\x94\xe0\xb6\xb1\0"
+       "chr\0"
+       "Cherokee\0"
+       "\xe1\x8f\xa3\xe1\x8e\xb3\xe1\x8e\xa9\0"
+       "CRE\0"
        "Amharic\0"
        "\xe1\x8a\xa0\xe1\x88\x9b\xe1\x88\xad\xe1\x8a\x9b\0"
        "AMH\0"
        "amh\0"
-       "\xe1\x8b\xa8\xe1\x8c\x8d\xe1\x88\xaa\xe1\x8c\x8e\xe1\x88\xaa\xe1\x8b\xab\xe1\x8a\x95 \xe1\x89\x80\xe1\x8a\x95 \xe1\x8a\xa0\xe1\x89\x86\xe1\x8c\xa3\xe1\x8c\xa0\xe1\x88\xad\0"
        "tzm\0"
        "Central Atlas Tamazight\0"
-       "Tamazi\xc9\xa3t\0"
-       "TZM\0"
+       "Tamazi\xc9\xa3t n la\xe1\xb9\xadla\xe1\xb9\xa3\0"
+       "TZA\0"
+       "ne\0"
        "Nepali\0"
        "\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa4\xbe\xe0\xa4\xb2\xe0\xa5\x80\0"
        "NEP\0"
        "nep\0"
-       "\xe0\xa4\x97\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x87\xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xaf\xe0\xa4\xa8 \xe0\xa4\xaa\xe0\xa4\xbe\xe0\xa4\xa4\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x8b\0"
+       "fy\0"
+       "Western Frisian\0"
+       "West-Frysk\0"
+       "FYN\0"
+       "fry\0"
        "ps\0"
        "Pashto\0"
        "\xd9\xbe\xda\x9a\xd8\xaa\xd9\x88\0"
@@ -5637,7 +2430,11 @@ static const char locale_strings [] = {
        "fil\0"
        "Filipino\0"
        "FPO\0"
-       "Kalendaryong Gregorian\0"
+       "ff\0"
+       "Fulah\0"
+       "Pulaar\0"
+       "FUL\0"
+       "ful\0"
        "ha\0"
        "Hausa\0"
        "HAU\0"
@@ -5651,33 +2448,58 @@ static const char locale_strings [] = {
        "Northern Sotho\0"
        "Sesotho sa Leboa\0"
        "NSO\0"
+       "lb\0"
+       "Luxembourgish\0"
+       "L\xc3\xabtzebuergesch\0"
+       "LBX\0"
+       "ltz\0"
        "kl\0"
        "Kalaallisut\0"
        "kalaallisut\0"
        "KAL\0"
        "kal\0"
-       "gregorianskit ullorsiutaat\0"
        "ig\0"
        "Igbo\0"
        "IBO\0"
        "ibo\0"
+       "om\0"
+       "Oromo\0"
+       "Oromoo\0"
+       "ORM\0"
+       "orm\0"
+       "ti\0"
+       "Tigrinya\0"
+       "\xe1\x89\xb5\xe1\x8c\x8d\xe1\x88\xad\xe1\x8a\x9b\0"
+       "TIR\0"
+       "tir\0"
+       "haw\0"
+       "Hawaiian\0"
+       "\xca\xbb\xc5\x8clelo Hawai\xca\xbbi\0"
+       "HAW\0"
+       "so\0"
+       "Somali\0"
+       "Soomaali\0"
+       "SOM\0"
+       "som\0"
        "ii\0"
        "Sichuan Yi\0"
        "\xea\x86\x88\xea\x8c\xa0\xea\x89\x99\0"
        "III\0"
        "iii\0"
-       "\xea\x84\x89\xea\x89\xbb\xea\x83\x85\xea\x91\x8d\0"
        "br\0"
        "Breton\0"
        "brezhoneg\0"
        "BRE\0"
        "bre\0"
-       "deiziadur gregorian\0"
+       "ug\0"
+       "Uyghur\0"
+       "\xd8\xa6\xdb\x87\xd9\x8a\xd8\xba\xdb\x87\xd8\xb1\xda\x86\xdb\x95\0"
+       "UIG\0"
+       "uig\0"
        "gsw\0"
        "Swiss German\0"
        "Schwiizert\xc3\xbc\xc3\xbctsch\0"
        "GSW\0"
-       "Gregoriaanisch Kal\xc3\xa4nder\0"
        "sah\0"
        "Sakha\0"
        "\xd1\x81\xd0\xb0\xd1\x85\xd0\xb0 \xd1\x82\xd1\x8b\xd0\xbb\xd0\xb0\0"
@@ -5691,7 +2513,6 @@ static const char locale_strings [] = {
        "G\xc3\xa0idhlig\0"
        "GLA\0"
        "gla\0"
-       "Am M\xc3\xacosachan Griogarach\0"
        "ar-SA\0"
        "Arabic (Saudi Arabia)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xa7\xd9\x84\xd9\x85\xd9\x85\xd9\x84\xd9\x83\xd8\xa9 \xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 \xd8\xa7\xd9\x84\xd8\xb3\xd8\xb9\xd9\x88\xd8\xaf\xd9\x8a\xd8\xa9)\0"
@@ -5708,7 +2529,6 @@ static const char locale_strings [] = {
        "\xe4\xb8\xad\xe6\x96\x87 (\xe5\x8f\xb0\xe6\xb9\xbe)\0"
        "CHT\0"
        "TW\0"
-       "\xe5\x85\xac\xe6\x9b\x86\0"
        "cs-CZ\0"
        "Czech (Czech Republic)\0"
        "\xc4\x8d\x65\xc5\xa1tina (\xc4\x8c\x65sk\xc3\xa1 republika)\0"
@@ -5797,7 +2617,7 @@ static const char locale_strings [] = {
        "SK\0"
        "sq-AL\0"
        "Albanian (Albania)\0"
-       "Shqip (Shqip\xc3\xabri)\0"
+       "shqip (Shqip\xc3\xabri)\0"
        "AL\0"
        "sv-SE\0"
        "Swedish (Sweden)\0"
@@ -5817,7 +2637,7 @@ static const char locale_strings [] = {
        "PK\0"
        "id-ID\0"
        "Indonesian (Indonesia)\0"
-       "Bahasa Indonesia (Indonesia)\0"
+       "Indonesia (Indonesia)\0"
        "ID\0"
        "uk-UA\0"
        "Ukrainian (Ukraine)\0"
@@ -5865,13 +2685,20 @@ static const char locale_strings [] = {
        "eu-ES\0"
        "Basque (Spain)\0"
        "euskara (Espainia)\0"
+       "hsb-DE\0"
+       "Upper Sorbian (Germany)\0"
+       "hornjoserb\xc5\xa1\xc4\x87ina (N\xc4\x9bmska)\0"
        "mk-MK\0"
        "Macedonian (Macedonia)\0"
        "\xd0\xbc\xd0\xb0\xd0\xba\xd0\xb5\xd0\xb4\xd0\xbe\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 (\xd0\x9c\xd0\xb0\xd0\xba\xd0\xb5\xd0\xb4\xd0\xbe\xd0\xbd\xd0\xb8\xd1\x98\xd0\xb0)\0"
        "MK\0"
+       "st-ZA\0"
+       "Southern Sotho (South Africa)\0"
+       "ZA\0"
+       "ts-ZA\0"
+       "Tsonga (South Africa)\0"
        "tn-ZA\0"
        "Tswana (South Africa)\0"
-       "ZA\0"
        "xh-ZA\0"
        "Xhosa (South Africa)\0"
        "zu-ZA\0"
@@ -5890,7 +2717,7 @@ static const char locale_strings [] = {
        "FO\0"
        "hi-IN\0"
        "Hindi (India)\0"
-       "\xe0\xa4\xb9\xe0\xa4\xbf\xe0\xa4\x82\xe0\xa4\xa6\xe0\xa5\x80 (\xe0\xa4\xad\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa4\xa4)\0"
+       "\xe0\xa4\xb9\xe0\xa4\xbf\xe0\xa4\xa8\xe0\xa5\x8d\xe0\xa4\xa6\xe0\xa5\x80 (\xe0\xa4\xad\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa4\xa4)\0"
        "IN\0"
        "mt-MT\0"
        "Maltese (Malta)\0"
@@ -5899,22 +2726,38 @@ static const char locale_strings [] = {
        "se-NO\0"
        "Northern Sami (Norway)\0"
        "davvis\xc3\xa1megiella (Norga)\0"
+       "ms-MY\0"
+       "Malay (Malaysia)\0"
+       "Bahasa Melayu (Malaysia)\0"
+       "MY\0"
+       "kk-KZ\0"
+       "Kazakh (Kazakhstan)\0"
+       "\xd2\x9b\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b \xd1\x82\xd1\x96\xd0\xbb\xd1\x96 (\xd2\x9a\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd)\0"
+       "KZ\0"
+       "ky-KG\0"
+       "Kyrgyz (Kyrgyzstan)\0"
+       "\xd0\xba\xd1\x8b\xd1\x80\xd0\xb3\xd1\x8b\xd0\xb7\xd1\x87\xd0\xb0 (\xd0\x9a\xd1\x8b\xd1\x80\xd0\xb3\xd1\x8b\xd0\xb7\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd)\0"
+       "KG\0"
        "sw-KE\0"
        "Swahili (Kenya)\0"
        "Kiswahili (Kenya)\0"
        "KE\0"
+       "tk-TM\0"
+       "Turkmen (Turkmenistan)\0"
+       "t\xc3\xbcrkmen\xc3\xa7\x65 (T\xc3\xbcrkmenistan)\0"
+       "TM\0"
        "uz-Latn-UZ\0"
        "Uzbek (Latin, Uzbekistan)\0"
-       "o\xca\xbbzbekcha (O\xca\xbbzbekiston)\0"
+       "o\xe2\x80\x98zbek (O\xca\xbbzbekiston)\0"
        "UZ\0"
        "bn-IN\0"
-       "Bengali (India)\0"
+       "Bangla (India)\0"
        "\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\x82\xe0\xa6\xb2\xe0\xa6\xbe (\xe0\xa6\xad\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa6\xa4)\0"
        "gu-IN\0"
        "Gujarati (India)\0"
        "\xe0\xaa\x97\xe0\xab\x81\xe0\xaa\x9c\xe0\xaa\xb0\xe0\xaa\xbe\xe0\xaa\xa4\xe0\xab\x80 (\xe0\xaa\xad\xe0\xaa\xbe\xe0\xaa\xb0\xe0\xaa\xa4)\0"
        "or-IN\0"
-       "Oriya (India)\0"
+       "Odia (India)\0"
        "\xe0\xac\x93\xe0\xac\xa1\xe0\xac\xbc\xe0\xac\xbf\xe0\xac\x86 (\xe0\xac\xad\xe0\xac\xbe\xe0\xac\xb0\xe0\xac\xa4)\0"
        "ta-IN\0"
        "Tamil (India)\0"
@@ -5934,9 +2777,15 @@ static const char locale_strings [] = {
        "mr-IN\0"
        "Marathi (India)\0"
        "\xe0\xa4\xae\xe0\xa4\xb0\xe0\xa4\xbe\xe0\xa4\xa0\xe0\xa5\x80 (\xe0\xa4\xad\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa4\xa4)\0"
+       "mn-MN\0"
+       "Mongolian (Mongolia)\0"
+       "\xd0\xbc\xd0\xbe\xd0\xbd\xd0\xb3\xd0\xbe\xd0\xbb (\xd0\x9c\xd0\xbe\xd0\xbd\xd0\xb3\xd0\xbe\xd0\xbb)\0"
+       "MNN\0"
+       "MN\0"
        "bo-CN\0"
        "Tibetan (China)\0"
-       "\xe0\xbd\x94\xe0\xbd\xbc\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbe\x90\xe0\xbd\x91\xe0\xbc\x8b (\xe0\xbd\xa2\xe0\xbe\x92\xe0\xbe\xb1\xe0\xbc\x8b\xe0\xbd\x93\xe0\xbd\x82)\0"
+       "\xe0\xbd\x96\xe0\xbd\xbc\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbe\x90\xe0\xbd\x91\xe0\xbc\x8b (\xe0\xbd\xa2\xe0\xbe\x92\xe0\xbe\xb1\xe0\xbc\x8b\xe0\xbd\x93\xe0\xbd\x82)\0"
+       "CN\0"
        "cy-GB\0"
        "Welsh (United Kingdom)\0"
        "Cymraeg (Y Deyrnas Unedig)\0"
@@ -5949,6 +2798,10 @@ static const char locale_strings [] = {
        "Lao (Laos)\0"
        "\xe0\xba\xa5\xe0\xba\xb2\xe0\xba\xa7 (\xe0\xba\xa5\xe0\xba\xb2\xe0\xba\xa7)\0"
        "LA\0"
+       "my-MM\0"
+       "Burmese (Myanmar (Burma))\0"
+       "\xe1\x80\x99\xe1\x80\xbc\xe1\x80\x94\xe1\x80\xba\xe1\x80\x99\xe1\x80\xac (\xe1\x80\x99\xe1\x80\xbc\xe1\x80\x94\xe1\x80\xba\xe1\x80\x99\xe1\x80\xac)\0"
+       "MM\0"
        "gl-ES\0"
        "Galician (Spain)\0"
        "galego (Espa\xc3\xb1\x61)\0"
@@ -5967,6 +2820,9 @@ static const char locale_strings [] = {
        "Nepali (Nepal)\0"
        "\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa4\xbe\xe0\xa4\xb2\xe0\xa5\x80 (\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa4\xbe\xe0\xa4\xb2)\0"
        "NP\0"
+       "fy-NL\0"
+       "Western Frisian (Netherlands)\0"
+       "West-Frysk (Nederl\xc3\xa2n)\0"
        "ps-AF\0"
        "Pashto (Afghanistan)\0"
        "\xd9\xbe\xda\x9a\xd8\xaa\xd9\x88 (\xd8\xa7\xd9\x81\xd8\xba\xd8\xa7\xd9\x86\xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86)\0"
@@ -5984,20 +2840,45 @@ static const char locale_strings [] = {
        "\xc3\x88\x64\xc3\xa8 Yor\xc3\xb9\x62\xc3\xa1 (Or\xc3\xadl\xe1\xba\xb9\xcc\x81\xc3\xa8\x64\x65 N\xc3\xa0\xc3\xacj\xc3\xadr\xc3\xad\xc3\xa0)\0"
        "nso-ZA\0"
        "Northern Sotho (South Africa)\0"
+       "lb-LU\0"
+       "Luxembourgish (Luxembourg)\0"
+       "L\xc3\xabtzebuergesch (L\xc3\xabtzebuerg)\0"
+       "LU\0"
        "kl-GL\0"
        "Kalaallisut (Greenland)\0"
        "kalaallisut (Kalaallit Nunaat)\0"
        "GL\0"
        "ig-NG\0"
        "Igbo (Nigeria)\0"
+       "om-ET\0"
+       "Oromo (Ethiopia)\0"
+       "Oromoo (Itoophiyaa)\0"
+       "ti-ET\0"
+       "Tigrinya (Ethiopia)\0"
+       "\xe1\x89\xb5\xe1\x8c\x8d\xe1\x88\xad\xe1\x8a\x9b (\xe1\x8a\xa2\xe1\x89\xb5\xe1\x8b\xae\xe1\x8c\xb5\xe1\x8b\xab)\0"
+       "TIE\0"
+       "haw-US\0"
+       "Hawaiian (United States)\0"
+       "\xca\xbb\xc5\x8clelo Hawai\xca\xbbi (\xca\xbb\x41melika Hui P\xc5\xab \xca\xbbIa)\0"
+       "so-SO\0"
+       "Somali (Somalia)\0"
+       "Soomaali (Soomaaliya)\0"
+       "SO\0"
        "ii-CN\0"
        "Sichuan Yi (China)\0"
        "\xea\x86\x88\xea\x8c\xa0\xea\x89\x99 (\xea\x8d\x8f\xea\x87\xa9)\0"
        "br-FR\0"
        "Breton (France)\0"
        "brezhoneg (Fra\xc3\xb1s)\0"
+       "ug-CN\0"
+       "Uyghur (China)\0"
+       "\xd8\xa6\xdb\x87\xd9\x8a\xd8\xba\xdb\x87\xd8\xb1\xda\x86\xdb\x95 (\xd8\xac\xdb\x87\xda\xad\xda\xaf\xd9\x88)\0"
+       "gsw-FR\0"
+       "Swiss German (France)\0"
+       "Schwiizert\xc3\xbc\xc3\xbctsch (Frankriich)\0"
        "sah-RU\0"
        "Sakha (Russia)\0"
+       "\xd1\x81\xd0\xb0\xd1\x85\xd0\xb0 \xd1\x82\xd1\x8b\xd0\xbb\xd0\xb0 (\xd0\x90\xd1\x80\xd0\xb0\xd1\x81\xd1\x81\xd1\x8b\xd1\x8b\xd0\xb9\xd0\xb0)\0"
        "rw-RW\0"
        "Kinyarwanda (Rwanda)\0"
        "RW\0"
@@ -6009,7 +2890,8 @@ static const char locale_strings [] = {
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa7\xd9\x82)\0"
        "ARI\0"
        "IQ\0"
-       "\xd8\xa7\xd9\x84\xd8\xaa\xd9\x82\xd9\x88\xd9\x8a\xd9\x85 \xd8\xa7\xd9\x84\xd9\x85\xd9\x8a\xd9\x84\xd8\xa7\xd8\xaf\xd9\x8a\0"
+       "ca-ES-valencia\0"
+       "VAL\0"
        "zh-CN\0"
        "\xe4\xb8\xad\xe6\x96\x87 (\xe4\xb8\xad\xe5\x9b\xbd)\0"
        "de-CH\0"
@@ -6046,27 +2928,73 @@ static const char locale_strings [] = {
        "pt-PT\0"
        "Portuguese (Portugal)\0"
        "portugu\xc3\xaas (Portugal)\0"
-       "PTG\0"
        "PT\0"
+       "ro-MD\0"
+       "Romanian (Moldova)\0"
+       "rom\xc3\xa2n\xc4\x83 (Republica Moldova)\0"
+       "ROD\0"
+       "MD\0"
+       "ru-MD\0"
+       "Russian (Moldova)\0"
+       "\xd1\x80\xd1\x83\xd1\x81\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9 (\xd0\x9c\xd0\xbe\xd0\xbb\xd0\xb4\xd0\xbe\xd0\xb2\xd0\xb0)\0"
+       "RUM\0"
        "sv-FI\0"
        "Swedish (Finland)\0"
        "svenska (Finland)\0"
        "SVF\0"
+       "ur-IN\0"
+       "Urdu (India)\0"
+       "\xd8\xa7\xd8\xb1\xd8\xaf\xd9\x88 (\xd8\xa8\xda\xbe\xd8\xa7\xd8\xb1\xd8\xaa)\0"
+       "URI\0"
        "az-Cyrl-AZ\0"
        "Azerbaijani (Cyrillic, Azerbaijan)\0"
        "AZC\0"
+       "dsb-DE\0"
+       "Lower Sorbian (Germany)\0"
+       "dolnoserb\xc5\xa1\xc4\x87ina (Nimska)\0"
+       "DSB\0"
+       "dsb\0"
+       "tn-BW\0"
+       "Tswana (Botswana)\0"
+       "TSB\0"
+       "BW\0"
+       "se-SE\0"
+       "Northern Sami (Sweden)\0"
+       "davvis\xc3\xa1megiella (Ruo\xc5\xa7\xc5\xa7\x61)\0"
+       "SMF\0"
        "ga-IE\0"
        "Irish (Ireland)\0"
        "Gaeilge (\xc3\x89ire)\0"
        "IE\0"
+       "ms-BN\0"
+       "Malay (Brunei)\0"
+       "Bahasa Melayu (Brunei)\0"
+       "MSB\0"
+       "BN\0"
        "uz-Cyrl-UZ\0"
        "Uzbek (Cyrillic, Uzbekistan)\0"
-       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\xd0\xb8\0"
+       "UZC\0"
        "bn-BD\0"
-       "Bengali (Bangladesh)\0"
+       "Bangla (Bangladesh)\0"
        "\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\x82\xe0\xa6\xb2\xe0\xa6\xbe (\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\x82\xe0\xa6\xb2\xe0\xa6\xbe\xe0\xa6\xa6\xe0\xa7\x87\xe0\xa6\xb6)\0"
        "BNB\0"
        "BD\0"
+       "pa-Arab-PK\0"
+       "Punjabi (Arabic, Pakistan)\0"
+       "\xe0\xa8\xaa\xe0\xa9\xb0\xe0\xa8\x9c\xe0\xa8\xbe\xe0\xa8\xac\xe0\xa9\x80 (\xe0\xa8\xaa\xe0\xa8\xbe\xe0\xa8\x95\xe0\xa8\xbf\xe0\xa8\xb8\xe0\xa8\xa4\xe0\xa8\xbe\xe0\xa8\xa8)\0"
+       "PAP\0"
+       "ta-LK\0"
+       "Tamil (Sri Lanka)\0"
+       "\xe0\xae\xa4\xe0\xae\xae\xe0\xae\xbf\xe0\xae\xb4\xe0\xaf\x8d (\xe0\xae\x87\xe0\xae\xb2\xe0\xae\x99\xe0\xaf\x8d\xe0\xae\x95\xe0\xaf\x88)\0"
+       "TAM\0"
+       "ne-IN\0"
+       "Nepali (India)\0"
+       "\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa4\xbe\xe0\xa4\xb2\xe0\xa5\x80 (\xe0\xa4\xad\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa4\xa4)\0"
+       "NEI\0"
+       "ti-ER\0"
+       "Tigrinya (Eritrea)\0"
+       "\xe1\x89\xb5\xe1\x8c\x8d\xe1\x88\xad\xe1\x8a\x9b (\xe1\x8a\xa4\xe1\x88\xad\xe1\x89\xb5\xe1\x88\xab)\0"
+       "ER\0"
        "ar-EG\0"
        "Arabic (Egypt)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd9\x85\xd8\xb5\xd8\xb1)\0"
@@ -6095,12 +3023,10 @@ static const char locale_strings [] = {
        "fran\xc3\xa7\x61is (Canada)\0"
        "FRC\0"
        "CA\0"
-       "Calendrier gr\xc3\xa9gorien\0"
        "se-FI\0"
        "Northern Sami (Finland)\0"
        "davvis\xc3\xa1megiella (Suopma)\0"
        "SMG\0"
-       "smg\0"
        "ar-LY\0"
        "Arabic (Libya)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd9\x84\xd9\x8a\xd8\xa8\xd9\x8a\xd8\xa7)\0"
@@ -6115,7 +3041,6 @@ static const char locale_strings [] = {
        "German (Luxembourg)\0"
        "Deutsch (Luxemburg)\0"
        "DEL\0"
-       "LU\0"
        "en-CA\0"
        "English (Canada)\0"
        "ENC\0"
@@ -6129,10 +3054,9 @@ static const char locale_strings [] = {
        "fran\xc3\xa7\x61is (Suisse)\0"
        "FRS\0"
        "hr-BA\0"
-       "Croatian (Bosnia and Herzegovina)\0"
+       "Croatian (Bosnia & Herzegovina)\0"
        "hrvatski (Bosna i Hercegovina)\0"
        "HRB\0"
-       "hrb\0"
        "BA\0"
        "ar-DZ\0"
        "Arabic (Algeria)\0"
@@ -6163,12 +3087,11 @@ static const char locale_strings [] = {
        "fran\xc3\xa7\x61is (Luxembourg)\0"
        "FRL\0"
        "bs-Latn-BA\0"
-       "Bosnian (Latin, Bosnia and Herzegovina)\0"
+       "Bosnian (Latin, Bosnia & Herzegovina)\0"
        "bosanski (Bosna i Hercegovina)\0"
        "BSB\0"
-       "bsb\0"
+       "bos\0"
        "bs\0"
-       "Gregorijanski kalendar\0"
        "ar-MA\0"
        "Arabic (Morocco)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xa7\xd9\x84\xd9\x85\xd8\xba\xd8\xb1\xd8\xa8)\0"
@@ -6188,10 +3111,10 @@ static const char locale_strings [] = {
        "FRM\0"
        "MC\0"
        "sr-Latn-BA\0"
-       "Serbian (Latin, Bosnia and Herzegovina)\0"
-       "\xd0\xa1\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8 (\xd0\x91\xd0\xbe\xd1\x81\xd0\xbd\xd0\xb0 \xd0\xb8 \xd0\xa5\xd0\xb5\xd1\x80\xd1\x86\xd0\xb5\xd0\xb3\xd0\xbe\xd0\xb2\xd0\xb8\xd0\xbd\xd0\xb0)\0"
+       "Serbian (Latin, Bosnia & Herzegovina)\0"
+       "\xd1\x81\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8 (\xd0\x91\xd0\xbe\xd1\x81\xd0\xbd\xd0\xb0 \xd0\xb8 \xd0\xa5\xd0\xb5\xd1\x80\xd1\x86\xd0\xb5\xd0\xb3\xd0\xbe\xd0\xb2\xd0\xb8\xd0\xbd\xd0\xb0)\0"
        "SRS\0"
-       "srs\0"
+       "srp\0"
        "sr\0"
        "ar-TN\0"
        "Arabic (Tunisia)\0"
@@ -6207,9 +3130,8 @@ static const char locale_strings [] = {
        "ESD\0"
        "DO\0"
        "sr-Cyrl-BA\0"
-       "Serbian (Cyrillic, Bosnia and Herzegovina)\0"
+       "Serbian (Cyrillic, Bosnia & Herzegovina)\0"
        "SRN\0"
-       "srn\0"
        "ar-OM\0"
        "Arabic (Oman)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xb9\xd9\x8f\xd9\x85\xd8\xa7\xd9\x86)\0"
@@ -6224,10 +3146,14 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Venezuela)\0"
        "ESV\0"
        "VE\0"
+       "fr-RE\0"
+       "French (R\xc3\xa9union)\0"
+       "fran\xc3\xa7\x61is (La R\xc3\xa9union)\0"
+       "FRR\0"
+       "RE\0"
        "bs-Cyrl-BA\0"
-       "Bosnian (Cyrillic, Bosnia and Herzegovina)\0"
+       "Bosnian (Cyrillic, Bosnia & Herzegovina)\0"
        "BSC\0"
-       "bsc\0"
        "ar-YE\0"
        "Arabic (Yemen)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xa7\xd9\x84\xd9\x8a\xd9\x85\xd9\x86)\0"
@@ -6238,11 +3164,21 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Colombia)\0"
        "ESO\0"
        "CO\0"
+       "fr-CD\0"
+       "French (Congo - Kinshasa)\0"
+       "fran\xc3\xa7\x61is (Congo-Kinshasa)\0"
+       "FRD\0"
+       "CD\0"
        "sr-Latn-RS\0"
        "Serbian (Latin, Serbia)\0"
-       "\xd0\xa1\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8 (\xd0\xa1\xd1\x80\xd0\xb1\xd0\xb8\xd1\x98\xd0\xb0)\0"
+       "\xd1\x81\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8 (\xd0\xa1\xd1\x80\xd0\xb1\xd0\xb8\xd1\x98\xd0\xb0)\0"
        "SRM\0"
        "RS\0"
+       "smn-FI\0"
+       "Inari Sami (Finland)\0"
+       "anar\xc3\xa2\xc5\xa1kiel\xc3\xa2 (Suom\xc3\xa2)\0"
+       "SMN\0"
+       "smn\0"
        "ar-SY\0"
        "Arabic (Syria)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xb3\xd9\x88\xd8\xb1\xd9\x8a\xd8\xa7)\0"
@@ -6257,6 +3193,11 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Per\xc3\xba)\0"
        "ESR\0"
        "PE\0"
+       "fr-SN\0"
+       "French (Senegal)\0"
+       "fran\xc3\xa7\x61is (S\xc3\xa9n\xc3\xa9gal)\0"
+       "FRN\0"
+       "SN\0"
        "sr-Cyrl-RS\0"
        "Serbian (Cyrillic, Serbia)\0"
        "SRO\0"
@@ -6266,7 +3207,7 @@ static const char locale_strings [] = {
        "ARJ\0"
        "JO\0"
        "en-TT\0"
-       "English (Trinidad and Tobago)\0"
+       "English (Trinidad & Tobago)\0"
        "ENT\0"
        "TT\0"
        "es-AR\0"
@@ -6274,9 +3215,14 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Argentina)\0"
        "ESS\0"
        "AR\0"
+       "fr-CM\0"
+       "French (Cameroon)\0"
+       "fran\xc3\xa7\x61is (Cameroun)\0"
+       "FRE\0"
+       "CM\0"
        "sr-Latn-ME\0"
        "Serbian (Latin, Montenegro)\0"
-       "\xd0\xa1\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8 (\xd0\xa6\xd1\x80\xd0\xbd\xd0\xb0 \xd0\x93\xd0\xbe\xd1\x80\xd0\xb0)\0"
+       "\xd1\x81\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8 (\xd0\xa6\xd1\x80\xd0\xbd\xd0\xb0 \xd0\x93\xd0\xbe\xd1\x80\xd0\xb0)\0"
        "SRP\0"
        "ME\0"
        "ar-LB\0"
@@ -6293,6 +3239,11 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Ecuador)\0"
        "ESF\0"
        "EC\0"
+       "fr-CI\0"
+       "French (C\xc3\xb4te d\xe2\x80\x99Ivoire)\0"
+       "fran\xc3\xa7\x61is (C\xc3\xb4te d\xe2\x80\x99Ivoire)\0"
+       "FRI\0"
+       "CI\0"
        "sr-Cyrl-ME\0"
        "Serbian (Cyrillic, Montenegro)\0"
        "SRQ\0"
@@ -6309,6 +3260,11 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Chile)\0"
        "ESL\0"
        "CL\0"
+       "fr-ML\0"
+       "French (Mali)\0"
+       "fran\xc3\xa7\x61is (Mali)\0"
+       "FRF\0"
+       "ML\0"
        "ar-AE\0"
        "Arabic (United Arab Emirates)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xa7\xd9\x84\xd8\xa5\xd9\x85\xd8\xa7\xd8\xb1\xd8\xa7\xd8\xaa \xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 \xd8\xa7\xd9\x84\xd9\x85\xd8\xaa\xd8\xad\xd8\xaf\xd8\xa9)\0"
@@ -6319,16 +3275,28 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Uruguay)\0"
        "ESY\0"
        "UY\0"
+       "fr-MA\0"
+       "French (Morocco)\0"
+       "fran\xc3\xa7\x61is (Maroc)\0"
+       "FRO\0"
        "ar-BH\0"
        "Arabic (Bahrain)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd8\xa7\xd9\x84\xd8\xa8\xd8\xad\xd8\xb1\xd9\x8a\xd9\x86)\0"
        "ARH\0"
        "BH\0"
+       "en-HK\0"
+       "English (Hong Kong SAR China)\0"
+       "ENH\0"
        "es-PY\0"
        "Spanish (Paraguay)\0"
        "espa\xc3\xb1ol (Paraguay)\0"
        "ESZ\0"
        "PY\0"
+       "fr-HT\0"
+       "French (Haiti)\0"
+       "fran\xc3\xa7\x61is (Ha\xc3\xafti)\0"
+       "FRH\0"
+       "HT\0"
        "ar-QA\0"
        "Arabic (Qatar)\0"
        "\xd8\xa7\xd9\x84\xd8\xb9\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xa9 (\xd9\x82\xd8\xb7\xd8\xb1)\0"
@@ -6342,6 +3310,9 @@ static const char locale_strings [] = {
        "espa\xc3\xb1ol (Bolivia)\0"
        "ESB\0"
        "BO\0"
+       "en-MY\0"
+       "English (Malaysia)\0"
+       "ENM\0"
        "es-SV\0"
        "Spanish (El Salvador)\0"
        "espa\xc3\xb1ol (El Salvador)\0"
@@ -6369,6 +3340,11 @@ static const char locale_strings [] = {
        "Spanish (United States)\0"
        "espa\xc3\xb1ol (Estados Unidos)\0"
        "EST\0"
+       "es-CU\0"
+       "Spanish (Cuba)\0"
+       "espa\xc3\xb1ol (Cuba)\0"
+       "ESK\0"
+       "CU\0"
        "bs-Cyrl\0"
        "Bosnian (Cyrillic)\0"
        "bosanski\0"
@@ -6376,9 +3352,11 @@ static const char locale_strings [] = {
        "Bosnian (Latin)\0"
        "sr-Cyrl\0"
        "Serbian (Cyrillic)\0"
-       "\xd0\xa1\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8\0"
+       "\xd1\x81\xd1\x80\xd0\xbf\xd1\x81\xd0\xba\xd0\xb8\0"
        "sr-Latn\0"
        "Serbian (Latin)\0"
+       "Inari Sami\0"
+       "anar\xc3\xa2\xc5\xa1kiel\xc3\xa2\0"
        "az-Cyrl\0"
        "Azerbaijani (Cyrillic)\0"
        "Norwegian Nynorsk\0"
@@ -6390,7 +3368,6 @@ static const char locale_strings [] = {
        "Uzbek (Cyrillic)\0"
        "mn-Cyrl\0"
        "Mongolian (Cyrillic)\0"
-       "MNN\0"
        "zh-Hant\0"
        "zh-CHT\0"
        "Chinese (Traditional) Legacy\0"
@@ -6400,8 +3377,12 @@ static const char locale_strings [] = {
        "SRB\0"
        "tg-Cyrl\0"
        "Tajik (Cyrillic)\0"
+       "Lower Sorbian\0"
+       "dolnoserb\xc5\xa1\xc4\x87ina\0"
        "uz-Latn\0"
        "Uzbek (Latin)\0"
+       "pa-Arab\0"
+       "Punjabi (Arabic)\0"
        "tzm-Latn\0"
        "Central Atlas Tamazight (Latin)\0"
        "ha-Latn\0"
@@ -6440,6 +3421,7 @@ static const char locale_strings [] = {
        "bs-latn\0"
        "bs-latn-ba\0"
        "ca-es\0"
+       "ca-es-valencia\0"
        "cs-cz\0"
        "cy-gb\0"
        "da-dk\0"
@@ -6448,14 +3430,17 @@ static const char locale_strings [] = {
        "de-de\0"
        "de-li\0"
        "de-lu\0"
+       "dsb-de\0"
        "el-gr\0"
        "en-au\0"
        "en-bz\0"
        "en-ca\0"
        "en-gb\0"
+       "en-hk\0"
        "en-ie\0"
        "en-in\0"
        "en-jm\0"
+       "en-my\0"
        "en-nz\0"
        "en-ph\0"
        "en-sg\0"
@@ -6468,6 +3453,7 @@ static const char locale_strings [] = {
        "es-cl\0"
        "es-co\0"
        "es-cr\0"
+       "es-cu\0"
        "es-do\0"
        "es-ec\0"
        "es-es\0"
@@ -6491,20 +3477,32 @@ static const char locale_strings [] = {
        "fo-fo\0"
        "fr-be\0"
        "fr-ca\0"
+       "fr-cd\0"
        "fr-ch\0"
+       "fr-ci\0"
+       "fr-cm\0"
        "fr-fr\0"
+       "fr-ht\0"
        "fr-lu\0"
+       "fr-ma\0"
        "fr-mc\0"
+       "fr-ml\0"
+       "fr-re\0"
+       "fr-sn\0"
+       "fy-nl\0"
        "ga-ie\0"
        "gd-gb\0"
        "gl-es\0"
+       "gsw-fr\0"
        "gu-in\0"
        "ha-latn\0"
        "ha-latn-ng\0"
+       "haw-us\0"
        "he-il\0"
        "hi-in\0"
        "hr-ba\0"
        "hr-hr\0"
+       "hsb-de\0"
        "hu-hu\0"
        "hy-am\0"
        "id-id\0"
@@ -6515,40 +3513,56 @@ static const char locale_strings [] = {
        "it-it\0"
        "ja-jp\0"
        "ka-ge\0"
+       "kk-kz\0"
        "kl-gl\0"
        "km-kh\0"
        "kn-in\0"
        "ko-kr\0"
        "kok-in\0"
+       "ky-kg\0"
+       "lb-lu\0"
        "lo-la\0"
        "lt-lt\0"
        "lv-lv\0"
        "mk-mk\0"
        "ml-in\0"
        "mn-cyrl\0"
+       "mn-mn\0"
        "mr-in\0"
+       "ms-bn\0"
+       "ms-my\0"
        "mt-mt\0"
+       "my-mm\0"
        "nb-no\0"
+       "ne-in\0"
        "ne-np\0"
        "nl-be\0"
        "nl-nl\0"
        "nn-no\0"
        "nso-za\0"
+       "om-et\0"
        "or-in\0"
+       "pa-arab\0"
+       "pa-arab-pk\0"
        "pl-pl\0"
        "ps-af\0"
        "pt-br\0"
        "pt-pt\0"
        "rm-ch\0"
+       "ro-md\0"
        "ro-ro\0"
+       "ru-md\0"
        "ru-ru\0"
        "rw-rw\0"
        "sah-ru\0"
        "se-fi\0"
        "se-no\0"
+       "se-se\0"
        "si-lk\0"
        "sk-sk\0"
        "sl-si\0"
+       "smn-fi\0"
+       "so-so\0"
        "sq-al\0"
        "sr-cyrl\0"
        "sr-cyrl-ba\0"
@@ -6558,18 +3572,27 @@ static const char locale_strings [] = {
        "sr-latn-ba\0"
        "sr-latn-me\0"
        "sr-latn-rs\0"
+       "st-za\0"
        "sv-fi\0"
        "sv-se\0"
        "sw-ke\0"
        "ta-in\0"
+       "ta-lk\0"
        "te-in\0"
        "tg-cyrl\0"
        "tg-cyrl-tj\0"
        "th-th\0"
+       "ti-er\0"
+       "ti-et\0"
+       "tk-tm\0"
+       "tn-bw\0"
        "tn-za\0"
        "tr-tr\0"
+       "ts-za\0"
        "tzm-latn\0"
+       "ug-cn\0"
        "uk-ua\0"
+       "ur-in\0"
        "ur-pk\0"
        "uz-cyrl\0"
        "uz-cyrl-uz\0"
@@ -6628,7 +3651,7 @@ static const char locale_strings [] = {
        "Azerbaijani Manat\0"
        "Az\xc9\x99rbaycan Manat\xc4\xb1\0"
        "BIH\0"
-       "Bosnia and Herzegovina\0"
+       "Bosnia & Herzegovina\0"
        "Bosna i Hercegovina\0"
        "BAM\0"
        "Bosnia-Herzegovina Convertible Mark\0"
@@ -6653,6 +3676,11 @@ static const char locale_strings [] = {
        "BHD\0"
        "Bahraini Dinar\0"
        "\xd8\xaf\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1 \xd8\xa8\xd8\xad\xd8\xb1\xd9\x8a\xd9\x86\xd9\x8a\0"
+       "BRN\0"
+       "Brunei\0"
+       "BND\0"
+       "Brunei Dollar\0"
+       "Dolar Brunei\0"
        "BOL\0"
        "Bolivia\0"
        "Bolivian Boliviano\0"
@@ -6663,10 +3691,14 @@ static const char locale_strings [] = {
        "BRL\0"
        "Brazilian Real\0"
        "Real brasileiro\0"
+       "BWA\0"
+       "Botswana\0"
+       "BWP\0"
+       "Botswanan Pula\0"
        "BLR\0"
        "Belarus\0"
        "\xd0\x91\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x80\xd1\x83\xd1\x81\xd1\x8c\0"
-       "BYR\0"
+       "BYN\0"
        "Belarusian Ruble\0"
        "\xd0\xb1\xd0\xb5\xd0\xbb\xd0\xb0\xd1\x80\xd1\x83\xd1\x81\xd0\xba\xd1\x96 \xd1\x80\xd1\x83\xd0\xb1\xd0\xb5\xd0\xbb\xd1\x8c\0"
        "BLZ\0"
@@ -6678,16 +3710,33 @@ static const char locale_strings [] = {
        "CAD\0"
        "Canadian Dollar\0"
        "dollar canadien\0"
+       "COD\0"
+       "Congo - Kinshasa\0"
+       "Congo-Kinshasa\0"
+       "CDF\0"
+       "Congolese Franc\0"
+       "franc congolais\0"
        "CHE\0"
        "Switzerland\0"
        "Svizra\0"
        "Swiss Franc\0"
        "franc svizzer\0"
+       "CIV\0"
+       "C\xc3\xb4te d\xe2\x80\x99Ivoire\0"
+       "XOF\0"
+       "West African CFA Franc\0"
+       "franc CFA (BCEAO)\0"
        "CHL\0"
        "Chile\0"
        "CLP\0"
        "Chilean Peso\0"
-       "peso chileno\0"
+       "Peso chileno\0"
+       "CMR\0"
+       "Cameroon\0"
+       "Cameroun\0"
+       "XAF\0"
+       "Central African CFA Franc\0"
+       "franc CFA (BEAC)\0"
        "CHN\0"
        "China\0"
        "\xe0\xbd\xa2\xe0\xbe\x92\xe0\xbe\xb1\xe0\xbc\x8b\xe0\xbd\x93\xe0\xbd\x82\0"
@@ -6704,6 +3753,11 @@ static const char locale_strings [] = {
        "CRC\0"
        "Costa Rican Col\xc3\xb3n\0"
        "col\xc3\xb3n costarricense\0"
+       "CUB\0"
+       "Cuba\0"
+       "CUP\0"
+       "Cuban Peso\0"
+       "peso cubano\0"
        "CZE\0"
        "Czech Republic\0"
        "\xc4\x8c\x65sk\xc3\xa1 republika\0"
@@ -6717,7 +3771,7 @@ static const char locale_strings [] = {
        "Danmark\0"
        "DKK\0"
        "Danish Krone\0"
-       "Dansk krone\0"
+       "dansk krone\0"
        "DOM\0"
        "Dominican Republic\0"
        "Rep\xc3\xba\x62lica Dominicana\0"
@@ -6743,6 +3797,11 @@ static const char locale_strings [] = {
        "EGP\0"
        "Egyptian Pound\0"
        "\xd8\xac\xd9\x86\xd9\x8a\xd9\x87 \xd9\x85\xd8\xb5\xd8\xb1\xd9\x8a\0"
+       "ERI\0"
+       "Eritrea\0"
+       "\xe1\x8a\xa4\xe1\x88\xad\xe1\x89\xb5\xe1\x88\xab\0"
+       "ERN\0"
+       "Eritrean Nakfa\0"
        "Spain\0"
        "Espanya\0"
        "ETH\0"
@@ -6753,7 +3812,6 @@ static const char locale_strings [] = {
        "\xe1\x8b\xa8\xe1\x8a\xa2\xe1\x89\xb5\xe1\x8b\xae\xe1\x8c\xb5\xe1\x8b\xab \xe1\x89\xa5\xe1\x88\xad\0"
        "Finland\0"
        "Suomi\0"
-       "FRO\0"
        "Faroe Islands\0"
        "F\xc3\xb8royar\0"
        "donsk kr\xc3\xb3na\0"
@@ -6762,8 +3820,8 @@ static const char locale_strings [] = {
        "United Kingdom\0"
        "Y Deyrnas Unedig\0"
        "GBP\0"
-       "British Pound Sterling\0"
-       "Punt Sterling Prydain\0"
+       "British Pound\0"
+       "Punt Prydain\0"
        "GEO\0"
        "Georgia\0"
        "\xe1\x83\xa1\xe1\x83\x90\xe1\x83\xa5\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x97\xe1\x83\x95\xe1\x83\x94\xe1\x83\x9a\xe1\x83\x9d\0"
@@ -6782,7 +3840,7 @@ static const char locale_strings [] = {
        "Guatemala\0"
        "GTQ\0"
        "Guatemalan Quetzal\0"
-       "quetzal guatemalteco\0"
+       "quetzal\0"
        "HKG\0"
        "Hong Kong SAR China\0"
        "\xe4\xb8\xad\xe5\x9b\xbd\xe9\xa6\x99\xe6\xb8\xaf\xe7\x89\xb9\xe5\x88\xab\xe8\xa1\x8c\xe6\x94\xbf\xe5\x8c\xba\0"
@@ -6796,16 +3854,20 @@ static const char locale_strings [] = {
        "lempira hondure\xc3\xb1o\0"
        "Croatia\0"
        "Hrvatska\0"
-       "HRK\0"
        "Croatian Kuna\0"
        "hrvatska kuna\0"
+       "HTI\0"
+       "Haiti\0"
+       "Ha\xc3\xafti\0"
+       "HTG\0"
+       "Haitian Gourde\0"
+       "gourde ha\xc3\xaftienne\0"
        "Hungary\0"
        "Magyarorsz\xc3\xa1g\0"
        "HUF\0"
        "Hungarian Forint\0"
        "magyar forint\0"
        "IDN\0"
-       "Indonesia\0"
        "IDR\0"
        "Indonesian Rupiah\0"
        "Rupiah Indonesia\0"
@@ -6816,8 +3878,8 @@ static const char locale_strings [] = {
        "Israel\0"
        "\xd7\x99\xd7\xa9\xd7\xa8\xd7\x90\xd7\x9c\0"
        "ILS\0"
-       "Israeli New Sheqel\0"
-       "\xd7\xa9\xd7\xb4\xd7\x97\0"
+       "Israeli New Shekel\0"
+       "\xd7\xa9\xd7\xa7\xd7\x9c \xd7\x97\xd7\x93\xd7\xa9\0"
        "India\0"
        "\xe0\xa4\xad\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa4\xa4\0"
        "INR\0"
@@ -6837,9 +3899,8 @@ static const char locale_strings [] = {
        "\xd8\xb1\xdb\x8c\xd8\xa7\xd9\x84 \xd8\xa7\xdb\x8c\xd8\xb1\xd8\xa7\xd9\x86\0"
        "Iceland\0"
        "\xc3\x8dsland\0"
-       "ISK\0"
        "Icelandic Kr\xc3\xb3na\0"
-       "\xc3\x8dslensk kr\xc3\xb3na\0"
+       "\xc3\xadslensk kr\xc3\xb3na\0"
        "Italy\0"
        "Italia\0"
        "JAM\0"
@@ -6861,12 +3922,18 @@ static const char locale_strings [] = {
        "Kenya\0"
        "KES\0"
        "Kenyan Shilling\0"
-       "shilingi ya Kenya\0"
+       "Shilingi ya Kenya\0"
+       "KGZ\0"
+       "Kyrgyzstan\0"
+       "\xd0\x9a\xd1\x8b\xd1\x80\xd0\xb3\xd1\x8b\xd0\xb7\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd\0"
+       "KGS\0"
+       "Kyrgystani Som\0"
+       "\xd0\x9a\xd1\x8b\xd1\x80\xd0\xb3\xd1\x8b\xd0\xb7\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd \xd1\x81\xd0\xbe\xd0\xbc\xd1\x83\0"
        "Cambodia\0"
        "\xe1\x9e\x80\xe1\x9e\x98\xe1\x9f\x92\xe1\x9e\x96\xe1\x9e\xbb\xe1\x9e\x87\xe1\x9e\xb6\0"
        "KHR\0"
        "Cambodian Riel\0"
-       "\xe1\x9e\x9a\xe1\x9f\x80\xe1\x9e\x9b \xe1\x9e\x80\xe1\x9e\x98\xe1\x9f\x92\xe1\x9e\x96\xe1\x9e\xbb\xe1\x9e\x87\xe1\x9e\xb6\0"
+       "\xe1\x9e\x9a\xe1\x9f\x80\xe1\x9e\x9b\xe2\x80\x8b\xe1\x9e\x80\xe1\x9e\x98\xe1\x9f\x92\xe1\x9e\x96\xe1\x9e\xbb\xe1\x9e\x87\xe1\x9e\xb6\0"
        "South Korea\0"
        "\xeb\x8c\x80\xed\x95\x9c\xeb\xaf\xbc\xea\xb5\xad\0"
        "KRW\0"
@@ -6878,16 +3945,22 @@ static const char locale_strings [] = {
        "KWD\0"
        "Kuwaiti Dinar\0"
        "\xd8\xaf\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1 \xd9\x83\xd9\x88\xd9\x8a\xd8\xaa\xd9\x8a\0"
+       "KAZ\0"
+       "Kazakhstan\0"
+       "\xd2\x9a\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd\0"
+       "KZT\0"
+       "Kazakhstani Tenge\0"
+       "\xd2\x9a\xd0\xb0\xd0\xb7\xd0\xb0\xd2\x9b\xd1\x81\xd1\x82\xd0\xb0\xd0\xbd \xd1\x82\xd0\xb5\xd2\xa3\xd0\xb3\xd0\xb5\xd1\x81\xd1\x96\0"
        "Laos\0"
        "LAK\0"
        "Laotian Kip\0"
-       "\xe0\xba\x81\xe0\xba\xb5\xe0\xba\x9a \xe0\xba\xa5\xe0\xba\xb2\xe0\xba\xa7\0"
+       "\xe0\xba\xa5\xe0\xba\xb2\xe0\xba\xa7 \xe0\xba\x81\xe0\xba\xb5\xe0\xba\x9a\0"
        "LBN\0"
        "Lebanon\0"
        "\xd9\x84\xd8\xa8\xd9\x86\xd8\xa7\xd9\x86\0"
        "LBP\0"
        "Lebanese Pound\0"
-       "\xd8\xac\xd9\x86\xd9\x8a\xd8\xa9 \xd9\x84\xd8\xa8\xd9\x86\xd8\xa7\xd9\x86\xd9\x8a\0"
+       "\xd8\xac\xd9\x86\xd9\x8a\xd9\x87 \xd9\x84\xd8\xa8\xd9\x86\xd8\xa7\xd9\x86\xd9\x8a\0"
        "LIE\0"
        "Liechtenstein\0"
        "Schweizer Franken\0"
@@ -6900,12 +3973,10 @@ static const char locale_strings [] = {
        "LTU\0"
        "Lithuania\0"
        "Lietuva\0"
-       "LTL\0"
-       "Lithuanian Litas\0"
-       "Lietuvos litas\0"
+       "Euras\0"
        "LUX\0"
        "Luxembourg\0"
-       "Luxemburg\0"
+       "L\xc3\xabtzebuerg\0"
        "LVA\0"
        "Latvia\0"
        "Latvija\0"
@@ -6918,11 +3989,16 @@ static const char locale_strings [] = {
        "\xd8\xaf\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1 \xd9\x84\xd9\x8a\xd8\xa8\xd9\x8a\0"
        "Morocco\0"
        "\xd8\xa7\xd9\x84\xd9\x85\xd8\xba\xd8\xb1\xd8\xa8\0"
-       "MAD\0"
        "Moroccan Dirham\0"
        "\xd8\xaf\xd8\xb1\xd9\x87\xd9\x85 \xd9\x85\xd8\xba\xd8\xb1\xd8\xa8\xd9\x8a\0"
        "MCO\0"
        "Monaco\0"
+       "MDA\0"
+       "Moldova\0"
+       "Republica Moldova\0"
+       "MDL\0"
+       "Moldovan Leu\0"
+       "leu moldovenesc\0"
        "MNE\0"
        "Montenegro\0"
        "\xd0\xa6\xd1\x80\xd0\xbd\xd0\xb0 \xd0\x93\xd0\xbe\xd1\x80\xd0\xb0\0"
@@ -6932,6 +4008,19 @@ static const char locale_strings [] = {
        "\xd0\x9c\xd0\xb0\xd0\xba\xd0\xb5\xd0\xb4\xd0\xbe\xd0\xbd\xd0\xb8\xd1\x98\xd0\xb0\0"
        "Macedonian Denar\0"
        "\xd0\x9c\xd0\xb0\xd0\xba\xd0\xb5\xd0\xb4\xd0\xbe\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 \xd0\xb4\xd0\xb5\xd0\xbd\xd0\xb0\xd1\x80\0"
+       "MLI\0"
+       "Mali\0"
+       "MMR\0"
+       "Myanmar (Burma)\0"
+       "MMK\0"
+       "Myanmar Kyat\0"
+       "\xe1\x80\x99\xe1\x80\xbc\xe1\x80\x94\xe1\x80\xba\xe1\x80\x99\xe1\x80\xac\xe1\x80\x80\xe1\x80\xbb\xe1\x80\x95\xe1\x80\xba\0"
+       "MNG\0"
+       "Mongolia\0"
+       "\xd0\x9c\xd0\xbe\xd0\xbd\xd0\xb3\xd0\xbe\xd0\xbb\0"
+       "MNT\0"
+       "Mongolian Tugrik\0"
+       "\xd1\x82\xd3\xa9\xd0\xb3\xd1\x80\xd3\xa9\xd0\xb3\0"
        "MAC\0"
        "Macau SAR China\0"
        "\xe4\xb8\xad\xe5\x9b\xbd\xe6\xbe\xb3\xe9\x97\xa8\xe7\x89\xb9\xe5\x88\xab\xe8\xa1\x8c\xe6\x94\xbf\xe5\x8c\xba\0"
@@ -6939,13 +4028,18 @@ static const char locale_strings [] = {
        "Macanese Pataca\0"
        "\xe6\xbe\xb3\xe9\x96\x80\xe5\x85\x83\0"
        "Malta\0"
-       "Ewro\0"
+       "ewro\0"
        "MEX\0"
        "Mexico\0"
        "M\xc3\xa9xico\0"
        "MXN\0"
        "Mexican Peso\0"
        "peso mexicano\0"
+       "MYS\0"
+       "Malaysia\0"
+       "MYR\0"
+       "Malaysian Ringgit\0"
+       "Ringgit Malaysia\0"
        "NGA\0"
        "Nigeria\0"
        "Najeriya\0"
@@ -6989,13 +4083,14 @@ static const char locale_strings [] = {
        "Peru\0"
        "Per\xc3\xba\0"
        "PEN\0"
-       "Peruvian Nuevo Sol\0"
+       "Peruvian Sol\0"
        "nuevo sol peruano\0"
        "PHL\0"
        "Philippines\0"
        "Pilipinas\0"
        "PHP\0"
        "Philippine Peso\0"
+       "Piso ng Pilipinas\0"
        "PAK\0"
        "Pakistan\0"
        "\xd9\xbe\xd8\xa7\xda\xa9\xd8\xb3\xd8\xaa\xd8\xa7\xd9\x86\0"
@@ -7023,15 +4118,16 @@ static const char locale_strings [] = {
        "QAR\0"
        "Qatari Rial\0"
        "\xd8\xb1\xd9\x8a\xd8\xa7\xd9\x84 \xd9\x82\xd8\xb7\xd8\xb1\xd9\x8a\0"
+       "REU\0"
+       "R\xc3\xa9union\0"
+       "La R\xc3\xa9union\0"
        "ROU\0"
        "Romania\0"
        "Rom\xc3\xa2nia\0"
-       "RON\0"
        "Romanian Leu\0"
        "leu rom\xc3\xa2nesc\0"
        "Serbia\0"
        "\xd0\xa1\xd1\x80\xd0\xb1\xd0\xb8\xd1\x98\xd0\xb0\0"
-       "RSD\0"
        "Serbian Dinar\0"
        "Srpski dinar\0"
        "Russia\0"
@@ -7068,6 +4164,14 @@ static const char locale_strings [] = {
        "SVK\0"
        "Slovakia\0"
        "Slovensko\0"
+       "SEN\0"
+       "Senegal\0"
+       "S\xc3\xa9n\xc3\xa9gal\0"
+       "Somalia\0"
+       "Soomaaliya\0"
+       "SOS\0"
+       "Somali Shilling\0"
+       "Shilin soomaali\0"
        "El Salvador\0"
        "SYR\0"
        "Syria\0"
@@ -7076,7 +4180,6 @@ static const char locale_strings [] = {
        "Syrian Pound\0"
        "\xd9\x84\xd9\x8a\xd8\xb1\xd8\xa9 \xd8\xb3\xd9\x88\xd8\xb1\xd9\x8a\xd8\xa9\0"
        "Thailand\0"
-       "THB\0"
        "Thai Baht\0"
        "\xe0\xb8\x9a\xe0\xb8\xb2\xe0\xb8\x97\xe0\xb9\x84\xe0\xb8\x97\xe0\xb8\xa2\0"
        "TJK\0"
@@ -7085,12 +4188,17 @@ static const char locale_strings [] = {
        "TJS\0"
        "Tajikistani Somoni\0"
        "\xd0\xa1\xd0\xbe\xd0\xbc\xd0\xbe\xd0\xbd\xd3\xa3\0"
+       "TKM\0"
+       "Turkmenistan\0"
+       "T\xc3\xbcrkmenistan\0"
+       "Turkmenistani Manat\0"
+       "T\xc3\xbcrkmen manaty\0"
        "TUN\0"
        "Tunisia\0"
        "\xd8\xaa\xd9\x88\xd9\x86\xd8\xb3\0"
        "TND\0"
        "Tunisian Dinar\0"
-       "\xd8\xaf\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1\xd8\xaa\xd9\x88\xd9\x86\xd8\xb3\xd9\x8a\0"
+       "\xd8\xaf\xd9\x8a\xd9\x86\xd8\xa7\xd8\xb1 \xd8\xaa\xd9\x88\xd9\x86\xd8\xb3\xd9\x8a\0"
        "TUR\0"
        "Turkey\0"
        "T\xc3\xbcrkiye\0"
@@ -7098,15 +4206,15 @@ static const char locale_strings [] = {
        "Turkish Lira\0"
        "T\xc3\xbcrk Liras\xc4\xb1\0"
        "TTO\0"
-       "Trinidad and Tobago\0"
+       "Trinidad & Tobago\0"
        "TTD\0"
-       "Trinidad and Tobago Dollar\0"
+       "Trinidad & Tobago Dollar\0"
        "TWN\0"
        "Taiwan\0"
        "\xe5\x8f\xb0\xe6\xb9\xbe\0"
        "TWD\0"
        "New Taiwan Dollar\0"
-       "\xe6\x96\xb0\xe8\x87\xba\xe5\xb9\xa3\0"
+       "\xe6\x96\xb0\xe5\x8f\xb0\xe5\xb9\xa3\0"
        "Ukraine\0"
        "\xd0\xa3\xd0\xba\xd1\x80\xd0\xb0\xd1\x97\xd0\xbd\xd0\xb0\0"
        "UAH\0"
@@ -7122,8 +4230,8 @@ static const char locale_strings [] = {
        "Uzbekistan\0"
        "O\xca\xbbzbekiston\0"
        "UZS\0"
-       "Uzbekistan Som\0"
-       "O\xca\xbbzbekiston so\xca\xbbm\0"
+       "Uzbekistani Som\0"
+       "O\xe2\x80\x98zbekiston so\xe2\x80\x98mi\0"
        "VEN\0"
        "Venezuela\0"
        "VEF\0"
@@ -7150,5 +4258,4231 @@ static const char locale_strings [] = {
 };
 
 
+static const char patterns [] = {
+       "\0"
+       "dd MMMM\0"
+       "dd/MM/yy\0"
+       "dd/MM/yyyy\0"
+       "dd/MMMM/yyyy\0"
+       "dddd, dd MMMM, yyyy\0"
+       "hh:mm tt\0"
+       "HH:mm\0"
+       "hh:mm:ss tt\0"
+       "HH:mm:ss\0"
+       "MMMM, yyyy\0"
+       "d MMMM\0"
+       "d.M.yyyy '\xd0\xb3.'\0"
+       "dd.M.yyyy '\xd0\xb3.'\0"
+       "d.MM.yyyy '\xd0\xb3.'\0"
+       "dd.MM.yyyy '\xd0\xb3.'\0"
+       "dd MMMM yyyy '\xd0\xb3.'\0"
+       "d MMMM yyyy '\xd0\xb3.'\0"
+       "dddd, dd MMMM yyyy '\xd0\xb3.'\0"
+       "dddd, d MMMM yyyy '\xd0\xb3.'\0"
+       "H:mm\0"
+       "H:mm:ss\0"
+       "MMMM yyyy '\xd0\xb3.'\0"
+       "d/M/yyyy\0"
+       "d MMM yyyy\0"
+       "dddd, d MMMM 'de' yyyy\0"
+       "d MMMM 'de' yyyy\0"
+       "MMMM 'de' yyyy\0"
+       "M\xe6\x9c\x88\x64\xe6\x97\xa5\0"
+       "yyyy/M/d\0"
+       "yyyy-M-d\0"
+       "yyyy.M.d\0"
+       "yyyy/MM/dd\0"
+       "yyyy-MM-dd\0"
+       "yyyy.MM.dd\0"
+       "yy/M/d\0"
+       "yy-M-d\0"
+       "yy.M.d\0"
+       "yy/MM/dd\0"
+       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
+       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5', dddd\0"
+       "dddd, yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
+       "yyyy\xe5\xb9\xb4MMMd\xe6\x97\xa5\0"
+       "yyyy\xe5\xb9\xb4MMMd\xe6\x97\xa5, dddd\0"
+       "tt h:mm\0"
+       "tt hh:mm\0"
+       "tt h:mm:ss\0"
+       "tt hh:mm:ss\0"
+       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'\0"
+       "yyyy'\xe5\xb9\xb4'MMM\0"
+       "yyyy'\xe5\xb9\xb4'MMMM\0"
+       "yyyy.M\0"
+       "d. MMMM\0"
+       "dd.MM.yyyy\0"
+       "d. M. yyyy\0"
+       "dddd d. MMMM yyyy\0"
+       "d. MMMM yyyy\0"
+       "MMMM yyyy\0"
+       "dd-MM-yyyy\0"
+       "dd-MM-yy\0"
+       "yyyy MM dd\0"
+       "dd.MM.yy\0"
+       "dd. MMM. yyyy\0"
+       "dddd, d. MMMM yyyy\0"
+       "d. MMM. yyyy\0"
+       "HH:mm' Uhr'\0"
+       "HH:mm:ss' Uhr'\0"
+       "d/M/yy\0"
+       "dd/MMM/yyyy\0"
+       "dddd, d MMMM yyyy\0"
+       "d MMMM yyyy\0"
+       "h:mm tt\0"
+       "h:mm:ss tt\0"
+       "MMMM d\0"
+       "M/d/yyyy\0"
+       "M/d/yy\0"
+       "MM/dd/yy\0"
+       "MM/dd/yyyy\0"
+       "dd-MMM-yy\0"
+       "dddd, MMMM d, yyyy\0"
+       "MMMM d, yyyy\0"
+       "dddd, d MMMM, yyyy\0"
+       "d MMMM, yyyy\0"
+       "d 'de' MMMM\0"
+       "d/MM/yy\0"
+       "d-M-yy\0"
+       "dddd, d' de 'MMMM' de 'yyyy\0"
+       "dddd d' de 'MMMM' de 'yyyy\0"
+       "d' de 'MMMM' de 'yyyy\0"
+       "H.mm\0"
+       "HH.mm\0"
+       "HH'H'mm\0"
+       "H.mm.ss\0"
+       "HH.mm.ss\0"
+       "HH'H'mm.ss\0"
+       "MMMM' de 'yyyy\0"
+       "d.M.yyyy\0"
+       "dddd d MMMM yyyy\0"
+       "d MMM yy\0"
+       "HH' h 'mm\0"
+       "HH'h'mm\0"
+       "dd MMMM yyyy\0"
+       "dd-MMMM-yyyy\0"
+       "dd '\xd7\x91'MMMM yyyy\0"
+       "dd MMM yy\0"
+       "dddd dd MMMM yyyy\0"
+       "dddd dd '\xd7\x91'MMMM yyyy\0"
+       "ddd dd '\xd7\x91'MMMM yyyy\0"
+       "MMMM d.\0"
+       "yyyy. MM. dd.\0"
+       "yyyy. MMM d.\0"
+       "yyyy. MMMM d., dddd\0"
+       "yyyy. MMMM d.\0"
+       "yyyy. MMMM\0"
+       "d. MMM yyyy\0"
+       "dd.M.yy\0"
+       "d-MMM-yy\0"
+       "yyyy'\xe5\xb9\xb4'MM'\xe6\x9c\x88'dd'\xe6\x97\xa5'\0"
+       "yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5 'dddd\0"
+       "yyyy'\xe5\xb9\xb4'MM'\xe6\x9c\x88'dd'\xe6\x97\xa5 'dddd\0"
+       "yyyy'\xe5\xb9\xb4'MMM'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
+       "yyyy'\xe5\xb9\xb4'MMM'\xe6\x9c\x88'd'\xe6\x97\xa5 'dddd\0"
+       "yyyy'\xe5\xb9\xb4'MMMMd'\xe6\x97\xa5'\0"
+       "yyyy'\xe5\xb9\xb4'MMMMd'\xe6\x97\xa5 'dddd\0"
+       "yyyy'\xe5\xb9\xb4'MMM'\xe6\x9c\x88'\0"
+       "M\xec\x9b\x94 d\xec\x9d\xbc\0"
+       "yy-MM-dd\0"
+       "yyyy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc' dddd\0"
+       "yyyy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc'\0"
+       "yy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc' dddd\0"
+       "yy'\xeb\x85\x84' M'\xec\x9b\x94' d'\xec\x9d\xbc'\0"
+       "yyyy'\xeb\x85\x84' MM'\xec\x9b\x94' dd'\xec\x9d\xbc' dddd\0"
+       "yyyy'\xeb\x85\x84' MM'\xec\x9b\x94' dd'\xec\x9d\xbc'\0"
+       "yyyy'\xeb\x85\x84 'MMM'\xec\x9b\x94 'd'\xec\x9d\xbc 'dddd\0"
+       "yyyy'\xeb\x85\x84 'MMM'\xec\x9b\x94 'd'\xec\x9d\xbc'\0"
+       "yyyy'\xeb\x85\x84 'MMMM d'\xec\x9d\xbc 'dddd\0"
+       "yyyy'\xeb\x85\x84 'MMMM d'\xec\x9d\xbc'\0"
+       "yyyy'\xeb\x85\x84' M'\xec\x9b\x94'\0"
+       "yyyy'\xeb\x85\x84' MMM'\xec\x9b\x94'\0"
+       "yyyy'\xeb\x85\x84' MMMM\0"
+       "d-M-yyyy\0"
+       "dd.MMM.yyyy\0"
+       "HH.mm' uur'\0"
+       "HH:mm' uur'\0"
+       "HH.mm.ss' uur'\0"
+       "HH:mm:ss' uur'\0"
+       "d.MMMM.\0"
+       "d.M.yy\0"
+       "dddd, 'ils' d 'da' MMMM yyyy\0"
+       "d 'da' MMMM yyyy\0"
+       "d.M.yyyy.\0"
+       "d.M.yy.\0"
+       "d. M. yyyy.\0"
+       "dd.MM.yyyy.\0"
+       "d. M. yy.\0"
+       "dd.MM.yy.\0"
+       "dd. MM. yy.\0"
+       "d. MMMM yyyy.\0"
+       "dd. MMMM yyyy.\0"
+       "dddd, d. MMMM yyyy.\0"
+       "'den 'd MMMM\0"
+       "'den 'd MMMM yyyy\0"
+       "dddd' den 'd MMMM yyyy\0"
+       "'kl 'H:mm\0"
+       "'kl 'H:mm:ss\0"
+       "dd MMM yyyy\0"
+       "ddd d MMMM yyyy\0"
+       "'\xe0\xb8\xa7\xe0\xb8\xb1\xe0\xb8\x99'dddd'\xe0\xb8\x97\xe0\xb8\xb5\xe0\xb9\x88' d MMMM gg yyyy\0"
+       "d.MM.yyyy\0"
+       "d MMMM yyyy dddd\0"
+       "dd MMMM, yyyy\0"
+       "dddd, dd MMMM yyyy\0"
+       "d MMMM yyyy' \xd1\x80.'\0"
+       "MMMM yyyy' \xd1\x80.'\0"
+       "MMMM yyyy \xd0\xb3.\0"
+       "d. MM. yyyy\0"
+       "dddd, dd. MMMM yyyy\0"
+       "dd. MMMM yyyy\0"
+       "H:mm.ss\0"
+       "yyyy. 'gada' d. MMM\0"
+       "dddd, yyyy. 'gada' d. MMMM\0"
+       "yyyy. 'gada' d. MMMM\0"
+       "yyyy. 'g'. MMMM\0"
+       "yyyy 'm'. MMMM d 'd'., dddd\0"
+       "yyyy 'm'. MMMM d 'd'.\0"
+       "yyyy MMMM\0"
+       "d MMMM yyyy' \xd1\x81.'\0"
+       "dd MMMM yyyy' \xd1\x81.'\0"
+       "d/MM/yyyy\0"
+       "d/MMM/yyyy\0"
+       "d-MMM-yyyy\0"
+       "dd-MMM-yyyy\0"
+       "ddd, d-MMMM-yyyy\0"
+       "ddd, dd-MMMM-yyyy\0"
+       "d MMMM yyyy, dddd\0"
+       "yyyy MMM d\0"
+       "yyyy('e')'ko' MMMM d, dddd\0"
+       "yyyy('e')'ko' MMMM d\0"
+       "yyyy('e')'ko' MMMM\0"
+       "H:mm 'hod\xc5\xba'.\0"
+       "dd.M.yyyy\0"
+       "MMMM yyyy '\xd0\xb3'.\0"
+       "yyyy MMMM d, dddd\0"
+       "yyyy MMMM d\0"
+       "MMM d, yyyy\0"
+       "d MMM, yyyy\0"
+       "d 'ta'\xe2\x80\x99 MMMM\0"
+       "dddd, d 'ta'\xe2\x80\x99 MMMM yyyy\0"
+       "d 'ta'\xe2\x80\x99 MMMM yyyy\0"
+       "MMMM 'ta'\xe2\x80\x99 yyyy\0"
+       "yyyy, dd-MMM\0"
+       "d-MMMM\0"
+       "d-MMM yy\0"
+       "dd-MMMM yyyy'-\xd0\xb6.'\0"
+       "MMMM yyyy'-\xd0\xb6.'\0"
+       "dd.MM.yy '\xc3\xbd.'\0"
+       "yyyy'-nji \xc3\xbdyly\xc5\x88 'd'-nji 'MMMM\0"
+       "yyyy '\xc3\xbd.' MMMM\0"
+       "dddd, yyyy MMMM dd\0"
+       "tt hh.mm\0"
+       "tt h.mm\0"
+       "tt hh.mm.ss\0"
+       "tt h.mm.ss\0"
+       "dd MMMM yyyy dddd\0"
+       "MMMM dd\0"
+       "yyyy,MMMM dd, dddd\0"
+       "MMMM,yy\0"
+       "MMMM,yyyy\0"
+       "dddd, yyyy '\xd0\xbe\xd0\xbd\xd1\x8b' MM '\xd1\x81\xd0\xb0\xd1\x80\xd1\x8b\xd0\xbd' d\0"
+       "yyyy '\xd0\xbe\xd0\xbd\xd1\x8b' MM '\xd1\x81\xd0\xb0\xd1\x80\xd1\x8b\xd0\xbd' d\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8bM\xe0\xbd\x9a\xe0\xbd\xba\xe0\xbd\xa6\xe0\xbc\x8b\x64\0"
+       "yyyy'\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3' M'\xe0\xbd\x9a\xe0\xbd\xba\xe0\xbd\xa6' d\0"
+       "yyyy'\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3' M'\xe0\xbd\x9a\xe0\xbd\xba\xe0\xbd\xa6' d dddd\0"
+       "yyyy\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3 MMM d\0"
+       "yyyy\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3 MMM d dddd\0"
+       "yyyy'\xe0\xbd\xa3\xe0\xbd\xbc\xe0\xbd\xa0\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b' M\0"
+       "'\xe1\x9e\x81\xe1\x9f\x82' MM '\xe1\x9e\x86\xe1\x9f\x92\xe1\x9e\x93\xe1\x9e\xb6\xe1\x9f\x86' yyyy\0"
+       "dddd \xe0\xba\x97\xe0\xba\xb5 d MMMM gg yyyy\0"
+       "dddd\xe1\x81\x8a dd MMMM yyyy\0"
+       "dddd, MMMM dd,yyyy\0"
+       "MMMM dd,yyyy\0"
+       "dddd, MMMM dd, yyyy\0"
+       "MMMM dd, yyyy\0"
+       "dd. MMMM\0"
+       "dd. MMMMyyyy\0"
+       "dddd,' den 'd. MMMM yyyy\0"
+       "dddd,' den 'dd. MMMM yyyy\0"
+       "H.mm' Auer'\0"
+       "H:mm:ss' Auer'\0"
+       "HH:mm:ss' Auer'\0"
+       "MMMM d'.-at'\0"
+       "MMMM d'.-at, 'yyyy\0"
+       "dddd\xe1\x8d\xa1 dd MMMM \xe1\x88\x98\xe1\x8b\x93\xe1\x88\x8d\xe1\x89\xb2 yyyy gg\0"
+       "M\xe2\x80\x99 \xea\x86\xaa\xe2\x80\x99\x64\xe2\x80\x99 \xea\x91\x8d\xe2\x80\x99\0"
+       "yyyy'\xea\x88\x8e' M'\xea\x86\xaa' d'\xea\x91\x8d'\0"
+       "dddd, yyyy'\xea\x88\x8e' M'\xea\x86\xaa' d'\xea\x91\x8d'\0"
+       "yyyy'\xea\x88\x8e' M'\xea\x86\xaa' d'\xea\x91\x8d', dddd\0"
+       "yyyy\xea\x88\x8e MMM d\xea\x91\x8d\0"
+       "dddd, yyyy\xea\x88\x8e MMM d\xea\x91\x8d\0"
+       "yyyy'\xea\x88\x8e' M'\xea\x86\xaa'\0"
+       "yyyy-'\xd9\x8a\xd9\x89\xd9\x84' d-MMMM\0"
+       "yyyy-'\xd9\x8a\xd9\x89\xd9\x84' d-MMMM dddd\0"
+       "yyyy-'\xd9\x8a\xd9\x89\xd9\x84\xd9\x89' MMM'\xd9\x86\xd9\x89\xda\xad' d'-\xd9\x83\xdb\x88\xd9\x86\xd9\x89'\0"
+       "yyyy-'\xd9\x8a\xd9\x89\xd9\x84\xd9\x89' MMM'\xd9\x86\xd9\x89\xda\xad' d'-\xd9\x83\xdb\x88\xd9\x86\xd9\x89' dddd\0"
+       "yyyy-M-d dddd\0"
+       "yyyy-'\xd9\x8a\xd9\x89\xd9\x84\xd9\x89' MMMM\0"
+       "MMMM d \xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d\0"
+       "yyyy MM d\0"
+       "dd yyyy MM d\0"
+       "dddd, yyyy '\xd1\x81.' MMMM d '\xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d'\0"
+       "yyyy '\xd1\x81.' MMMM d '\xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d'\0"
+       "dddd, MMMM d '\xd0\xba\xd2\xaf\xd0\xbd\xd1\x8d' yyyy '\xd1\x81.'\0"
+       "yyyy '\xd1\x81.' MMMM\0"
+       "d'mh' MMMM\0"
+       "dddd, d'mh' MMMM yyyy\0"
+       "d'mh' MMMM yyyy\0"
+       "dddd yyyy\xe5\xb9\xb4MMMd\xe6\x97\xa5\0"
+       "dddd\xe1\x8d\xa3 dd MMMM \xe1\x88\x98\xe1\x8b\x93\xe1\x88\x8d\xe1\x89\xb2 yyyy gg\0"
+       "dd.MMMM.\0"
+       "dd.MMMM\0"
+       "MMMM.yyyy\0"
+       "H.mm' u.'\0"
+       "yy.MM.dd\0"
+       "d MMM yyyy '\xd0\xb3'.\0"
+       "dddd, d MMMM yyyy '\xd0\xb3'.\0"
+       "d MMMM yyyy '\xd0\xb3'.\0"
+       "d. M. yy\0"
+       "H:mm' g\xc3\xb3\xc5\xba.'\0"
+       "'zeger 'H:mm\0"
+       "H:mm:ss' g\xc3\xb3\xc5\xba.'\0"
+       "'zeger 'H:mm:ss\0"
+       "MMMM d'. b.'\0"
+       "dddd, MMMM d'. b. 'yyyy\0"
+       "MMMM d'. b. 'yyyy\0"
+       "h.mm tt\0"
+       "h.mm.ss tt\0"
+       "yy MM dd\0"
+       "dddd', 'MMMM d'. b. 'yyyy\0"
+       "M/dd/yy\0"
+       "MMMM-dd-yy\0"
+       "dd-MMMM\0"
+       "dddd, d 'de' MMMM 'de' yyyy\0"
+       "d 'de' MMMM 'de' yyyy\0"
+       "d. MMM yyyy.\0"
+       "MMMM yyyy.\0"
+       "dddd yyyy'\xe5\xb9\xb4'M'\xe6\x9c\x88'd'\xe6\x97\xa5'\0"
+       "dddd yyyy MM dd\0"
+       "d/MMMM\0"
+       "MMMM/yyyy\0"
+       "dd. MMM. yyyy.\0"
+       "dddd, dd. MMMM yyyy.\0"
+       "MMMM/dd\0"
+       "dd. MM. yy\0"
+       "MMMM d'. p. '\0"
+       "MMMM d'. p. 'yyyy\0"
+       "MMMM-yyyy\0"
+       "dd MMM,yyyy\0"
+       "yyyy-MM-dd.\0"
+       "dddd dd 'de' MMMM 'de' yyyy\0"
+       "dd 'de' MMMM 'de' yyyy\0"
+};
+
+
+static const char datetime_strings [] = {
+       "\0"
+       "\xd9\x85\xd8\xad\xd8\xb1\xd9\x85\0"
+       "\xd8\xb5\xd9\x81\xd8\xb1\0"
+       "\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\0"
+       "\xd8\xb1\xd8\xa8\xd9\x8a\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xa2\xd8\xae\xd8\xb1\0"
+       "\xd8\xac\xd9\x85\xd8\xa7\xd8\xaf\xd9\x89 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\xd9\x89\0"
+       "\xd8\xac\xd9\x85\xd8\xa7\xd8\xaf\xd9\x89 \xd8\xa7\xd9\x84\xd8\xa2\xd8\xae\xd8\xb1\xd8\xa9\0"
+       "\xd8\xb1\xd8\xac\xd8\xa8\0"
+       "\xd8\xb4\xd8\xb9\xd8\xa8\xd8\xa7\xd9\x86\0"
+       "\xd8\xb1\xd9\x85\xd8\xb6\xd8\xa7\xd9\x86\0"
+       "\xd8\xb4\xd9\x88\xd8\xa7\xd9\x84\0"
+       "\xd8\xb0\xd9\x88 \xd8\xa7\xd9\x84\xd9\x82\xd8\xb9\xd8\xaf\xd8\xa9\0"
+       "\xd8\xb0\xd9\x88 \xd8\xa7\xd9\x84\xd8\xad\xd8\xac\xd8\xa9\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd1\x8f\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xbd\xd0\xb8\xd0\xba\0"
+       "\xd0\xb2\xd1\x82\xd0\xbe\xd1\x80\xd0\xbd\xd0\xb8\xd0\xba\0"
+       "\xd1\x81\xd1\x80\xd1\x8f\xd0\xb4\xd0\xb0\0"
+       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd1\x8a\xd1\x80\xd1\x82\xd1\x8a\xd0\xba\0"
+       "\xd0\xbf\xd0\xb5\xd1\x82\xd1\x8a\xd0\xba\0"
+       "\xd1\x81\xd1\x8a\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
+       "\xd0\xbd\xd0\xb4\0"
+       "\xd0\xbf\xd0\xbd\0"
+       "\xd0\xb2\xd1\x82\0"
+       "\xd1\x81\xd1\x80\0"
+       "\xd1\x87\xd1\x82\0"
+       "\xd0\xbf\xd1\x82\0"
+       "\xd1\x81\xd0\xb1\0"
+       "\xd0\xbd\0"
+       "\xd0\xbf\0"
+       "\xd0\xb2\0"
+       "\xd1\x81\0"
+       "\xd1\x87\0"
+       "\xd1\x8f\xd0\xbd\xd1\x83\xd0\xb0\xd1\x80\xd0\xb8\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd1\x83\xd0\xb0\xd1\x80\xd0\xb8\0"
+       "\xd0\xbc\xd0\xb0\xd1\x80\xd1\x82\0"
+       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb8\xd0\xbb\0"
+       "\xd0\xbc\xd0\xb0\xd0\xb9\0"
+       "\xd1\x8e\xd0\xbd\xd0\xb8\0"
+       "\xd1\x8e\xd0\xbb\xd0\xb8\0"
+       "\xd0\xb0\xd0\xb2\xd0\xb3\xd1\x83\xd1\x81\xd1\x82\0"
+       "\xd1\x81\xd0\xb5\xd0\xbf\xd1\x82\xd0\xb5\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\xd0\xbe\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
+       "\xd0\xbd\xd0\xbe\xd0\xb5\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
+       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb5\xd0\xbc\xd0\xb2\xd1\x80\xd0\xb8\0"
+       "\xd1\x8f\xd0\xbd\xd1\x83\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2\0"
+       "\xd0\xb0\xd0\xbf\xd1\x80\0"
+       "\xd0\xb0\xd0\xb2\xd0\xb3\0"
+       "\xd1\x81\xd0\xb5\xd0\xbf\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\0"
+       "\xd0\xbd\xd0\xbe\xd0\xb5\0"
+       "\xd0\xb4\xd0\xb5\xd0\xba\0"
+       "diumenge\0"
+       "dilluns\0"
+       "dimarts\0"
+       "dimecres\0"
+       "dijous\0"
+       "divendres\0"
+       "dissabte\0"
+       "dg.\0"
+       "dl.\0"
+       "dt.\0"
+       "dc.\0"
+       "dj.\0"
+       "dv.\0"
+       "ds.\0"
+       "dg\0"
+       "dl\0"
+       "dt\0"
+       "dc\0"
+       "dj\0"
+       "dv\0"
+       "ds\0"
+       "gener\0"
+       "febrer\0"
+       "mar\xc3\xa7\0"
+       "abril\0"
+       "maig\0"
+       "juny\0"
+       "juliol\0"
+       "agost\0"
+       "setembre\0"
+       "octubre\0"
+       "novembre\0"
+       "desembre\0"
+       "de gener\0"
+       "de febrer\0"
+       "de mar\xc3\xa7\0"
+       "d\xe2\x80\x99\x61\x62ril\0"
+       "de maig\0"
+       "de juny\0"
+       "de juliol\0"
+       "d\xe2\x80\x99\x61gost\0"
+       "de setembre\0"
+       "d\xe2\x80\x99octubre\0"
+       "de novembre\0"
+       "de desembre\0"
+       "gen.\0"
+       "febr.\0"
+       "abr.\0"
+       "jul.\0"
+       "ag.\0"
+       "set.\0"
+       "oct.\0"
+       "nov.\0"
+       "des.\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe6\x97\xa5\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xb8\x80\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xba\x8c\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xb8\x89\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe5\x9b\x9b\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe4\xba\x94\0"
+       "\xe6\x98\x9f\xe6\x9c\x9f\xe5\x85\xad\0"
+       "\xe5\x91\xa8\xe6\x97\xa5\0"
+       "\xe5\x91\xa8\xe4\xb8\x80\0"
+       "\xe5\x91\xa8\xe4\xba\x8c\0"
+       "\xe5\x91\xa8\xe4\xb8\x89\0"
+       "\xe5\x91\xa8\xe5\x9b\x9b\0"
+       "\xe5\x91\xa8\xe4\xba\x94\0"
+       "\xe5\x91\xa8\xe5\x85\xad\0"
+       "\xe6\x97\xa5\0"
+       "\xe4\xb8\x80\0"
+       "\xe4\xba\x8c\0"
+       "\xe4\xb8\x89\0"
+       "\xe5\x9b\x9b\0"
+       "\xe4\xba\x94\0"
+       "\xe5\x85\xad\0"
+       "\xe4\xb8\x80\xe6\x9c\x88\0"
+       "\xe4\xba\x8c\xe6\x9c\x88\0"
+       "\xe4\xb8\x89\xe6\x9c\x88\0"
+       "\xe5\x9b\x9b\xe6\x9c\x88\0"
+       "\xe4\xba\x94\xe6\x9c\x88\0"
+       "\xe5\x85\xad\xe6\x9c\x88\0"
+       "\xe4\xb8\x83\xe6\x9c\x88\0"
+       "\xe5\x85\xab\xe6\x9c\x88\0"
+       "\xe4\xb9\x9d\xe6\x9c\x88\0"
+       "\xe5\x8d\x81\xe6\x9c\x88\0"
+       "\xe5\x8d\x81\xe4\xb8\x80\xe6\x9c\x88\0"
+       "\xe5\x8d\x81\xe4\xba\x8c\xe6\x9c\x88\0"
+       "1\xe6\x9c\x88\0"
+       "2\xe6\x9c\x88\0"
+       "3\xe6\x9c\x88\0"
+       "4\xe6\x9c\x88\0"
+       "5\xe6\x9c\x88\0"
+       "6\xe6\x9c\x88\0"
+       "7\xe6\x9c\x88\0"
+       "8\xe6\x9c\x88\0"
+       "9\xe6\x9c\x88\0"
+       "10\xe6\x9c\x88\0"
+       "11\xe6\x9c\x88\0"
+       "12\xe6\x9c\x88\0"
+       "ned\xc4\x9ble\0"
+       "pond\xc4\x9bl\xc3\xad\0"
+       "\xc3\xbater\xc3\xbd\0"
+       "st\xc5\x99\x65\x64\x61\0"
+       "\xc4\x8dtvrtek\0"
+       "p\xc3\xa1tek\0"
+       "sobota\0"
+       "ne\0"
+       "po\0"
+       "\xc3\xbat\0"
+       "st\0"
+       "\xc4\x8dt\0"
+       "p\xc3\xa1\0"
+       "so\0"
+       "N\0"
+       "P\0"
+       "\xc3\x9a\0"
+       "S\0"
+       "\xc4\x8c\0"
+       "leden\0"
+       "\xc3\xbanor\0"
+       "b\xc5\x99\x65zen\0"
+       "duben\0"
+       "kv\xc4\x9bten\0"
+       "\xc4\x8d\x65rven\0"
+       "\xc4\x8d\x65rvenec\0"
+       "srpen\0"
+       "z\xc3\xa1\xc5\x99\xc3\xad\0"
+       "\xc5\x99\xc3\xadjen\0"
+       "listopad\0"
+       "prosinec\0"
+       "ledna\0"
+       "\xc3\xbanora\0"
+       "b\xc5\x99\x65zna\0"
+       "dubna\0"
+       "kv\xc4\x9btna\0"
+       "\xc4\x8d\x65rvna\0"
+       "\xc4\x8d\x65rvence\0"
+       "srpna\0"
+       "\xc5\x99\xc3\xadjna\0"
+       "listopadu\0"
+       "prosince\0"
+       "led\0"
+       "\xc3\xbano\0"
+       "b\xc5\x99\x65\0"
+       "dub\0"
+       "kv\xc4\x9b\0"
+       "\xc4\x8dvn\0"
+       "\xc4\x8dvc\0"
+       "srp\0"
+       "z\xc3\xa1\xc5\x99\0"
+       "\xc5\x99\xc3\xadj\0"
+       "lis\0"
+       "pro\0"
+       "s\xc3\xb8ndag\0"
+       "mandag\0"
+       "tirsdag\0"
+       "onsdag\0"
+       "torsdag\0"
+       "fredag\0"
+       "l\xc3\xb8rdag\0"
+       "s\xc3\xb8n\0"
+       "man\0"
+       "tir\0"
+       "ons\0"
+       "tor\0"
+       "fre\0"
+       "l\xc3\xb8r\0"
+       "M\0"
+       "T\0"
+       "O\0"
+       "F\0"
+       "L\0"
+       "januar\0"
+       "februar\0"
+       "marts\0"
+       "april\0"
+       "maj\0"
+       "juni\0"
+       "juli\0"
+       "august\0"
+       "september\0"
+       "oktober\0"
+       "november\0"
+       "december\0"
+       "jan.\0"
+       "feb.\0"
+       "mar.\0"
+       "apr.\0"
+       "jun.\0"
+       "aug.\0"
+       "sep.\0"
+       "okt.\0"
+       "dec.\0"
+       "Sonntag\0"
+       "Montag\0"
+       "Dienstag\0"
+       "Mittwoch\0"
+       "Donnerstag\0"
+       "Freitag\0"
+       "Samstag\0"
+       "So\0"
+       "Mo\0"
+       "Di\0"
+       "Mi\0"
+       "Do\0"
+       "Fr\0"
+       "Sa\0"
+       "D\0"
+       "Januar\0"
+       "Februar\0"
+       "M\xc3\xa4rz\0"
+       "April\0"
+       "Mai\0"
+       "Juni\0"
+       "Juli\0"
+       "August\0"
+       "September\0"
+       "Oktober\0"
+       "November\0"
+       "Dezember\0"
+       "Jan\0"
+       "Feb\0"
+       "M\xc3\xa4r\0"
+       "Apr\0"
+       "Jun\0"
+       "Jul\0"
+       "Aug\0"
+       "Sep\0"
+       "Okt\0"
+       "Nov\0"
+       "Dez\0"
+       "\xce\x9a\xcf\x85\xcf\x81\xce\xb9\xce\xb1\xce\xba\xce\xae\0"
+       "\xce\x94\xce\xb5\xcf\x85\xcf\x84\xce\xad\xcf\x81\xce\xb1\0"
+       "\xce\xa4\xcf\x81\xce\xaf\xcf\x84\xce\xb7\0"
+       "\xce\xa4\xce\xb5\xcf\x84\xce\xac\xcf\x81\xcf\x84\xce\xb7\0"
+       "\xce\xa0\xce\xad\xce\xbc\xcf\x80\xcf\x84\xce\xb7\0"
+       "\xce\xa0\xce\xb1\xcf\x81\xce\xb1\xcf\x83\xce\xba\xce\xb5\xcf\x85\xce\xae\0"
+       "\xce\xa3\xce\xac\xce\xb2\xce\xb2\xce\xb1\xcf\x84\xce\xbf\0"
+       "\xce\x9a\xcf\x85\xcf\x81\0"
+       "\xce\x94\xce\xb5\xcf\x85\0"
+       "\xce\xa4\xcf\x81\xce\xaf\0"
+       "\xce\xa4\xce\xb5\xcf\x84\0"
+       "\xce\xa0\xce\xad\xce\xbc\0"
+       "\xce\xa0\xce\xb1\xcf\x81\0"
+       "\xce\xa3\xce\xac\xce\xb2\0"
+       "\xce\x9a\0"
+       "\xce\x94\0"
+       "\xce\xa4\0"
+       "\xce\xa0\0"
+       "\xce\xa3\0"
+       "\xce\x99\xce\xb1\xce\xbd\xce\xbf\xcf\x85\xce\xac\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\xa6\xce\xb5\xce\xb2\xcf\x81\xce\xbf\xcf\x85\xce\xac\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x9c\xce\xac\xcf\x81\xcf\x84\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x91\xcf\x80\xcf\x81\xce\xaf\xce\xbb\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x9c\xce\xac\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x99\xce\xbf\xcf\x8d\xce\xbd\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x99\xce\xbf\xcf\x8d\xce\xbb\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x91\xcf\x8d\xce\xb3\xce\xbf\xcf\x85\xcf\x83\xcf\x84\xce\xbf\xcf\x82\0"
+       "\xce\xa3\xce\xb5\xcf\x80\xcf\x84\xce\xad\xce\xbc\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x9f\xce\xba\xcf\x84\xcf\x8e\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x9d\xce\xbf\xce\xad\xce\xbc\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x94\xce\xb5\xce\xba\xce\xad\xce\xbc\xce\xb2\xcf\x81\xce\xb9\xce\xbf\xcf\x82\0"
+       "\xce\x99\xce\xb1\xce\xbd\xce\xbf\xcf\x85\xce\xb1\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\xa6\xce\xb5\xce\xb2\xcf\x81\xce\xbf\xcf\x85\xce\xb1\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x9c\xce\xb1\xcf\x81\xcf\x84\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x91\xcf\x80\xcf\x81\xce\xb9\xce\xbb\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x9c\xce\xb1\xce\x90\xce\xbf\xcf\x85\0"
+       "\xce\x99\xce\xbf\xcf\x85\xce\xbd\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x99\xce\xbf\xcf\x85\xce\xbb\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x91\xcf\x85\xce\xb3\xce\xbf\xcf\x8d\xcf\x83\xcf\x84\xce\xbf\xcf\x85\0"
+       "\xce\xa3\xce\xb5\xcf\x80\xcf\x84\xce\xb5\xce\xbc\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x9f\xce\xba\xcf\x84\xcf\x89\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x9d\xce\xbf\xce\xb5\xce\xbc\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x94\xce\xb5\xce\xba\xce\xb5\xce\xbc\xce\xb2\xcf\x81\xce\xaf\xce\xbf\xcf\x85\0"
+       "\xce\x99\xce\xb1\xce\xbd\0"
+       "\xce\xa6\xce\xb5\xce\xb2\0"
+       "\xce\x9c\xce\xac\xcf\x81\0"
+       "\xce\x91\xcf\x80\xcf\x81\0"
+       "\xce\x9c\xce\xac\xce\xb9\0"
+       "\xce\x99\xce\xbf\xcf\x8d\xce\xbd\0"
+       "\xce\x99\xce\xbf\xcf\x8d\xce\xbb\0"
+       "\xce\x91\xcf\x8d\xce\xb3\0"
+       "\xce\xa3\xce\xb5\xcf\x80\0"
+       "\xce\x9f\xce\xba\xcf\x84\0"
+       "\xce\x9d\xce\xbf\xce\xad\0"
+       "\xce\x94\xce\xb5\xce\xba\0"
+       "Sunday\0"
+       "Monday\0"
+       "Tuesday\0"
+       "Wednesday\0"
+       "Thursday\0"
+       "Friday\0"
+       "Saturday\0"
+       "Sun\0"
+       "Mon\0"
+       "Tue\0"
+       "Wed\0"
+       "Thu\0"
+       "Fri\0"
+       "Sat\0"
+       "W\0"
+       "January\0"
+       "February\0"
+       "March\0"
+       "May\0"
+       "June\0"
+       "July\0"
+       "October\0"
+       "December\0"
+       "Mar\0"
+       "Oct\0"
+       "Dec\0"
+       "domingo\0"
+       "lunes\0"
+       "martes\0"
+       "mi\xc3\xa9rcoles\0"
+       "jueves\0"
+       "viernes\0"
+       "s\xc3\xa1\x62\x61\x64o\0"
+       "dom.\0"
+       "lun.\0"
+       "mi\xc3\xa9.\0"
+       "jue.\0"
+       "vie.\0"
+       "s\xc3\xa1\x62.\0"
+       "X\0"
+       "J\0"
+       "V\0"
+       "enero\0"
+       "febrero\0"
+       "marzo\0"
+       "mayo\0"
+       "junio\0"
+       "julio\0"
+       "agosto\0"
+       "septiembre\0"
+       "noviembre\0"
+       "diciembre\0"
+       "ene.\0"
+       "may.\0"
+       "ago.\0"
+       "sept.\0"
+       "dic.\0"
+       "sunnuntaina\0"
+       "maanantaina\0"
+       "tiistaina\0"
+       "keskiviikkona\0"
+       "torstaina\0"
+       "perjantaina\0"
+       "lauantaina\0"
+       "su\0"
+       "ma\0"
+       "ti\0"
+       "ke\0"
+       "to\0"
+       "pe\0"
+       "la\0"
+       "K\0"
+       "tammikuu\0"
+       "helmikuu\0"
+       "maaliskuu\0"
+       "huhtikuu\0"
+       "toukokuu\0"
+       "kes\xc3\xa4kuu\0"
+       "hein\xc3\xa4kuu\0"
+       "elokuu\0"
+       "syyskuu\0"
+       "lokakuu\0"
+       "marraskuu\0"
+       "joulukuu\0"
+       "tammikuuta\0"
+       "helmikuuta\0"
+       "maaliskuuta\0"
+       "huhtikuuta\0"
+       "toukokuuta\0"
+       "kes\xc3\xa4kuuta\0"
+       "hein\xc3\xa4kuuta\0"
+       "elokuuta\0"
+       "syyskuuta\0"
+       "lokakuuta\0"
+       "marraskuuta\0"
+       "joulukuuta\0"
+       "tammi\0"
+       "helmi\0"
+       "maalis\0"
+       "huhti\0"
+       "touko\0"
+       "kes\xc3\xa4\0"
+       "hein\xc3\xa4\0"
+       "elo\0"
+       "syys\0"
+       "loka\0"
+       "marras\0"
+       "joulu\0"
+       "dimanche\0"
+       "lundi\0"
+       "mardi\0"
+       "mercredi\0"
+       "jeudi\0"
+       "vendredi\0"
+       "samedi\0"
+       "dim.\0"
+       "mer.\0"
+       "jeu.\0"
+       "ven.\0"
+       "sam.\0"
+       "janvier\0"
+       "f\xc3\xa9vrier\0"
+       "mars\0"
+       "avril\0"
+       "mai\0"
+       "juin\0"
+       "juillet\0"
+       "ao\xc3\xbbt\0"
+       "septembre\0"
+       "octobre\0"
+       "d\xc3\xa9\x63\x65mbre\0"
+       "janv.\0"
+       "f\xc3\xa9vr.\0"
+       "avr.\0"
+       "juil.\0"
+       "d\xc3\xa9\x63.\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa8\xd7\x90\xd7\xa9\xd7\x95\xd7\x9f\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\xa0\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\x9c\xd7\x99\xd7\xa9\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa8\xd7\x91\xd7\x99\xd7\xa2\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x97\xd7\x9e\xd7\x99\xd7\xa9\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\x99\xd7\xa9\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\xa9\xd7\x91\xd7\xaa\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x90\xd7\xb3\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x91\xd7\xb3\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x92\xd7\xb3\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x93\xd7\xb3\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x94\xd7\xb3\0"
+       "\xd7\x99\xd7\x95\xd7\x9d \xd7\x95\xd7\xb3\0"
+       "\xd7\xa9\xd7\x91\xd7\xaa\0"
+       "\xd7\x90\xd7\xb3\0"
+       "\xd7\x91\xd7\xb3\0"
+       "\xd7\x92\xd7\xb3\0"
+       "\xd7\x93\xd7\xb3\0"
+       "\xd7\x94\xd7\xb3\0"
+       "\xd7\x95\xd7\xb3\0"
+       "\xd7\xa9\xd7\xb3\0"
+       "\xd7\x99\xd7\xa0\xd7\x95\xd7\x90\xd7\xa8\0"
+       "\xd7\xa4\xd7\x91\xd7\xa8\xd7\x95\xd7\x90\xd7\xa8\0"
+       "\xd7\x9e\xd7\xa8\xd7\xa5\0"
+       "\xd7\x90\xd7\xa4\xd7\xa8\xd7\x99\xd7\x9c\0"
+       "\xd7\x9e\xd7\x90\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\xa0\xd7\x99\0"
+       "\xd7\x99\xd7\x95\xd7\x9c\xd7\x99\0"
+       "\xd7\x90\xd7\x95\xd7\x92\xd7\x95\xd7\xa1\xd7\x98\0"
+       "\xd7\xa1\xd7\xa4\xd7\x98\xd7\x9e\xd7\x91\xd7\xa8\0"
+       "\xd7\x90\xd7\x95\xd7\xa7\xd7\x98\xd7\x95\xd7\x91\xd7\xa8\0"
+       "\xd7\xa0\xd7\x95\xd7\x91\xd7\x9e\xd7\x91\xd7\xa8\0"
+       "\xd7\x93\xd7\xa6\xd7\x9e\xd7\x91\xd7\xa8\0"
+       "\xd7\x99\xd7\xa0\xd7\x95\xd7\xb3\0"
+       "\xd7\xa4\xd7\x91\xd7\xa8\xd7\xb3\0"
+       "\xd7\x90\xd7\xa4\xd7\xa8\xd7\xb3\0"
+       "\xd7\x90\xd7\x95\xd7\x92\xd7\xb3\0"
+       "\xd7\xa1\xd7\xa4\xd7\x98\xd7\xb3\0"
+       "\xd7\x90\xd7\x95\xd7\xa7\xd7\xb3\0"
+       "\xd7\xa0\xd7\x95\xd7\x91\xd7\xb3\0"
+       "\xd7\x93\xd7\xa6\xd7\x9e\xd7\xb3\0"
+       "vas\xc3\xa1rnap\0"
+       "h\xc3\xa9tf\xc5\x91\0"
+       "kedd\0"
+       "szerda\0"
+       "cs\xc3\xbct\xc3\xb6rt\xc3\xb6k\0"
+       "p\xc3\xa9ntek\0"
+       "szombat\0"
+       "H\0"
+       "Sze\0"
+       "Cs\0"
+       "Szo\0"
+       "Sz\0"
+       "janu\xc3\xa1r\0"
+       "febru\xc3\xa1r\0"
+       "m\xc3\xa1rcius\0"
+       "\xc3\xa1prilis\0"
+       "m\xc3\xa1jus\0"
+       "j\xc3\xbanius\0"
+       "j\xc3\xbalius\0"
+       "augusztus\0"
+       "szeptember\0"
+       "okt\xc3\xb3\x62\x65r\0"
+       "m\xc3\xa1rc.\0"
+       "\xc3\xa1pr.\0"
+       "m\xc3\xa1j.\0"
+       "j\xc3\xban.\0"
+       "j\xc3\xbal.\0"
+       "szept.\0"
+       "sunnudagur\0"
+       "m\xc3\xa1nudagur\0"
+       "\xc3\xberi\xc3\xb0judagur\0"
+       "mi\xc3\xb0vikudagur\0"
+       "fimmtudagur\0"
+       "f\xc3\xb6studagur\0"
+       "laugardagur\0"
+       "sun.\0"
+       "m\xc3\xa1n.\0"
+       "\xc3\xberi.\0"
+       "mi\xc3\xb0.\0"
+       "fim.\0"
+       "f\xc3\xb6s.\0"
+       "lau.\0"
+       "\xc3\x9e\0"
+       "jan\xc3\xba\x61r\0"
+       "febr\xc3\xba\x61r\0"
+       "apr\xc3\xadl\0"
+       "ma\xc3\xad\0"
+       "j\xc3\xban\xc3\xad\0"
+       "j\xc3\xbal\xc3\xad\0"
+       "\xc3\xa1g\xc3\xbast\0"
+       "n\xc3\xb3vember\0"
+       "desember\0"
+       "\xc3\xa1g\xc3\xba.\0"
+       "n\xc3\xb3v.\0"
+       "domenica\0"
+       "luned\xc3\xac\0"
+       "marted\xc3\xac\0"
+       "mercoled\xc3\xac\0"
+       "gioved\xc3\xac\0"
+       "venerd\xc3\xac\0"
+       "sabato\0"
+       "dom\0"
+       "lun\0"
+       "mar\0"
+       "mer\0"
+       "gio\0"
+       "ven\0"
+       "sab\0"
+       "G\0"
+       "gennaio\0"
+       "febbraio\0"
+       "aprile\0"
+       "maggio\0"
+       "giugno\0"
+       "luglio\0"
+       "settembre\0"
+       "ottobre\0"
+       "dicembre\0"
+       "gen\0"
+       "feb\0"
+       "apr\0"
+       "mag\0"
+       "giu\0"
+       "lug\0"
+       "ago\0"
+       "set\0"
+       "ott\0"
+       "nov\0"
+       "dic\0"
+       "\xe6\x97\xa5\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe6\x9c\x88\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe7\x81\xab\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe6\xb0\xb4\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe6\x9c\xa8\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe9\x87\x91\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe5\x9c\x9f\xe6\x9b\x9c\xe6\x97\xa5\0"
+       "\xe6\x9c\x88\0"
+       "\xe7\x81\xab\0"
+       "\xe6\xb0\xb4\0"
+       "\xe6\x9c\xa8\0"
+       "\xe9\x87\x91\0"
+       "\xe5\x9c\x9f\0"
+       "1\0"
+       "2\0"
+       "3\0"
+       "4\0"
+       "5\0"
+       "6\0"
+       "7\0"
+       "8\0"
+       "9\0"
+       "10\0"
+       "11\0"
+       "12\0"
+       "\xec\x9d\xbc\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xec\x9b\x94\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xed\x99\x94\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xec\x88\x98\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xeb\xaa\xa9\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xea\xb8\x88\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xed\x86\xa0\xec\x9a\x94\xec\x9d\xbc\0"
+       "\xec\x9d\xbc\0"
+       "\xec\x9b\x94\0"
+       "\xed\x99\x94\0"
+       "\xec\x88\x98\0"
+       "\xeb\xaa\xa9\0"
+       "\xea\xb8\x88\0"
+       "\xed\x86\xa0\0"
+       "1\xec\x9b\x94\0"
+       "2\xec\x9b\x94\0"
+       "3\xec\x9b\x94\0"
+       "4\xec\x9b\x94\0"
+       "5\xec\x9b\x94\0"
+       "6\xec\x9b\x94\0"
+       "7\xec\x9b\x94\0"
+       "8\xec\x9b\x94\0"
+       "9\xec\x9b\x94\0"
+       "10\xec\x9b\x94\0"
+       "11\xec\x9b\x94\0"
+       "12\xec\x9b\x94\0"
+       "zondag\0"
+       "maandag\0"
+       "dinsdag\0"
+       "woensdag\0"
+       "donderdag\0"
+       "vrijdag\0"
+       "zaterdag\0"
+       "zo\0"
+       "di\0"
+       "wo\0"
+       "do\0"
+       "vr\0"
+       "za\0"
+       "Z\0"
+       "januari\0"
+       "februari\0"
+       "maart\0"
+       "mei\0"
+       "augustus\0"
+       "mrt.\0"
+       "s\xc3\xb8n.\0"
+       "man.\0"
+       "tir.\0"
+       "ons.\0"
+       "tor.\0"
+       "fre.\0"
+       "l\xc3\xb8r.\0"
+       "jan\0"
+       "jun\0"
+       "jul\0"
+       "aug\0"
+       "sep\0"
+       "okt\0"
+       "des\0"
+       "niedziela\0"
+       "poniedzia\xc5\x82\x65k\0"
+       "wtorek\0"
+       "\xc5\x9broda\0"
+       "czwartek\0"
+       "pi\xc4\x85tek\0"
+       "niedz.\0"
+       "pon.\0"
+       "wt.\0"
+       "\xc5\x9br.\0"
+       "czw.\0"
+       "pt.\0"
+       "sob.\0"
+       "\xc5\x9a\0"
+       "C\0"
+       "stycze\xc5\x84\0"
+       "luty\0"
+       "marzec\0"
+       "kwiecie\xc5\x84\0"
+       "czerwiec\0"
+       "lipiec\0"
+       "sierpie\xc5\x84\0"
+       "wrzesie\xc5\x84\0"
+       "pa\xc5\xba\x64ziernik\0"
+       "grudzie\xc5\x84\0"
+       "stycznia\0"
+       "lutego\0"
+       "marca\0"
+       "kwietnia\0"
+       "maja\0"
+       "czerwca\0"
+       "lipca\0"
+       "sierpnia\0"
+       "wrze\xc5\x9bnia\0"
+       "pa\xc5\xba\x64ziernika\0"
+       "listopada\0"
+       "grudnia\0"
+       "sty\0"
+       "lut\0"
+       "kwi\0"
+       "cze\0"
+       "lip\0"
+       "sie\0"
+       "wrz\0"
+       "pa\xc5\xba\0"
+       "gru\0"
+       "segunda-feira\0"
+       "ter\xc3\xa7\x61-feira\0"
+       "quarta-feira\0"
+       "quinta-feira\0"
+       "sexta-feira\0"
+       "seg\0"
+       "ter\0"
+       "qua\0"
+       "qui\0"
+       "sex\0"
+       "s\xc3\xa1\x62\0"
+       "Q\0"
+       "janeiro\0"
+       "fevereiro\0"
+       "mar\xc3\xa7o\0"
+       "maio\0"
+       "junho\0"
+       "julho\0"
+       "setembro\0"
+       "outubro\0"
+       "novembro\0"
+       "dezembro\0"
+       "fev\0"
+       "abr\0"
+       "out\0"
+       "dez\0"
+       "dumengia\0"
+       "glindesdi\0"
+       "mesemna\0"
+       "gievgia\0"
+       "venderdi\0"
+       "sonda\0"
+       "du\0"
+       "gli\0"
+       "me\0"
+       "gie\0"
+       "ve\0"
+       "schaner\0"
+       "favrer\0"
+       "avrigl\0"
+       "matg\0"
+       "zercladur\0"
+       "fanadur\0"
+       "avust\0"
+       "settember\0"
+       "october\0"
+       "schan.\0"
+       "favr.\0"
+       "zercl.\0"
+       "fan.\0"
+       "sett.\0"
+       "duminic\xc4\x83\0"
+       "luni\0"
+       "mar\xc8\x9bi\0"
+       "miercuri\0"
+       "joi\0"
+       "vineri\0"
+       "s\xc3\xa2mb\xc4\x83t\xc4\x83\0"
+       "dum.\0"
+       "mie.\0"
+       "vin.\0"
+       "s\xc3\xa2m.\0"
+       "ianuarie\0"
+       "februarie\0"
+       "martie\0"
+       "aprilie\0"
+       "iunie\0"
+       "iulie\0"
+       "septembrie\0"
+       "octombrie\0"
+       "noiembrie\0"
+       "decembrie\0"
+       "ian.\0"
+       "iun.\0"
+       "iul.\0"
+       "\xd0\xb2\xd0\xbe\xd1\x81\xd0\xba\xd1\x80\xd0\xb5\xd1\x81\xd0\xb5\xd0\xbd\xd1\x8c\xd0\xb5\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd1\x8c\xd0\xbd\xd0\xb8\xd0\xba\0"
+       "\xd1\x81\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb0\0"
+       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb3\0"
+       "\xd0\xbf\xd1\x8f\xd1\x82\xd0\xbd\xd0\xb8\xd1\x86\xd0\xb0\0"
+       "\xd1\x81\xd1\x83\xd0\xb1\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
+       "\xd0\xb2\xd1\x81\0"
+       "\xd0\x92\0"
+       "\xd0\x9f\0"
+       "\xd0\xa1\0"
+       "\xd0\xa7\0"
+       "\xd1\x8f\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\xd1\x8c\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\xd1\x8c\0"
+       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\xd1\x8c\0"
+       "\xd0\xb8\xd1\x8e\xd0\xbd\xd1\x8c\0"
+       "\xd0\xb8\xd1\x8e\xd0\xbb\xd1\x8c\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd0\xbd\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd1\x8f\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\xd1\x8f\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\xd1\x8f\0"
+       "\xd0\xbc\xd0\xb0\xd1\x80\xd1\x82\xd0\xb0\0"
+       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\xd1\x8f\0"
+       "\xd0\xbc\xd0\xb0\xd1\x8f\0"
+       "\xd0\xb8\xd1\x8e\xd0\xbd\xd1\x8f\0"
+       "\xd0\xb8\xd1\x8e\xd0\xbb\xd1\x8f\0"
+       "\xd0\xb0\xd0\xb2\xd0\xb3\xd1\x83\xd1\x81\xd1\x82\xd0\xb0\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8f\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8f\0"
+       "\xd0\xbd\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8f\0"
+       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\xd1\x8f\0"
+       "\xd1\x8f\xd0\xbd\xd0\xb2.\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80.\0"
+       "\xd0\xb0\xd0\xbf\xd1\x80.\0"
+       "\xd0\xb0\xd0\xb2\xd0\xb3.\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82.\0"
+       "\xd0\xbe\xd0\xba\xd1\x82.\0"
+       "\xd0\xbd\xd0\xbe\xd1\x8f\xd0\xb1.\0"
+       "\xd0\xb4\xd0\xb5\xd0\xba.\0"
+       "nedjelja\0"
+       "ponedjeljak\0"
+       "utorak\0"
+       "srijeda\0"
+       "\xc4\x8d\x65tvrtak\0"
+       "petak\0"
+       "subota\0"
+       "ned\0"
+       "pon\0"
+       "uto\0"
+       "sri\0"
+       "\xc4\x8d\x65t\0"
+       "pet\0"
+       "sub\0"
+       "n\0"
+       "p\0"
+       "u\0"
+       "s\0"
+       "\xc4\x8d\0"
+       "sije\xc4\x8d\x61nj\0"
+       "velja\xc4\x8d\x61\0"
+       "o\xc5\xbeujak\0"
+       "travanj\0"
+       "svibanj\0"
+       "lipanj\0"
+       "srpanj\0"
+       "kolovoz\0"
+       "rujan\0"
+       "studeni\0"
+       "prosinac\0"
+       "sije\xc4\x8dnja\0"
+       "velja\xc4\x8d\x65\0"
+       "o\xc5\xbeujka\0"
+       "travnja\0"
+       "svibnja\0"
+       "lipnja\0"
+       "srpnja\0"
+       "kolovoza\0"
+       "rujna\0"
+       "studenoga\0"
+       "prosinca\0"
+       "sij\0"
+       "velj\0"
+       "o\xc5\xbeu\0"
+       "tra\0"
+       "svi\0"
+       "kol\0"
+       "ruj\0"
+       "stu\0"
+       "nede\xc4\xbe\x61\0"
+       "pondelok\0"
+       "utorok\0"
+       "streda\0"
+       "\xc5\xa1tvrtok\0"
+       "piatok\0"
+       "ut\0"
+       "\xc5\xa1t\0"
+       "pi\0"
+       "\xc5\xa1\0"
+       "marec\0"
+       "m\xc3\xa1j\0"
+       "j\xc3\xban\0"
+       "j\xc3\xbal\0"
+       "janu\xc3\xa1ra\0"
+       "febru\xc3\xa1ra\0"
+       "apr\xc3\xadla\0"
+       "m\xc3\xa1ja\0"
+       "j\xc3\xbana\0"
+       "j\xc3\xbala\0"
+       "augusta\0"
+       "septembra\0"
+       "okt\xc3\xb3\x62ra\0"
+       "novembra\0"
+       "decembra\0"
+       "dec\0"
+       "e diel\0"
+       "e h\xc3\xabn\xc3\xab\0"
+       "e mart\xc3\xab\0"
+       "e m\xc3\xabrkur\xc3\xab\0"
+       "e enjte\0"
+       "e premte\0"
+       "e shtun\xc3\xab\0"
+       "Die\0"
+       "H\xc3\xabn\0"
+       "M\xc3\xabr\0"
+       "Enj\0"
+       "Pre\0"
+       "Sht\0"
+       "E\0"
+       "Janar\0"
+       "Shkurt\0"
+       "Mars\0"
+       "Prill\0"
+       "Maj\0"
+       "Qershor\0"
+       "Korrik\0"
+       "Gusht\0"
+       "Shtator\0"
+       "Tetor\0"
+       "N\xc3\xabntor\0"
+       "Dhjetor\0"
+       "janar\0"
+       "shkurt\0"
+       "prill\0"
+       "qershor\0"
+       "korrik\0"
+       "gusht\0"
+       "shtator\0"
+       "tetor\0"
+       "n\xc3\xabntor\0"
+       "dhjetor\0"
+       "Shk\0"
+       "Pri\0"
+       "Qer\0"
+       "Kor\0"
+       "Gsh\0"
+       "Tet\0"
+       "N\xc3\xabn\0"
+       "Dhj\0"
+       "s\xc3\xb6ndag\0"
+       "m\xc3\xa5ndag\0"
+       "tisdag\0"
+       "l\xc3\xb6rdag\0"
+       "s\xc3\xb6n\0"
+       "m\xc3\xa5n\0"
+       "tis\0"
+       "tors\0"
+       "l\xc3\xb6r\0"
+       "augusti\0"
+       "Pazar\0"
+       "Pazartesi\0"
+       "Sal\xc4\xb1\0"
+       "\xc3\x87\x61r\xc5\x9f\x61mba\0"
+       "Per\xc5\x9f\x65mbe\0"
+       "Cuma\0"
+       "Cumartesi\0"
+       "Paz\0"
+       "Pzt\0"
+       "Sal\0"
+       "\xc3\x87\x61r\0"
+       "Per\0"
+       "Cum\0"
+       "Cmt\0"
+       "\xc3\x87\0"
+       "Ocak\0"
+       "\xc5\x9eubat\0"
+       "Mart\0"
+       "Nisan\0"
+       "May\xc4\xb1s\0"
+       "Haziran\0"
+       "Temmuz\0"
+       "A\xc4\x9fustos\0"
+       "Eyl\xc3\xbcl\0"
+       "Ekim\0"
+       "Kas\xc4\xb1m\0"
+       "Aral\xc4\xb1k\0"
+       "Oca\0"
+       "\xc5\x9eub\0"
+       "Nis\0"
+       "Haz\0"
+       "Tem\0"
+       "A\xc4\x9fu\0"
+       "Eyl\0"
+       "Eki\0"
+       "Kas\0"
+       "Ara\0"
+       "\xd8\xa7\xd8\xaa\xd9\x88\xd8\xa7\xd8\xb1\0"
+       "\xd8\xb3\xd9\x88\xd9\x85\xd9\x88\xd8\xa7\xd8\xb1\0"
+       "\xd9\x85\xd9\x86\xda\xaf\xd9\x84\0"
+       "\xd8\xa8\xd8\xaf\xda\xbe\0"
+       "\xd8\xac\xd9\x85\xd8\xb9\xd8\xb1\xd8\xa7\xd8\xaa\0"
+       "\xd8\xac\xd9\x85\xd8\xb9\xdb\x81\0"
+       "\xdb\x81\xd9\x81\xd8\xaa\xdb\x81\0"
+       "\xd8\xac\xd9\x86\xd9\x88\xd8\xb1\xdb\x8c\0"
+       "\xd9\x81\xd8\xb1\xd9\x88\xd8\xb1\xdb\x8c\0"
+       "\xd9\x85\xd8\xa7\xd8\xb1\xda\x86\0"
+       "\xd8\xa7\xd9\xbe\xd8\xb1\xdb\x8c\xd9\x84\0"
+       "\xd9\x85\xd8\xa6\xdb\x8c\0"
+       "\xd8\xac\xd9\x88\xd9\x86\0"
+       "\xd8\xac\xd9\x88\xd9\x84\xd8\xa7\xd8\xa6\xdb\x8c\0"
+       "\xd8\xa7\xda\xaf\xd8\xb3\xd8\xaa\0"
+       "\xd8\xb3\xd8\xaa\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xd8\xa7\xda\xa9\xd8\xaa\xd9\x88\xd8\xa8\xd8\xb1\0"
+       "\xd9\x86\xd9\x88\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xd8\xaf\xd8\xb3\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "Minggu\0"
+       "Senin\0"
+       "Selasa\0"
+       "Rabu\0"
+       "Kamis\0"
+       "Jumat\0"
+       "Sabtu\0"
+       "Min\0"
+       "Sen\0"
+       "Sel\0"
+       "Rab\0"
+       "Kam\0"
+       "Jum\0"
+       "Sab\0"
+       "R\0"
+       "Januari\0"
+       "Februari\0"
+       "Maret\0"
+       "Mei\0"
+       "Agustus\0"
+       "Desember\0"
+       "Agt\0"
+       "Des\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4\xd1\x96\xd0\xbb\xd1\x8f\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd1\x96\xd0\xbb\xd0\xbe\xd0\xba\0"
+       "\xd0\xb2\xd1\x96\xd0\xb2\xd1\x82\xd0\xbe\xd1\x80\xd0\xbe\xd0\xba\0"
+       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb4\xd0\xb0\0"
+       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd0\xb5\xd1\x80\0"
+       "\xd0\xbf\xca\xbc\xd1\x8f\xd1\x82\xd0\xbd\xd0\xb8\xd1\x86\xd1\x8f\0"
+       "\xd1\x81\xd1\x83\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
+       "\xd0\x9d\0"
+       "\xd1\x81\xd1\x96\xd1\x87\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xbb\xd1\x8e\xd1\x82\xd0\xb8\xd0\xb9\0"
+       "\xd0\xb1\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb7\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xba\xd0\xb2\xd1\x96\xd1\x82\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd1\x82\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd1\x87\xd0\xb5\xd1\x80\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xbb\xd0\xb8\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xb6\xd0\xbe\xd0\xb2\xd1\x82\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xbb\xd0\xb8\xd1\x81\xd1\x82\xd0\xbe\xd0\xbf\xd0\xb0\xd0\xb4\0"
+       "\xd0\xb3\xd1\x80\xd1\x83\xd0\xb4\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd1\x81\xd1\x96\xd1\x87\xd0\xbd\xd1\x8f\0"
+       "\xd0\xbb\xd1\x8e\xd1\x82\xd0\xbe\xd0\xb3\xd0\xbe\0"
+       "\xd0\xb1\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb7\xd0\xbd\xd1\x8f\0"
+       "\xd0\xba\xd0\xb2\xd1\x96\xd1\x82\xd0\xbd\xd1\x8f\0"
+       "\xd1\x82\xd1\x80\xd0\xb0\xd0\xb2\xd0\xbd\xd1\x8f\0"
+       "\xd1\x87\xd0\xb5\xd1\x80\xd0\xb2\xd0\xbd\xd1\x8f\0"
+       "\xd0\xbb\xd0\xb8\xd0\xbf\xd0\xbd\xd1\x8f\0"
+       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xbf\xd0\xbd\xd1\x8f\0"
+       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb5\xd1\x81\xd0\xbd\xd1\x8f\0"
+       "\xd0\xb6\xd0\xbe\xd0\xb2\xd1\x82\xd0\xbd\xd1\x8f\0"
+       "\xd0\xbb\xd0\xb8\xd1\x81\xd1\x82\xd0\xbe\xd0\xbf\xd0\xb0\xd0\xb4\xd0\xb0\0"
+       "\xd0\xb3\xd1\x80\xd1\x83\xd0\xb4\xd0\xbd\xd1\x8f\0"
+       "\xd1\x81\xd1\x96\xd1\x87\0"
+       "\xd0\xbb\xd1\x8e\xd1\x82\0"
+       "\xd0\xb1\xd0\xb5\xd1\x80\0"
+       "\xd0\xba\xd0\xb2\xd1\x96\0"
+       "\xd1\x82\xd1\x80\xd0\xb0\0"
+       "\xd1\x87\xd0\xb5\xd1\x80\0"
+       "\xd0\xbb\xd0\xb8\xd0\xbf\0"
+       "\xd1\x81\xd0\xb5\xd1\x80\0"
+       "\xd0\xb2\xd0\xb5\xd1\x80\0"
+       "\xd0\xb6\xd0\xbe\xd0\xb2\0"
+       "\xd0\xbb\xd0\xb8\xd1\x81\0"
+       "\xd0\xb3\xd1\x80\xd1\x83\0"
+       "\xd0\xbd\xd1\x8f\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbb\xd1\x8f\0"
+       "\xd0\xbf\xd0\xb0\xd0\xbd\xd1\x8f\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbb\xd0\xb0\xd0\xba\0"
+       "\xd0\xb0\xd1\x9e\xd1\x82\xd0\xbe\xd1\x80\xd0\xb0\xd0\xba\0"
+       "\xd1\x81\xd0\xb5\xd1\x80\xd0\xb0\xd0\xb4\xd0\xb0\0"
+       "\xd1\x87\xd0\xb0\xd1\x86\xd0\xb2\xd0\xb5\xd1\x80\0"
+       "\xd0\xbf\xd1\x8f\xd1\x82\xd0\xbd\xd1\x96\xd1\x86\xd0\xb0\0"
+       "\xd0\xb0\xd1\x9e\0"
+       "\xd1\x87\xd1\x86\0"
+       "\xd0\xb0\0"
+       "\xd1\x81\xd1\x82\xd1\x83\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xbb\xd1\x8e\xd1\x82\xd1\x8b\0"
+       "\xd1\x81\xd0\xb0\xd0\xba\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\0"
+       "\xd0\xba\xd1\x80\xd0\xb0\xd1\x81\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\0"
+       "\xd1\x87\xd1\x8d\xd1\x80\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xbb\xd1\x96\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xb6\xd0\xbd\xd1\x96\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb0\xd1\x81\xd0\xb5\xd0\xbd\xd1\x8c\0"
+       "\xd0\xba\xd0\xb0\xd1\x81\xd1\x82\xd1\x80\xd1\x8b\xd1\x87\xd0\xbd\xd1\x96\xd0\xba\0"
+       "\xd0\xbb\xd1\x96\xd1\x81\xd1\x82\xd0\xb0\xd0\xbf\xd0\xb0\xd0\xb4\0"
+       "\xd1\x81\xd0\xbd\xd0\xb5\xd0\xb6\xd0\xb0\xd0\xbd\xd1\x8c\0"
+       "\xd1\x81\xd1\x82\xd1\x83\xd0\xb4\xd0\xb7\xd0\xb5\xd0\xbd\xd1\x8f\0"
+       "\xd0\xbb\xd1\x8e\xd1\x82\xd0\xb0\xd0\xb3\xd0\xb0\0"
+       "\xd1\x81\xd0\xb0\xd0\xba\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\xd0\xb0\0"
+       "\xd0\xba\xd1\x80\xd0\xb0\xd1\x81\xd0\xb0\xd0\xb2\xd1\x96\xd0\xba\xd0\xb0\0"
+       "\xd1\x87\xd1\x8d\xd1\x80\xd0\xb2\xd0\xb5\xd0\xbd\xd1\x8f\0"
+       "\xd0\xbb\xd1\x96\xd0\xbf\xd0\xb5\xd0\xbd\xd1\x8f\0"
+       "\xd0\xb6\xd0\xbd\xd1\x96\xd1\x9e\xd0\xbd\xd1\x8f\0"
+       "\xd0\xb2\xd0\xb5\xd1\x80\xd0\xb0\xd1\x81\xd0\xbd\xd1\x8f\0"
+       "\xd0\xba\xd0\xb0\xd1\x81\xd1\x82\xd1\x80\xd1\x8b\xd1\x87\xd0\xbd\xd1\x96\xd0\xba\xd0\xb0\0"
+       "\xd0\xbb\xd1\x96\xd1\x81\xd1\x82\xd0\xb0\xd0\xbf\xd0\xb0\xd0\xb4\xd0\xb0\0"
+       "\xd1\x81\xd0\xbd\xd0\xb5\xd0\xb6\xd0\xbd\xd1\x8f\0"
+       "\xd1\x81\xd1\x82\xd1\x83\0"
+       "\xd1\x81\xd0\xb0\xd0\xba\0"
+       "\xd0\xba\xd1\x80\xd0\xb0\0"
+       "\xd1\x87\xd1\x8d\xd1\x80\0"
+       "\xd0\xbb\xd1\x96\xd0\xbf\0"
+       "\xd0\xb6\xd0\xbd\xd1\x96\0"
+       "\xd0\xba\xd0\xb0\xd1\x81\0"
+       "\xd0\xbb\xd1\x96\xd1\x81\0"
+       "\xd1\x81\xd0\xbd\xd0\xb5\0"
+       "nedelja\0"
+       "ponedeljek\0"
+       "torek\0"
+       "sreda\0"
+       "\xc4\x8d\x65trtek\0"
+       "petek\0"
+       "ned.\0"
+       "sre.\0"
+       "\xc4\x8d\x65t.\0"
+       "pet.\0"
+       "t\0"
+       "junij\0"
+       "julij\0"
+       "avgust\0"
+       "avg.\0"
+       "p\xc3\xbchap\xc3\xa4\x65v\0"
+       "esmasp\xc3\xa4\x65v\0"
+       "teisip\xc3\xa4\x65v\0"
+       "kolmap\xc3\xa4\x65v\0"
+       "neljap\xc3\xa4\x65v\0"
+       "reede\0"
+       "laup\xc3\xa4\x65v\0"
+       "jaanuar\0"
+       "veebruar\0"
+       "m\xc3\xa4rts\0"
+       "aprill\0"
+       "juuni\0"
+       "juuli\0"
+       "oktoober\0"
+       "detsember\0"
+       "jaan\0"
+       "veebr\0"
+       "sept\0"
+       "dets\0"
+       "sv\xc4\x93tdiena\0"
+       "pirmdiena\0"
+       "otrdiena\0"
+       "tre\xc5\xa1\x64iena\0"
+       "ceturtdiena\0"
+       "piektdiena\0"
+       "sestdiena\0"
+       "Sv\xc4\x93td.\0"
+       "Pirmd.\0"
+       "Otrd.\0"
+       "Tre\xc5\xa1\x64.\0"
+       "Ceturtd.\0"
+       "Piektd.\0"
+       "Sestd.\0"
+       "janv\xc4\x81ris\0"
+       "febru\xc4\x81ris\0"
+       "apr\xc4\xablis\0"
+       "maijs\0"
+       "j\xc5\xabnijs\0"
+       "j\xc5\xablijs\0"
+       "augusts\0"
+       "septembris\0"
+       "oktobris\0"
+       "novembris\0"
+       "decembris\0"
+       "j\xc5\xabn.\0"
+       "j\xc5\xabl.\0"
+       "sekmadienis\0"
+       "pirmadienis\0"
+       "antradienis\0"
+       "tre\xc4\x8diadienis\0"
+       "ketvirtadienis\0"
+       "penktadienis\0"
+       "\xc5\xa1\x65\xc5\xa1tadienis\0"
+       "sk\0"
+       "pr\0"
+       "an\0"
+       "tr\0"
+       "kt\0"
+       "pn\0"
+       "A\0"
+       "\xc5\xa0\0"
+       "sausis\0"
+       "vasaris\0"
+       "kovas\0"
+       "balandis\0"
+       "gegu\xc5\xbe\xc4\x97\0"
+       "bir\xc5\xbe\x65lis\0"
+       "liepa\0"
+       "rugpj\xc5\xabtis\0"
+       "rugs\xc4\x97jis\0"
+       "spalis\0"
+       "lapkritis\0"
+       "gruodis\0"
+       "sausio\0"
+       "vasario\0"
+       "kovo\0"
+       "baland\xc5\xbeio\0"
+       "gegu\xc5\xbe\xc4\x97s\0"
+       "bir\xc5\xbe\x65lio\0"
+       "liepos\0"
+       "rugpj\xc5\xab\xc4\x8dio\0"
+       "rugs\xc4\x97jo\0"
+       "spalio\0"
+       "lapkri\xc4\x8dio\0"
+       "gruod\xc5\xbeio\0"
+       "saus.\0"
+       "vas.\0"
+       "kov.\0"
+       "bal.\0"
+       "geg.\0"
+       "bir\xc5\xbe.\0"
+       "liep.\0"
+       "rugp.\0"
+       "rugs.\0"
+       "spal.\0"
+       "lapkr.\0"
+       "gruod.\0"
+       "\xd0\xaf\xd0\xba\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
+       "\xd0\x94\xd1\x83\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
+       "\xd0\xa1\xd0\xb5\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
+       "\xd0\xa7\xd0\xbe\xd1\x80\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
+       "\xd0\x9f\xd0\xb0\xd0\xbd\xd2\xb7\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
+       "\xd2\xb6\xd1\x83\xd0\xbc\xd1\x8a\xd0\xb0\0"
+       "\xd0\xa8\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb5\0"
+       "\xd0\xaf\xd1\x88\xd0\xb1\0"
+       "\xd0\x94\xd1\x88\xd0\xb1\0"
+       "\xd0\xa1\xd1\x88\xd0\xb1\0"
+       "\xd0\xa7\xd1\x88\xd0\xb1\0"
+       "\xd0\x9f\xd1\x88\xd0\xb1\0"
+       "\xd2\xb6\xd0\xbc\xd1\x8a\0"
+       "\xd0\xa8\xd0\xbd\xd0\xb1\0"
+       "\xd0\xaf\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\0"
+       "\xd0\xa4\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\0"
+       "\xd0\x9c\xd0\xb0\xd1\x80\xd1\x82\0"
+       "\xd0\x90\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\0"
+       "\xd0\x9c\xd0\xb0\xd0\xb9\0"
+       "\xd0\x98\xd1\x8e\xd0\xbd\0"
+       "\xd0\x98\xd1\x8e\xd0\xbb\0"
+       "\xd0\x90\xd0\xb2\xd0\xb3\xd1\x83\xd1\x81\xd1\x82\0"
+       "\xd0\xa1\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\0"
+       "\xd0\x9e\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\0"
+       "\xd0\x9d\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\0"
+       "\xd0\x94\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd0\xaf\xd0\xbd\xd0\xb2\0"
+       "\xd0\xa4\xd0\xb5\xd0\xb2\0"
+       "\xd0\x9c\xd0\xb0\xd1\x80\0"
+       "\xd0\x90\xd0\xbf\xd1\x80\0"
+       "\xd0\x90\xd0\xb2\xd0\xb3\0"
+       "\xd0\xa1\xd0\xb5\xd0\xbd\0"
+       "\xd0\x9e\xd0\xba\xd1\x82\0"
+       "\xd0\x9d\xd0\xbe\xd1\x8f\0"
+       "\xd0\x94\xd0\xb5\xd0\xba\0"
+       "\xdb\x8c\xda\xa9\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
+       "\xd8\xaf\xd9\x88\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
+       "\xd8\xb3\xd9\x87\xe2\x80\x8c\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
+       "\xda\x86\xd9\x87\xd8\xa7\xd8\xb1\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
+       "\xd9\xbe\xd9\x86\xd8\xac\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
+       "\xd8\xac\xd9\x85\xd8\xb9\xd9\x87\0"
+       "\xd8\xb4\xd9\x86\xd8\xa8\xd9\x87\0"
+       "\xdb\x8c\0"
+       "\xd8\xaf\0"
+       "\xd8\xb3\0"
+       "\xda\x86\0"
+       "\xd9\xbe\0"
+       "\xd8\xac\0"
+       "\xd8\xb4\0"
+       "\xda\x98\xd8\xa7\xd9\x86\xd9\x88\xdb\x8c\xd9\x87\0"
+       "\xd9\x81\xd9\x88\xd8\xb1\xdb\x8c\xd9\x87\0"
+       "\xd9\x85\xd8\xa7\xd8\xb1\xd8\xb3\0"
+       "\xd8\xa2\xd9\x88\xd8\xb1\xdb\x8c\xd9\x84\0"
+       "\xd9\x85\xd9\x87\0"
+       "\xda\x98\xd9\x88\xd8\xa6\xd9\x86\0"
+       "\xda\x98\xd9\x88\xd8\xa6\xdb\x8c\xd9\x87\0"
+       "\xd8\xa7\xd9\x88\xd8\xaa\0"
+       "\xd8\xb3\xd9\xbe\xd8\xaa\xd8\xa7\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xd8\xa7\xda\xa9\xd8\xaa\xd8\xa8\xd8\xb1\0"
+       "\xd9\x86\xd9\x88\xd8\xa7\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xd8\xaf\xd8\xb3\xd8\xa7\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xda\x98\xd8\xa7\xd9\x86\xd9\x88\xdb\x8c\xd9\x87\xd9\x94\0"
+       "\xd9\x81\xd9\x88\xd8\xb1\xdb\x8c\xd9\x87\xd9\x94\0"
+       "\xd9\x85\xd9\x87\xd9\x94\0"
+       "\xda\x98\xd9\x88\xd8\xa6\xdb\x8c\xd9\x87\xd9\x94\0"
+       "Ch\xe1\xbb\xa7 Nh\xe1\xba\xadt\0"
+       "Th\xe1\xbb\xa9 Hai\0"
+       "Th\xe1\xbb\xa9 Ba\0"
+       "Th\xe1\xbb\xa9 T\xc6\xb0\0"
+       "Th\xe1\xbb\xa9 N\xc4\x83m\0"
+       "Th\xe1\xbb\xa9 S\xc3\xa1u\0"
+       "Th\xe1\xbb\xa9 B\xe1\xba\xa3y\0"
+       "CN\0"
+       "Th 2\0"
+       "Th 3\0"
+       "Th 4\0"
+       "Th 5\0"
+       "Th 6\0"
+       "Th 7\0"
+       "T2\0"
+       "T3\0"
+       "T4\0"
+       "T5\0"
+       "T6\0"
+       "T7\0"
+       "Th\xc3\xa1ng 1\0"
+       "Th\xc3\xa1ng 2\0"
+       "Th\xc3\xa1ng 3\0"
+       "Th\xc3\xa1ng 4\0"
+       "Th\xc3\xa1ng 5\0"
+       "Th\xc3\xa1ng 6\0"
+       "Th\xc3\xa1ng 7\0"
+       "Th\xc3\xa1ng 8\0"
+       "Th\xc3\xa1ng 9\0"
+       "Th\xc3\xa1ng 10\0"
+       "Th\xc3\xa1ng 11\0"
+       "Th\xc3\xa1ng 12\0"
+       "th\xc3\xa1ng 1\0"
+       "th\xc3\xa1ng 2\0"
+       "th\xc3\xa1ng 3\0"
+       "th\xc3\xa1ng 4\0"
+       "th\xc3\xa1ng 5\0"
+       "th\xc3\xa1ng 6\0"
+       "th\xc3\xa1ng 7\0"
+       "th\xc3\xa1ng 8\0"
+       "th\xc3\xa1ng 9\0"
+       "th\xc3\xa1ng 10\0"
+       "th\xc3\xa1ng 11\0"
+       "th\xc3\xa1ng 12\0"
+       "Thg 1\0"
+       "Thg 2\0"
+       "Thg 3\0"
+       "Thg 4\0"
+       "Thg 5\0"
+       "Thg 6\0"
+       "Thg 7\0"
+       "Thg 8\0"
+       "Thg 9\0"
+       "Thg 10\0"
+       "Thg 11\0"
+       "Thg 12\0"
+       "\xd5\xaf\xd5\xab\xd6\x80\xd5\xa1\xd5\xaf\xd5\xab\0"
+       "\xd5\xa5\xd6\x80\xd5\xaf\xd5\xb8\xd6\x82\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
+       "\xd5\xa5\xd6\x80\xd5\xa5\xd6\x84\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
+       "\xd5\xb9\xd5\xb8\xd6\x80\xd5\xa5\xd6\x84\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
+       "\xd5\xb0\xd5\xab\xd5\xb6\xd5\xa3\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa9\xd5\xab\0"
+       "\xd5\xb8\xd6\x82\xd6\x80\xd5\xa2\xd5\xa1\xd5\xa9\0"
+       "\xd5\xb7\xd5\xa1\xd5\xa2\xd5\xa1\xd5\xa9\0"
+       "\xd5\xaf\xd5\xab\xd6\x80\0"
+       "\xd5\xa5\xd6\x80\xd5\xaf\0"
+       "\xd5\xa5\xd6\x80\xd6\x84\0"
+       "\xd5\xb9\xd6\x80\xd6\x84\0"
+       "\xd5\xb0\xd5\xb6\xd5\xa3\0"
+       "\xd5\xb8\xd6\x82\xd6\x80\0"
+       "\xd5\xb7\xd5\xa2\xd5\xa9\0"
+       "\xd4\xbf\0"
+       "\xd4\xb5\0"
+       "\xd5\x89\0"
+       "\xd5\x80\0"
+       "\xd5\x88\0"
+       "\xd5\x87\0"
+       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xbe\xd5\xa1\xd6\x80\0"
+       "\xd6\x83\xd5\xa5\xd5\xbf\xd6\x80\xd5\xbe\xd5\xa1\xd6\x80\0"
+       "\xd5\xb4\xd5\xa1\xd6\x80\xd5\xbf\0"
+       "\xd5\xa1\xd5\xba\xd6\x80\xd5\xab\xd5\xac\0"
+       "\xd5\xb4\xd5\xa1\xd5\xb5\xd5\xab\xd5\xbd\0"
+       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xab\xd5\xbd\0"
+       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xac\xd5\xab\xd5\xbd\0"
+       "\xd6\x85\xd5\xa3\xd5\xb8\xd5\xbd\xd5\xbf\xd5\xb8\xd5\xbd\0"
+       "\xd5\xbd\xd5\xa5\xd5\xba\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
+       "\xd5\xb0\xd5\xb8\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
+       "\xd5\xb6\xd5\xb8\xd5\xb5\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
+       "\xd5\xa4\xd5\xa5\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\0"
+       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xbe\xd5\xa1\xd6\x80\xd5\xab\0"
+       "\xd6\x83\xd5\xa5\xd5\xbf\xd6\x80\xd5\xbe\xd5\xa1\xd6\x80\xd5\xab\0"
+       "\xd5\xb4\xd5\xa1\xd6\x80\xd5\xbf\xd5\xab\0"
+       "\xd5\xa1\xd5\xba\xd6\x80\xd5\xab\xd5\xac\xd5\xab\0"
+       "\xd5\xb4\xd5\xa1\xd5\xb5\xd5\xab\xd5\xbd\xd5\xab\0"
+       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xb6\xd5\xab\xd5\xbd\xd5\xab\0"
+       "\xd5\xb0\xd5\xb8\xd6\x82\xd5\xac\xd5\xab\xd5\xbd\xd5\xab\0"
+       "\xd6\x85\xd5\xa3\xd5\xb8\xd5\xbd\xd5\xbf\xd5\xb8\xd5\xbd\xd5\xab\0"
+       "\xd5\xbd\xd5\xa5\xd5\xba\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
+       "\xd5\xb0\xd5\xb8\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
+       "\xd5\xb6\xd5\xb8\xd5\xb5\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
+       "\xd5\xa4\xd5\xa5\xd5\xaf\xd5\xbf\xd5\xa5\xd5\xb4\xd5\xa2\xd5\xa5\xd6\x80\xd5\xab\0"
+       "\xd5\xb0\xd5\xb6\xd5\xbe\0"
+       "\xd6\x83\xd5\xbf\xd5\xbe\0"
+       "\xd5\xb4\xd6\x80\xd5\xbf\0"
+       "\xd5\xa1\xd5\xba\xd6\x80\0"
+       "\xd5\xb4\xd5\xb5\xd5\xbd\0"
+       "\xd5\xb0\xd5\xb6\xd5\xbd\0"
+       "\xd5\xb0\xd5\xac\xd5\xbd\0"
+       "\xd6\x85\xd5\xa3\xd5\xbd\0"
+       "\xd5\xbd\xd5\xa5\xd5\xba\0"
+       "\xd5\xb0\xd5\xb8\xd5\xaf\0"
+       "\xd5\xb6\xd5\xb8\xd5\xb5\0"
+       "\xd5\xa4\xd5\xa5\xd5\xaf\0"
+       "bazar\0"
+       "bazar ert\xc9\x99si\0"
+       "\xc3\xa7\xc9\x99r\xc5\x9f\xc9\x99nb\xc9\x99 ax\xc5\x9f\x61m\xc4\xb1\0"
+       "\xc3\xa7\xc9\x99r\xc5\x9f\xc9\x99nb\xc9\x99\0"
+       "c\xc3\xbcm\xc9\x99 ax\xc5\x9f\x61m\xc4\xb1\0"
+       "c\xc3\xbcm\xc9\x99\0"
+       "\xc5\x9f\xc9\x99nb\xc9\x99\0"
+       "B.\0"
+       "B.E.\0"
+       "\xc3\x87.A.\0"
+       "\xc3\x87.\0"
+       "C.A.\0"
+       "C.\0"
+       "\xc5\x9e.\0"
+       "Yanvar\0"
+       "Fevral\0"
+       "Aprel\0"
+       "\xc4\xb0yun\0"
+       "\xc4\xb0yul\0"
+       "Avqust\0"
+       "Sentyabr\0"
+       "Oktyabr\0"
+       "Noyabr\0"
+       "Dekabr\0"
+       "yanvar\0"
+       "fevral\0"
+       "mart\0"
+       "aprel\0"
+       "may\0"
+       "iyun\0"
+       "iyul\0"
+       "avqust\0"
+       "sentyabr\0"
+       "oktyabr\0"
+       "noyabr\0"
+       "dekabr\0"
+       "yan\0"
+       "iyn\0"
+       "iyl\0"
+       "avq\0"
+       "sen\0"
+       "noy\0"
+       "dek\0"
+       "igandea\0"
+       "astelehena\0"
+       "asteartea\0"
+       "asteazkena\0"
+       "osteguna\0"
+       "ostirala\0"
+       "larunbata\0"
+       "ig.\0"
+       "al.\0"
+       "ar.\0"
+       "az.\0"
+       "og.\0"
+       "or.\0"
+       "lr.\0"
+       "I\0"
+       "urtarrila\0"
+       "Otsaila\0"
+       "Martxoa\0"
+       "Apirila\0"
+       "Maiatza\0"
+       "Ekaina\0"
+       "Uztaila\0"
+       "Abuztua\0"
+       "Iraila\0"
+       "Urria\0"
+       "Azaroa\0"
+       "Abendua\0"
+       "otsaila\0"
+       "martxoa\0"
+       "apirila\0"
+       "maiatza\0"
+       "ekaina\0"
+       "uztaila\0"
+       "abuztua\0"
+       "iraila\0"
+       "urria\0"
+       "azaroa\0"
+       "abendua\0"
+       "urt.\0"
+       "ots.\0"
+       "api.\0"
+       "mai.\0"
+       "eka.\0"
+       "uzt.\0"
+       "abu.\0"
+       "ira.\0"
+       "urr.\0"
+       "aza.\0"
+       "abe.\0"
+       "njed\xc5\xba\x65la\0"
+       "p\xc3\xb3nd\xc5\xba\x65la\0"
+       "wutora\0"
+       "srjeda\0"
+       "\xc5\xa1tw\xc3\xb3rtk\0"
+       "pjatk\0"
+       "nje\0"
+       "p\xc3\xb3n\0"
+       "wut\0"
+       "srj\0"
+       "\xc5\xa1tw\0"
+       "pja\0"
+       "sob\0"
+       "w\0"
+       "m\xc4\x9brc\0"
+       "apryl\0"
+       "meja\0"
+       "awgust\0"
+       "nowember\0"
+       "januara\0"
+       "februara\0"
+       "m\xc4\x9brca\0"
+       "apryla\0"
+       "meje\0"
+       "junija\0"
+       "julija\0"
+       "awgusta\0"
+       "oktobra\0"
+       "nowembra\0"
+       "m\xc4\x9br\0"
+       "mej\0"
+       "awg\0"
+       "now\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd0\xbb\xd0\xb0\0"
+       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd1\x80\xd1\x82\xd0\xbe\xd0\xba\0"
+       "\xd0\xbf\xd0\xb5\xd1\x82\xd0\xbe\xd0\xba\0"
+       "\xd1\x81\xd0\xb0\xd0\xb1\xd0\xbe\xd1\x82\xd0\xb0\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4.\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbd.\0"
+       "\xd0\xb2\xd1\x82\xd0\xbe.\0"
+       "\xd1\x81\xd1\x80\xd0\xb5.\0"
+       "\xd1\x87\xd0\xb5\xd1\x82.\0"
+       "\xd0\xbf\xd0\xb5\xd1\x82.\0"
+       "\xd1\x81\xd0\xb0\xd0\xb1.\0"
+       "\xd1\x98\xd0\xb0\xd0\xbd\xd1\x83\xd0\xb0\xd1\x80\xd0\xb8\0"
+       "\xd0\xbc\xd0\xb0\xd1\x98\0"
+       "\xd1\x98\xd1\x83\xd0\xbd\xd0\xb8\0"
+       "\xd1\x98\xd1\x83\xd0\xbb\xd0\xb8\0"
+       "\xd1\x98\xd0\xb0\xd0\xbd.\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2.\0"
+       "\xd0\xbc\xd0\xb0\xd1\x80.\0"
+       "\xd1\x98\xd1\x83\xd0\xbd.\0"
+       "\xd1\x98\xd1\x83\xd0\xbb.\0"
+       "\xd1\x81\xd0\xb5\xd0\xbf\xd1\x82.\0"
+       "\xd0\xbd\xd0\xbe\xd0\xb5\xd0\xbc.\0"
+       "Sontaha\0"
+       "Mmantaha\0"
+       "Labobedi\0"
+       "Laboraru\0"
+       "Labone\0"
+       "Labohlane\0"
+       "Moqebelo\0"
+       "Son\0"
+       "Mma\0"
+       "Bed\0"
+       "Rar\0"
+       "Ne\0"
+       "Hla\0"
+       "Moq\0"
+       "Phesekgong\0"
+       "Hlakola\0"
+       "Hlakubele\0"
+       "Mmese\0"
+       "Motsheanong\0"
+       "Phupjane\0"
+       "Phupu\0"
+       "Phata\0"
+       "Leotshe\0"
+       "Mphalane\0"
+       "Pundungwane\0"
+       "Tshitwe\0"
+       "Phe\0"
+       "Kol\0"
+       "Ube\0"
+       "Mme\0"
+       "Mot\0"
+       "Upu\0"
+       "Pha\0"
+       "Leo\0"
+       "Mph\0"
+       "Pun\0"
+       "Tsh\0"
+       "Sonto\0"
+       "Musumbhunuku\0"
+       "Ravumbirhi\0"
+       "Ravunharhu\0"
+       "Ravumune\0"
+       "Ravuntlhanu\0"
+       "Mugqivela\0"
+       "Mus\0"
+       "Bir\0"
+       "Har\0"
+       "Tlh\0"
+       "Mug\0"
+       "Sunguti\0"
+       "Nyenyenyani\0"
+       "Nyenyankulu\0"
+       "Dzivamisoko\0"
+       "Mudyaxihi\0"
+       "Khotavuxika\0"
+       "Mawuwani\0"
+       "Mhawuri\0"
+       "Ndzhati\0"
+       "Nhlangula\0"
+       "Hukuri\0"
+       "N'wendzamhala\0"
+       "Yan\0"
+       "Kul\0"
+       "Dzi\0"
+       "Mud\0"
+       "Kho\0"
+       "Maw\0"
+       "Mha\0"
+       "Ndz\0"
+       "Nhl\0"
+       "Huk\0"
+       "N'w\0"
+       "Tshipi\0"
+       "Mosopulogo\0"
+       "Laboraro\0"
+       "Labotlhano\0"
+       "Matlhatso\0"
+       "Mos\0"
+       "Tla\0"
+       "Mat\0"
+       "Ferikgong\0"
+       "Tlhakole\0"
+       "Mopitlo\0"
+       "Moranang\0"
+       "Motsheganang\0"
+       "Seetebosigo\0"
+       "Phukwi\0"
+       "Phatwe\0"
+       "Lwetse\0"
+       "Diphalane\0"
+       "Ngwanatsele\0"
+       "Sedimonthole\0"
+       "Fer\0"
+       "Mop\0"
+       "Mor\0"
+       "See\0"
+       "Phu\0"
+       "Lwe\0"
+       "Dip\0"
+       "Ngw\0"
+       "Sed\0"
+       "Cawe\0"
+       "Mvulo\0"
+       "Lwesibini\0"
+       "Lwesithathu\0"
+       "Lwesine\0"
+       "Lwesihlanu\0"
+       "Mgqibelo\0"
+       "Caw\0"
+       "Mvu\0"
+       "Bin\0"
+       "Tha\0"
+       "Sin\0"
+       "Mgq\0"
+       "Janyuwari\0"
+       "Februwari\0"
+       "Matshi\0"
+       "Epreli\0"
+       "Meyi\0"
+       "Julayi\0"
+       "Agasti\0"
+       "Septemba\0"
+       "Okthoba\0"
+       "Novemba\0"
+       "Disemba\0"
+       "Epr\0"
+       "Mey\0"
+       "Aga\0"
+       "Dis\0"
+       "ISonto\0"
+       "UMsombuluko\0"
+       "ULwesibili\0"
+       "ULwesithathu\0"
+       "ULwesine\0"
+       "ULwesihlanu\0"
+       "UMgqibelo\0"
+       "Mso\0"
+       "Bil\0"
+       "B\0"
+       "Januwari\0"
+       "Mashi\0"
+       "Ephreli\0"
+       "Septhemba\0"
+       "UMasingana\0"
+       "Mas\0"
+       "Eph\0"
+       "Sondag\0"
+       "Maandag\0"
+       "Dinsdag\0"
+       "Woensdag\0"
+       "Donderdag\0"
+       "Vrydag\0"
+       "Saterdag\0"
+       "So.\0"
+       "Ma.\0"
+       "Di.\0"
+       "Wo.\0"
+       "Do.\0"
+       "Vr.\0"
+       "Sa.\0"
+       "Januarie\0"
+       "Februarie\0"
+       "Maart\0"
+       "Junie\0"
+       "Julie\0"
+       "Augustus\0"
+       "Jan.\0"
+       "Feb.\0"
+       "Mrt.\0"
+       "Apr.\0"
+       "Jun.\0"
+       "Jul.\0"
+       "Aug.\0"
+       "Sep.\0"
+       "Okt.\0"
+       "Nov.\0"
+       "Des.\0"
+       "\xe1\x83\x99\xe1\x83\x95\xe1\x83\x98\xe1\x83\xa0\xe1\x83\x90\0"
+       "\xe1\x83\x9d\xe1\x83\xa0\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
+       "\xe1\x83\xa1\xe1\x83\x90\xe1\x83\x9b\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
+       "\xe1\x83\x9d\xe1\x83\x97\xe1\x83\xae\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
+       "\xe1\x83\xae\xe1\x83\xa3\xe1\x83\x97\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
+       "\xe1\x83\x9e\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x90\xe1\x83\xa1\xe1\x83\x99\xe1\x83\x94\xe1\x83\x95\xe1\x83\x98\0"
+       "\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\xe1\x83\x90\xe1\x83\x97\xe1\x83\x98\0"
+       "\xe1\x83\x99\xe1\x83\x95\xe1\x83\x98\0"
+       "\xe1\x83\x9d\xe1\x83\xa0\xe1\x83\xa8\0"
+       "\xe1\x83\xa1\xe1\x83\x90\xe1\x83\x9b\0"
+       "\xe1\x83\x9d\xe1\x83\x97\xe1\x83\xae\0"
+       "\xe1\x83\xae\xe1\x83\xa3\xe1\x83\x97\0"
+       "\xe1\x83\x9e\xe1\x83\x90\xe1\x83\xa0\0"
+       "\xe1\x83\xa8\xe1\x83\x90\xe1\x83\x91\0"
+       "\xe1\x83\x99\0"
+       "\xe1\x83\x9d\0"
+       "\xe1\x83\xa1\0"
+       "\xe1\x83\xae\0"
+       "\xe1\x83\x9e\0"
+       "\xe1\x83\xa8\0"
+       "\xe1\x83\x98\xe1\x83\x90\xe1\x83\x9c\xe1\x83\x95\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x98\0"
+       "\xe1\x83\x97\xe1\x83\x94\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x95\xe1\x83\x90\xe1\x83\x9a\xe1\x83\x98\0"
+       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\xa0\xe1\x83\xa2\xe1\x83\x98\0"
+       "\xe1\x83\x90\xe1\x83\x9e\xe1\x83\xa0\xe1\x83\x98\xe1\x83\x9a\xe1\x83\x98\0"
+       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\x98\xe1\x83\xa1\xe1\x83\x98\0"
+       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9c\xe1\x83\x98\xe1\x83\xa1\xe1\x83\x98\0"
+       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9a\xe1\x83\x98\xe1\x83\xa1\xe1\x83\x98\0"
+       "\xe1\x83\x90\xe1\x83\x92\xe1\x83\x95\xe1\x83\x98\xe1\x83\xa1\xe1\x83\xa2\xe1\x83\x9d\0"
+       "\xe1\x83\xa1\xe1\x83\x94\xe1\x83\xa5\xe1\x83\xa2\xe1\x83\x94\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
+       "\xe1\x83\x9d\xe1\x83\xa5\xe1\x83\xa2\xe1\x83\x9d\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
+       "\xe1\x83\x9c\xe1\x83\x9d\xe1\x83\x94\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
+       "\xe1\x83\x93\xe1\x83\x94\xe1\x83\x99\xe1\x83\x94\xe1\x83\x9b\xe1\x83\x91\xe1\x83\x94\xe1\x83\xa0\xe1\x83\x98\0"
+       "\xe1\x83\x98\xe1\x83\x90\xe1\x83\x9c\0"
+       "\xe1\x83\x97\xe1\x83\x94\xe1\x83\x91\0"
+       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\xa0\0"
+       "\xe1\x83\x90\xe1\x83\x9e\xe1\x83\xa0\0"
+       "\xe1\x83\x9b\xe1\x83\x90\xe1\x83\x98\0"
+       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9c\0"
+       "\xe1\x83\x98\xe1\x83\x95\xe1\x83\x9a\0"
+       "\xe1\x83\x90\xe1\x83\x92\xe1\x83\x95\0"
+       "\xe1\x83\xa1\xe1\x83\x94\xe1\x83\xa5\0"
+       "\xe1\x83\x9d\xe1\x83\xa5\xe1\x83\xa2\0"
+       "\xe1\x83\x9c\xe1\x83\x9d\xe1\x83\x94\0"
+       "\xe1\x83\x93\xe1\x83\x94\xe1\x83\x99\0"
+       "m\xc3\xa1nadagur\0"
+       "t\xc3\xbdsdagur\0"
+       "mikudagur\0"
+       "h\xc3\xb3sdagur\0"
+       "fr\xc3\xadggjadagur\0"
+       "leygardagur\0"
+       "sun\0"
+       "m\xc3\xa1n\0"
+       "t\xc3\xbds\0"
+       "mik\0"
+       "h\xc3\xb3s\0"
+       "fr\xc3\xad\0"
+       "ley\0"
+       "\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xbf\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb8\xe0\xa5\x8b\xe0\xa4\xae\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb2\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xac\xe0\xa5\x81\xe0\xa4\xa7\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\x97\xe0\xa5\x81\xe0\xa4\xb0\xe0\xa5\x81\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb6\xe0\xa5\x81\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb6\xe0\xa4\xa8\xe0\xa4\xbf\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xbf\0"
+       "\xe0\xa4\xb8\xe0\xa5\x8b\xe0\xa4\xae\0"
+       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb2\0"
+       "\xe0\xa4\xac\xe0\xa5\x81\xe0\xa4\xa7\0"
+       "\xe0\xa4\x97\xe0\xa5\x81\xe0\xa4\xb0\xe0\xa5\x81\0"
+       "\xe0\xa4\xb6\xe0\xa5\x81\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb6\xe0\xa4\xa8\xe0\xa4\xbf\0"
+       "\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb8\xe0\xa5\x8b\0"
+       "\xe0\xa4\xae\xe0\xa4\x82\0"
+       "\xe0\xa4\xac\xe0\xa5\x81\0"
+       "\xe0\xa4\x97\xe0\xa5\x81\0"
+       "\xe0\xa4\xb6\xe0\xa5\x81\0"
+       "\xe0\xa4\xb6\0"
+       "\xe0\xa4\x9c\xe0\xa4\xa8\xe0\xa4\xb5\xe0\xa4\xb0\xe0\xa5\x80\0"
+       "\xe0\xa4\xab\xe0\xa4\xbc\xe0\xa4\xb0\xe0\xa4\xb5\xe0\xa4\xb0\xe0\xa5\x80\0"
+       "\xe0\xa4\xae\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\x9a\0"
+       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x88\xe0\xa4\xb2\0"
+       "\xe0\xa4\xae\xe0\xa4\x88\0"
+       "\xe0\xa4\x9c\xe0\xa5\x82\xe0\xa4\xa8\0"
+       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xb2\xe0\xa4\xbe\xe0\xa4\x88\0"
+       "\xe0\xa4\x85\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\xa4\0"
+       "\xe0\xa4\xb8\xe0\xa4\xbf\xe0\xa4\xa4\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\x85\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xa4\xe0\xa5\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\xa8\xe0\xa4\xb5\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\x9c\xe0\xa4\xa8\xe0\xa5\xb0\0"
+       "\xe0\xa4\xab\xe0\xa4\xbc\xe0\xa4\xb0\xe0\xa5\xb0\0"
+       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xb2\xe0\xa5\xb0\0"
+       "\xe0\xa4\x85\xe0\xa4\x97\xe0\xa5\xb0\0"
+       "\xe0\xa4\xb8\xe0\xa4\xbf\xe0\xa4\xa4\xe0\xa5\xb0\0"
+       "\xe0\xa4\x85\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xa4\xe0\xa5\x82\xe0\xa5\xb0\0"
+       "\xe0\xa4\xa8\xe0\xa4\xb5\xe0\xa5\xb0\0"
+       "\xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\xb0\0"
+       "Il-\xc4\xa6\x61\x64\x64\0"
+       "It-Tnejn\0"
+       "It-Tlieta\0"
+       "L-Erbg\xc4\xa7\x61\0"
+       "Il-\xc4\xa6\x61mis\0"
+       "Il-\xc4\xa0img\xc4\xa7\x61\0"
+       "Is-Sibt\0"
+       "\xc4\xa6\x61\x64\0"
+       "Tne\0"
+       "Tli\0"
+       "Erb\0"
+       "\xc4\xa6\x61m\0"
+       "\xc4\xa0im\0"
+       "Sib\0"
+       "\xc4\xa6\x64\0"
+       "Tn\0"
+       "Tl\0"
+       "Er\0"
+       "\xc4\xa6m\0"
+       "\xc4\xa0m\0"
+       "Sb\0"
+       "Jannar\0"
+       "Frar\0"
+       "Marzu\0"
+       "Mejju\0"
+       "\xc4\xa0unju\0"
+       "Lulju\0"
+       "Awwissu\0"
+       "Settembru\0"
+       "Ottubru\0"
+       "Novembru\0"
+       "Di\xc4\x8b\x65mbru\0"
+       "Fra\0"
+       "Mej\0"
+       "\xc4\xa0un\0"
+       "Lul\0"
+       "Aww\0"
+       "Set\0"
+       "Ott\0"
+       "Di\xc4\x8b\0"
+       "sotnabeaivi\0"
+       "vuoss\xc3\xa1rga\0"
+       "ma\xc5\x8b\xc5\x8b\x65\x62\xc3\xa1rga\0"
+       "gaskavahkku\0"
+       "duorasdat\0"
+       "bearjadat\0"
+       "l\xc3\xa1vvardat\0"
+       "sotn\0"
+       "vuos\0"
+       "ma\xc5\x8b\0"
+       "gask\0"
+       "duor\0"
+       "bear\0"
+       "l\xc3\xa1v\0"
+       "o\xc4\x91\xc4\x91\x61jagem\xc3\xa1nnu\0"
+       "guovvam\xc3\xa1nnu\0"
+       "njuk\xc4\x8d\x61m\xc3\xa1nnu\0"
+       "cuo\xc5\x8bom\xc3\xa1nnu\0"
+       "miessem\xc3\xa1nnu\0"
+       "geassem\xc3\xa1nnu\0"
+       "suoidnem\xc3\xa1nnu\0"
+       "borgem\xc3\xa1nnu\0"
+       "\xc4\x8d\x61k\xc4\x8d\x61m\xc3\xa1nnu\0"
+       "golggotm\xc3\xa1nnu\0"
+       "sk\xc3\xa1\x62mam\xc3\xa1nnu\0"
+       "juovlam\xc3\xa1nnu\0"
+       "o\xc4\x91\xc4\x91j\0"
+       "guov\0"
+       "njuk\0"
+       "cuo\0"
+       "mies\0"
+       "geas\0"
+       "suoi\0"
+       "borg\0"
+       "\xc4\x8d\x61k\xc4\x8d\0"
+       "golg\0"
+       "sk\xc3\xa1\x62\0"
+       "juov\0"
+       "D\xc3\xa9 Domhnaigh\0"
+       "D\xc3\xa9 Luain\0"
+       "D\xc3\xa9 M\xc3\xa1irt\0"
+       "D\xc3\xa9 C\xc3\xa9\x61\x64\x61oin\0"
+       "D\xc3\xa9\x61rdaoin\0"
+       "D\xc3\xa9 hAoine\0"
+       "D\xc3\xa9 Sathairn\0"
+       "Domh\0"
+       "Luan\0"
+       "M\xc3\xa1irt\0"
+       "C\xc3\xa9\x61\x64\0"
+       "D\xc3\xa9\x61r\0"
+       "Aoine\0"
+       "Sath\0"
+       "Ean\xc3\xa1ir\0"
+       "Feabhra\0"
+       "M\xc3\xa1rta\0"
+       "Aibre\xc3\xa1n\0"
+       "Bealtaine\0"
+       "Meitheamh\0"
+       "I\xc3\xbail\0"
+       "L\xc3\xbanasa\0"
+       "Me\xc3\xa1n F\xc3\xb3mhair\0"
+       "Deireadh F\xc3\xb3mhair\0"
+       "Samhain\0"
+       "Nollaig\0"
+       "Ean\0"
+       "Feabh\0"
+       "Aib\0"
+       "Beal\0"
+       "Meith\0"
+       "L\xc3\xban\0"
+       "MF\xc3\xb3mh\0"
+       "DF\xc3\xb3mh\0"
+       "Samh\0"
+       "Noll\0"
+       "Ahad\0"
+       "Isnin\0"
+       "Khamis\0"
+       "Jumaat\0"
+       "Ahd\0"
+       "Isn\0"
+       "Kha\0"
+       "Mac\0"
+       "Julai\0"
+       "Ogos\0"
+       "Disember\0"
+       "Ogo\0"
+       "\xd0\xb6\xd0\xb5\xd0\xba\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
+       "\xd0\xb4\xd2\xaf\xd0\xb9\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
+       "\xd1\x81\xd0\xb5\xd0\xb9\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
+       "\xd1\x81\xd3\x99\xd1\x80\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
+       "\xd0\xb1\xd0\xb5\xd0\xb9\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
+       "\xd0\xb6\xd2\xb1\xd0\xbc\xd0\xb0\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\xd0\xb1\xd1\x96\0"
+       "\xd0\x96\xd1\x81\0"
+       "\xd0\x94\xd1\x81\0"
+       "\xd0\xa1\xd1\x81\0"
+       "\xd0\xa1\xd1\x80\0"
+       "\xd0\x91\xd1\x81\0"
+       "\xd0\x96\xd0\xbc\0"
+       "\xd0\xa1\xd0\xb1\0"
+       "\xd0\x96\0"
+       "\xd0\x94\0"
+       "\xd0\x91\0"
+       "\xd2\x9a\xd0\xb0\xd2\xa3\xd1\x82\xd0\xb0\xd1\x80\0"
+       "\xd0\x90\xd2\x9b\xd0\xbf\xd0\xb0\xd0\xbd\0"
+       "\xd0\x9d\xd0\xb0\xd1\x83\xd1\x80\xd1\x8b\xd0\xb7\0"
+       "\xd0\xa1\xd3\x99\xd1\x83\xd1\x96\xd1\x80\0"
+       "\xd0\x9c\xd0\xb0\xd0\xbc\xd1\x8b\xd1\x80\0"
+       "\xd0\x9c\xd0\xb0\xd1\x83\xd1\x81\xd1\x8b\xd0\xbc\0"
+       "\xd0\xa8\xd1\x96\xd0\xbb\xd0\xb4\xd0\xb5\0"
+       "\xd0\xa2\xd0\xb0\xd0\xbc\xd1\x8b\xd0\xb7\0"
+       "\xd2\x9a\xd1\x8b\xd1\x80\xd0\xba\xd2\xaf\xd0\xb9\xd0\xb5\xd0\xba\0"
+       "\xd2\x9a\xd0\xb0\xd0\xb7\xd0\xb0\xd0\xbd\0"
+       "\xd2\x9a\xd0\xb0\xd1\x80\xd0\xb0\xd1\x88\xd0\xb0\0"
+       "\xd0\x96\xd0\xb5\xd0\xbb\xd1\x82\xd0\xbe\xd2\x9b\xd1\x81\xd0\xb0\xd0\xbd\0"
+       "\xd2\x9b\xd0\xb0\xd2\xa3\xd1\x82\xd0\xb0\xd1\x80\0"
+       "\xd0\xb0\xd2\x9b\xd0\xbf\xd0\xb0\xd0\xbd\0"
+       "\xd0\xbd\xd0\xb0\xd1\x83\xd1\x80\xd1\x8b\xd0\xb7\0"
+       "\xd1\x81\xd3\x99\xd1\x83\xd1\x96\xd1\x80\0"
+       "\xd0\xbc\xd0\xb0\xd0\xbc\xd1\x8b\xd1\x80\0"
+       "\xd0\xbc\xd0\xb0\xd1\x83\xd1\x81\xd1\x8b\xd0\xbc\0"
+       "\xd1\x88\xd1\x96\xd0\xbb\xd0\xb4\xd0\xb5\0"
+       "\xd1\x82\xd0\xb0\xd0\xbc\xd1\x8b\xd0\xb7\0"
+       "\xd2\x9b\xd1\x8b\xd1\x80\xd0\xba\xd2\xaf\xd0\xb9\xd0\xb5\xd0\xba\0"
+       "\xd2\x9b\xd0\xb0\xd0\xb7\xd0\xb0\xd0\xbd\0"
+       "\xd2\x9b\xd0\xb0\xd1\x80\xd0\xb0\xd1\x88\xd0\xb0\0"
+       "\xd0\xb6\xd0\xb5\xd0\xbb\xd1\x82\xd0\xbe\xd2\x9b\xd1\x81\xd0\xb0\xd0\xbd\0"
+       "\xd2\x9a\xd0\xb0\xd2\xa3.\0"
+       "\xd0\x90\xd2\x9b\xd0\xbf.\0"
+       "\xd0\x9d\xd0\xb0\xd1\x83.\0"
+       "\xd0\xa1\xd3\x99\xd1\x83.\0"
+       "\xd0\x9c\xd0\xb0\xd0\xbc.\0"
+       "\xd0\x9c\xd0\xb0\xd1\x83.\0"
+       "\xd0\xa8\xd1\x96\xd0\xbb.\0"
+       "\xd0\xa2\xd0\xb0\xd0\xbc.\0"
+       "\xd2\x9a\xd1\x8b\xd1\x80.\0"
+       "\xd2\x9a\xd0\xb0\xd0\xb7.\0"
+       "\xd2\x9a\xd0\xb0\xd1\x80.\0"
+       "\xd0\x96\xd0\xb5\xd0\xbb.\0"
+       "\xd0\xb6\xd0\xb5\xd0\xba\xd1\x88\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb8\0"
+       "\xd0\xb4\xd2\xaf\xd0\xb9\xd1\x88\xd3\xa9\xd0\xbc\xd0\xb1\xd2\xaf\0"
+       "\xd1\x88\xd0\xb5\xd0\xb9\xd1\x88\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb8\0"
+       "\xd1\x88\xd0\xb0\xd1\x80\xd1\x88\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb8\0"
+       "\xd0\xb1\xd0\xb5\xd0\xb9\xd1\x88\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb8\0"
+       "\xd0\xb6\xd1\x83\xd0\xbc\xd0\xb0\0"
+       "\xd0\xb8\xd1\x88\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb8\0"
+       "\xd0\xb6\xd0\xb5\xd0\xba.\0"
+       "\xd0\xb4\xd2\xaf\xd0\xb9.\0"
+       "\xd1\x88\xd0\xb5\xd0\xb9\xd1\x88.\0"
+       "\xd1\x88\xd0\xb0\xd1\x80\xd1\x88.\0"
+       "\xd0\xb1\xd0\xb5\xd0\xb9\xd1\x88.\0"
+       "\xd0\xb8\xd1\x88\xd0\xbc.\0"
+       "\xd0\xa8\0"
+       "\xd0\x98\0"
+       "\xd0\xaf\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\xd1\x8c\0"
+       "\xd0\xa4\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\xd1\x8c\0"
+       "\xd0\x90\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\xd1\x8c\0"
+       "\xd0\x98\xd1\x8e\xd0\xbd\xd1\x8c\0"
+       "\xd0\x98\xd1\x8e\xd0\xbb\xd1\x8c\0"
+       "\xd0\xa1\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd0\x9e\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd0\x9d\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "\xd0\x94\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\xd1\x8c\0"
+       "Jumapili\0"
+       "Jumatatu\0"
+       "Jumanne\0"
+       "Jumatano\0"
+       "Alhamisi\0"
+       "Ijumaa\0"
+       "Jumamosi\0"
+       "Machi\0"
+       "Aprili\0"
+       "Agosti\0"
+       "Oktoba\0"
+       "Desemba\0"
+       "Ago\0"
+       "\xc3\xbd\x65k\xc5\x9f\x65nbe\0"
+       "du\xc5\x9f\x65nbe\0"
+       "si\xc5\x9f\x65nbe\0"
+       "\xc3\xa7\x61r\xc5\x9f\x65nbe\0"
+       "pen\xc5\x9f\x65nbe\0"
+       "anna\0"
+       "\xc5\x9f\x65nbe\0"
+       "\xc3\xbd\x62\0"
+       "db\0"
+       "sb\0"
+       "\xc3\xa7\x62\0"
+       "pb\0"
+       "\xc5\x9f\x62\0"
+       "\xc3\x9d\0"
+       "\xc5\x9e\0"
+       "\xc3\xbd\x61nwar\0"
+       "fewral\0"
+       "ma\xc3\xbd\0"
+       "i\xc3\xbdun\0"
+       "i\xc3\xbdul\0"
+       "sent\xc3\xbd\x61\x62r\0"
+       "okt\xc3\xbd\x61\x62r\0"
+       "no\xc3\xbd\x61\x62r\0"
+       "\xc3\xbd\x61n\0"
+       "few\0"
+       "no\xc3\xbd\0"
+       "yakshanba\0"
+       "dushanba\0"
+       "seshanba\0"
+       "chorshanba\0"
+       "payshanba\0"
+       "juma\0"
+       "shanba\0"
+       "Yak\0"
+       "Dush\0"
+       "Sesh\0"
+       "Chor\0"
+       "Pay\0"
+       "Shan\0"
+       "Y\0"
+       "Iyun\0"
+       "Iyul\0"
+       "Avgust\0"
+       "Sentabr\0"
+       "Oktabr\0"
+       "sentabr\0"
+       "oktabr\0"
+       "Fev\0"
+       "Iyn\0"
+       "Iyl\0"
+       "Avg\0"
+       "Noy\0"
+       "Dek\0"
+       "\xe0\xa6\xb0\xe0\xa6\xac\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xb8\xe0\xa7\x8b\xe0\xa6\xae\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xae\xe0\xa6\x99\xe0\xa7\x8d\xe0\xa6\x97\xe0\xa6\xb2\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xac\xe0\xa7\x81\xe0\xa6\xa7\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb8\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xb6\xe0\xa6\xa8\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa6\xb0\xe0\xa6\xac\xe0\xa6\xbf\0"
+       "\xe0\xa6\xb8\xe0\xa7\x8b\xe0\xa6\xae\0"
+       "\xe0\xa6\xae\xe0\xa6\x99\xe0\xa7\x8d\xe0\xa6\x97\xe0\xa6\xb2\0"
+       "\xe0\xa6\xac\xe0\xa7\x81\xe0\xa6\xa7\0"
+       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb8\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\0"
+       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\xb0\0"
+       "\xe0\xa6\xb6\xe0\xa6\xa8\xe0\xa6\xbf\0"
+       "\xe0\xa6\xb0\0"
+       "\xe0\xa6\xb8\xe0\xa7\x8b\0"
+       "\xe0\xa6\xae\0"
+       "\xe0\xa6\xac\xe0\xa7\x81\0"
+       "\xe0\xa6\xac\xe0\xa7\x83\0"
+       "\xe0\xa6\xb6\xe0\xa7\x81\0"
+       "\xe0\xa6\xb6\0"
+       "\xe0\xa6\x9c\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x81\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x80\0"
+       "\xe0\xa6\xab\xe0\xa7\x87\xe0\xa6\xac\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa7\x81\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x80\0"
+       "\xe0\xa6\xae\xe0\xa6\xbe\xe0\xa6\xb0\xe0\xa7\x8d\xe0\xa6\x9a\0"
+       "\xe0\xa6\x8f\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\xb2\0"
+       "\xe0\xa6\xae\xe0\xa7\x87\0"
+       "\xe0\xa6\x9c\xe0\xa7\x81\xe0\xa6\xa8\0"
+       "\xe0\xa6\x9c\xe0\xa7\x81\xe0\xa6\xb2\xe0\xa6\xbe\xe0\xa6\x87\0"
+       "\xe0\xa6\x86\xe0\xa6\x97\xe0\xa6\xb8\xe0\xa7\x8d\xe0\xa6\x9f\0"
+       "\xe0\xa6\xb8\xe0\xa7\x87\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xb0\0"
+       "\xe0\xa6\x85\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x8b\xe0\xa6\xac\xe0\xa6\xb0\0"
+       "\xe0\xa6\xa8\xe0\xa6\xad\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xb0\0"
+       "\xe0\xa6\xa1\xe0\xa6\xbf\xe0\xa6\xb8\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa6\xb0\0"
+       "\xe0\xa8\x90\xe0\xa8\xa4\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\xb8\xe0\xa9\x8b\xe0\xa8\xae\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\xae\xe0\xa9\xb0\xe0\xa8\x97\xe0\xa8\xb2\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\xac\xe0\xa9\x81\xe0\xa9\xb1\xe0\xa8\xa7\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\xb5\xe0\xa9\x80\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa9\x81\xe0\xa9\xb1\xe0\xa8\x95\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa8\xa8\xe0\xa8\xbf\xe0\xa9\xb1\xe0\xa8\x9a\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xbe\xe0\xa8\xb0\0"
+       "\xe0\xa8\x90\xe0\xa8\xa4\0"
+       "\xe0\xa8\xb8\xe0\xa9\x8b\xe0\xa8\xae\0"
+       "\xe0\xa8\xae\xe0\xa9\xb0\xe0\xa8\x97\xe0\xa8\xb2\0"
+       "\xe0\xa8\xac\xe0\xa9\x81\xe0\xa9\xb1\xe0\xa8\xa7\0"
+       "\xe0\xa8\xb5\xe0\xa9\x80\xe0\xa8\xb0\0"
+       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa9\x81\xe0\xa9\xb1\xe0\xa8\x95\xe0\xa8\xb0\0"
+       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa8\xa8\xe0\xa8\xbf\xe0\xa9\xb1\xe0\xa8\x9a\xe0\xa8\xb0\0"
+       "\xe0\xa8\x90\0"
+       "\xe0\xa8\xb8\xe0\xa9\x8b\0"
+       "\xe0\xa8\xae\xe0\xa9\xb0\0"
+       "\xe0\xa8\xac\xe0\xa9\x81\xe0\xa9\xb1\0"
+       "\xe0\xa8\xb5\xe0\xa9\x80\0"
+       "\xe0\xa8\xb8\xe0\xa8\xbc\xe0\xa9\x81\xe0\xa9\xb1\0"
+       "\xe0\xa8\xb8\xe0\xa8\xbc\0"
+       "\xe0\xa8\x9c\xe0\xa8\xa8\xe0\xa8\xb5\xe0\xa8\xb0\xe0\xa9\x80\0"
+       "\xe0\xa8\xab\xe0\xa8\xbc\xe0\xa8\xb0\xe0\xa8\xb5\xe0\xa8\xb0\xe0\xa9\x80\0"
+       "\xe0\xa8\xae\xe0\xa8\xbe\xe0\xa8\xb0\xe0\xa8\x9a\0"
+       "\xe0\xa8\x85\xe0\xa8\xaa\xe0\xa9\x8d\xe0\xa8\xb0\xe0\xa9\x88\xe0\xa8\xb2\0"
+       "\xe0\xa8\xae\xe0\xa8\x88\0"
+       "\xe0\xa8\x9c\xe0\xa9\x82\xe0\xa8\xa8\0"
+       "\xe0\xa8\x9c\xe0\xa9\x81\xe0\xa8\xb2\xe0\xa8\xbe\xe0\xa8\x88\0"
+       "\xe0\xa8\x85\xe0\xa8\x97\xe0\xa8\xb8\xe0\xa8\xa4\0"
+       "\xe0\xa8\xb8\xe0\xa8\xa4\xe0\xa9\xb0\xe0\xa8\xac\xe0\xa8\xb0\0"
+       "\xe0\xa8\x85\xe0\xa8\x95\xe0\xa8\xa4\xe0\xa9\x82\xe0\xa8\xac\xe0\xa8\xb0\0"
+       "\xe0\xa8\xa8\xe0\xa8\xb5\xe0\xa9\xb0\xe0\xa8\xac\xe0\xa8\xb0\0"
+       "\xe0\xa8\xa6\xe0\xa8\xb8\xe0\xa9\xb0\xe0\xa8\xac\xe0\xa8\xb0\0"
+       "\xe0\xa8\x9c\xe0\xa8\xa8\0"
+       "\xe0\xa8\xab\xe0\xa8\xbc\xe0\xa8\xb0\0"
+       "\xe0\xa8\x85\xe0\xa8\xaa\xe0\xa9\x8d\xe0\xa8\xb0\xe0\xa9\x88\0"
+       "\xe0\xa8\x9c\xe0\xa9\x81\xe0\xa8\xb2\xe0\xa8\xbe\0"
+       "\xe0\xa8\x85\xe0\xa8\x97\0"
+       "\xe0\xa8\xb8\xe0\xa8\xa4\xe0\xa9\xb0\0"
+       "\xe0\xa8\x85\xe0\xa8\x95\xe0\xa8\xa4\xe0\xa9\x82\0"
+       "\xe0\xa8\xa8\xe0\xa8\xb5\xe0\xa9\xb0\0"
+       "\xe0\xa8\xa6\xe0\xa8\xb8\xe0\xa9\xb0\0"
+       "\xe0\xaa\xb0\xe0\xaa\xb5\xe0\xaa\xbf\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\xb8\xe0\xab\x8b\xe0\xaa\xae\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\xae\xe0\xaa\x82\xe0\xaa\x97\xe0\xaa\xb3\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\xac\xe0\xab\x81\xe0\xaa\xa7\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\x97\xe0\xab\x81\xe0\xaa\xb0\xe0\xab\x81\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\xb6\xe0\xab\x81\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\xb0\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\xb6\xe0\xaa\xa8\xe0\xaa\xbf\xe0\xaa\xb5\xe0\xaa\xbe\xe0\xaa\xb0\0"
+       "\xe0\xaa\xb0\xe0\xaa\xb5\xe0\xaa\xbf\0"
+       "\xe0\xaa\xb8\xe0\xab\x8b\xe0\xaa\xae\0"
+       "\xe0\xaa\xae\xe0\xaa\x82\xe0\xaa\x97\xe0\xaa\xb3\0"
+       "\xe0\xaa\xac\xe0\xab\x81\xe0\xaa\xa7\0"
+       "\xe0\xaa\x97\xe0\xab\x81\xe0\xaa\xb0\xe0\xab\x81\0"
+       "\xe0\xaa\xb6\xe0\xab\x81\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\xb0\0"
+       "\xe0\xaa\xb6\xe0\xaa\xa8\xe0\xaa\xbf\0"
+       "\xe0\xaa\xb0\0"
+       "\xe0\xaa\xb8\xe0\xab\x8b\0"
+       "\xe0\xaa\xae\xe0\xaa\x82\0"
+       "\xe0\xaa\xac\xe0\xab\x81\0"
+       "\xe0\xaa\x97\xe0\xab\x81\0"
+       "\xe0\xaa\xb6\xe0\xab\x81\0"
+       "\xe0\xaa\xb6\0"
+       "\xe0\xaa\x9c\xe0\xaa\xbe\xe0\xaa\xa8\xe0\xab\x8d\xe0\xaa\xaf\xe0\xab\x81\xe0\xaa\x86\xe0\xaa\xb0\xe0\xab\x80\0"
+       "\xe0\xaa\xab\xe0\xab\x87\xe0\xaa\xac\xe0\xab\x8d\xe0\xaa\xb0\xe0\xab\x81\xe0\xaa\x86\xe0\xaa\xb0\xe0\xab\x80\0"
+       "\xe0\xaa\xae\xe0\xaa\xbe\xe0\xaa\xb0\xe0\xab\x8d\xe0\xaa\x9a\0"
+       "\xe0\xaa\x8f\xe0\xaa\xaa\xe0\xab\x8d\xe0\xaa\xb0\xe0\xaa\xbf\xe0\xaa\xb2\0"
+       "\xe0\xaa\xae\xe0\xab\x87\0"
+       "\xe0\xaa\x9c\xe0\xab\x82\xe0\xaa\xa8\0"
+       "\xe0\xaa\x9c\xe0\xab\x81\xe0\xaa\xb2\xe0\xaa\xbe\xe0\xaa\x88\0"
+       "\xe0\xaa\x91\xe0\xaa\x97\xe0\xaa\xb8\xe0\xab\x8d\xe0\xaa\x9f\0"
+       "\xe0\xaa\xb8\xe0\xaa\xaa\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x87\xe0\xaa\xae\xe0\xab\x8d\xe0\xaa\xac\xe0\xaa\xb0\0"
+       "\xe0\xaa\x91\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x8b\xe0\xaa\xac\xe0\xaa\xb0\0"
+       "\xe0\xaa\xa8\xe0\xaa\xb5\xe0\xab\x87\xe0\xaa\xae\xe0\xab\x8d\xe0\xaa\xac\xe0\xaa\xb0\0"
+       "\xe0\xaa\xa1\xe0\xaa\xbf\xe0\xaa\xb8\xe0\xab\x87\xe0\xaa\xae\xe0\xab\x8d\xe0\xaa\xac\xe0\xaa\xb0\0"
+       "\xe0\xaa\x9c\xe0\xaa\xbe\xe0\xaa\xa8\xe0\xab\x8d\xe0\xaa\xaf\xe0\xab\x81\0"
+       "\xe0\xaa\xab\xe0\xab\x87\xe0\xaa\xac\xe0\xab\x8d\xe0\xaa\xb0\xe0\xab\x81\0"
+       "\xe0\xaa\xb8\xe0\xaa\xaa\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x87\0"
+       "\xe0\xaa\x91\xe0\xaa\x95\xe0\xab\x8d\xe0\xaa\x9f\xe0\xab\x8b\0"
+       "\xe0\xaa\xa8\xe0\xaa\xb5\xe0\xab\x87\0"
+       "\xe0\xaa\xa1\xe0\xaa\xbf\xe0\xaa\xb8\xe0\xab\x87\0"
+       "\xe0\xac\xb0\xe0\xac\xac\xe0\xac\xbf\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\xb8\xe0\xad\x8b\xe0\xac\xae\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\xae\xe0\xac\x99\xe0\xad\x8d\xe0\xac\x97\xe0\xac\xb3\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\xac\xe0\xad\x81\xe0\xac\xa7\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\x97\xe0\xad\x81\xe0\xac\xb0\xe0\xad\x81\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\xb6\xe0\xad\x81\xe0\xac\x95\xe0\xad\x8d\xe0\xac\xb0\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\xb6\xe0\xac\xa8\xe0\xac\xbf\xe0\xac\xac\xe0\xac\xbe\xe0\xac\xb0\0"
+       "\xe0\xac\xb0\xe0\xac\xac\xe0\xac\xbf\0"
+       "\xe0\xac\xb8\xe0\xad\x8b\xe0\xac\xae\0"
+       "\xe0\xac\xae\xe0\xac\x99\xe0\xad\x8d\xe0\xac\x97\xe0\xac\xb3\0"
+       "\xe0\xac\xac\xe0\xad\x81\xe0\xac\xa7\0"
+       "\xe0\xac\x97\xe0\xad\x81\xe0\xac\xb0\xe0\xad\x81\0"
+       "\xe0\xac\xb6\xe0\xad\x81\xe0\xac\x95\xe0\xad\x8d\xe0\xac\xb0\0"
+       "\xe0\xac\xb6\xe0\xac\xa8\xe0\xac\xbf\0"
+       "\xe0\xac\xb0\0"
+       "\xe0\xac\xb8\xe0\xad\x8b\0"
+       "\xe0\xac\xae\0"
+       "\xe0\xac\xac\xe0\xad\x81\0"
+       "\xe0\xac\x97\xe0\xad\x81\0"
+       "\xe0\xac\xb6\xe0\xad\x81\0"
+       "\xe0\xac\xb6\0"
+       "\xe0\xac\x9c\xe0\xac\xbe\xe0\xac\xa8\xe0\xad\x81\xe0\xac\x86\xe0\xac\xb0\xe0\xad\x80\0"
+       "\xe0\xac\xab\xe0\xad\x87\xe0\xac\xac\xe0\xad\x83\xe0\xac\x86\xe0\xac\xb0\xe0\xad\x80\0"
+       "\xe0\xac\xae\xe0\xac\xbe\xe0\xac\xb0\xe0\xad\x8d\xe0\xac\x9a\xe0\xad\x8d\xe0\xac\x9a\0"
+       "\xe0\xac\x85\xe0\xac\xaa\xe0\xad\x8d\xe0\xac\xb0\xe0\xad\x87\xe0\xac\xb2\0"
+       "\xe0\xac\xae\xe0\xac\x87\0"
+       "\xe0\xac\x9c\xe0\xad\x81\xe0\xac\xa8\0"
+       "\xe0\xac\x9c\xe0\xad\x81\xe0\xac\xb2\xe0\xac\xbe\xe0\xac\x87\0"
+       "\xe0\xac\x85\xe0\xac\x97\xe0\xac\xb7\xe0\xad\x8d\xe0\xac\x9f\0"
+       "\xe0\xac\xb8\xe0\xad\x87\xe0\xac\xaa\xe0\xad\x8d\xe0\xac\x9f\xe0\xad\x87\xe0\xac\xae\xe0\xad\x8d\xe0\xac\xac\xe0\xac\xb0\0"
+       "\xe0\xac\x85\xe0\xac\x95\xe0\xad\x8d\xe0\xac\x9f\xe0\xad\x8b\xe0\xac\xac\xe0\xac\xb0\0"
+       "\xe0\xac\xa8\xe0\xac\xad\xe0\xad\x87\xe0\xac\xae\xe0\xad\x8d\xe0\xac\xac\xe0\xac\xb0\0"
+       "\xe0\xac\xa1\xe0\xac\xbf\xe0\xac\xb8\xe0\xad\x87\xe0\xac\xae\xe0\xad\x8d\xe0\xac\xac\xe0\xac\xb0\0"
+       "\xe0\xae\x9e\xe0\xae\xbe\xe0\xae\xaf\xe0\xae\xbf\xe0\xae\xb1\xe0\xaf\x81\0"
+       "\xe0\xae\xa4\xe0\xae\xbf\xe0\xae\x99\xe0\xaf\x8d\xe0\xae\x95\xe0\xae\xb3\xe0\xaf\x8d\0"
+       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xb5\xe0\xaf\x8d\xe0\xae\xb5\xe0\xae\xbe\xe0\xae\xaf\xe0\xaf\x8d\0"
+       "\xe0\xae\xaa\xe0\xaf\x81\xe0\xae\xa4\xe0\xae\xa9\xe0\xaf\x8d\0"
+       "\xe0\xae\xb5\xe0\xae\xbf\xe0\xae\xaf\xe0\xae\xbe\xe0\xae\xb4\xe0\xae\xa9\xe0\xaf\x8d\0"
+       "\xe0\xae\xb5\xe0\xaf\x86\xe0\xae\xb3\xe0\xaf\x8d\xe0\xae\xb3\xe0\xae\xbf\0"
+       "\xe0\xae\x9a\xe0\xae\xa9\xe0\xae\xbf\0"
+       "\xe0\xae\x9e\xe0\xae\xbe\xe0\xae\xaf\xe0\xae\xbf.\0"
+       "\xe0\xae\xa4\xe0\xae\xbf\xe0\xae\x99\xe0\xaf\x8d.\0"
+       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xb5\xe0\xaf\x8d.\0"
+       "\xe0\xae\xaa\xe0\xaf\x81\xe0\xae\xa4.\0"
+       "\xe0\xae\xb5\xe0\xae\xbf\xe0\xae\xaf\xe0\xae\xbe.\0"
+       "\xe0\xae\xb5\xe0\xaf\x86\xe0\xae\xb3\xe0\xaf\x8d.\0"
+       "\xe0\xae\x9e\xe0\xae\xbe\0"
+       "\xe0\xae\xa4\xe0\xae\xbf\0"
+       "\xe0\xae\x9a\xe0\xaf\x86\0"
+       "\xe0\xae\xaa\xe0\xaf\x81\0"
+       "\xe0\xae\xb5\xe0\xae\xbf\0"
+       "\xe0\xae\xb5\xe0\xaf\x86\0"
+       "\xe0\xae\x9a\0"
+       "\xe0\xae\x9c\xe0\xae\xa9\xe0\xae\xb5\xe0\xae\xb0\xe0\xae\xbf\0"
+       "\xe0\xae\xaa\xe0\xae\xbf\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\xb0\xe0\xae\xb5\xe0\xae\xb0\xe0\xae\xbf\0"
+       "\xe0\xae\xae\xe0\xae\xbe\xe0\xae\xb0\xe0\xaf\x8d\xe0\xae\x9a\xe0\xaf\x8d\0"
+       "\xe0\xae\x8f\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\xb0\xe0\xae\xb2\xe0\xaf\x8d\0"
+       "\xe0\xae\xae\xe0\xaf\x87\0"
+       "\xe0\xae\x9c\xe0\xaf\x82\xe0\xae\xa9\xe0\xaf\x8d\0"
+       "\xe0\xae\x9c\xe0\xaf\x82\xe0\xae\xb2\xe0\xaf\x88\0"
+       "\xe0\xae\x86\xe0\xae\x95\xe0\xae\xb8\xe0\xaf\x8d\xe0\xae\x9f\xe0\xaf\x8d\0"
+       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xaa\xe0\xaf\x8d\xe0\xae\x9f\xe0\xae\xae\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
+       "\xe0\xae\x85\xe0\xae\x95\xe0\xaf\x8d\xe0\xae\x9f\xe0\xaf\x8b\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
+       "\xe0\xae\xa8\xe0\xae\xb5\xe0\xae\xae\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
+       "\xe0\xae\x9f\xe0\xae\xbf\xe0\xae\x9a\xe0\xae\xae\xe0\xaf\x8d\xe0\xae\xaa\xe0\xae\xb0\xe0\xaf\x8d\0"
+       "\xe0\xae\x9c\xe0\xae\xa9.\0"
+       "\xe0\xae\xaa\xe0\xae\xbf\xe0\xae\xaa\xe0\xaf\x8d.\0"
+       "\xe0\xae\xae\xe0\xae\xbe\xe0\xae\xb0\xe0\xaf\x8d.\0"
+       "\xe0\xae\x8f\xe0\xae\xaa\xe0\xaf\x8d.\0"
+       "\xe0\xae\x86\xe0\xae\x95.\0"
+       "\xe0\xae\x9a\xe0\xaf\x86\xe0\xae\xaa\xe0\xaf\x8d.\0"
+       "\xe0\xae\x85\xe0\xae\x95\xe0\xaf\x8d.\0"
+       "\xe0\xae\xa8\xe0\xae\xb5.\0"
+       "\xe0\xae\x9f\xe0\xae\xbf\xe0\xae\x9a.\0"
+       "\xe0\xb0\x86\xe0\xb0\xa6\xe0\xb0\xbf\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\xb8\xe0\xb1\x8b\xe0\xb0\xae\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\xae\xe0\xb0\x82\xe0\xb0\x97\xe0\xb0\xb3\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\xac\xe0\xb1\x81\xe0\xb0\xa7\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\x97\xe0\xb1\x81\xe0\xb0\xb0\xe0\xb1\x81\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\xb6\xe0\xb1\x81\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\xb6\xe0\xb0\xa8\xe0\xb0\xbf\xe0\xb0\xb5\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb0\x82\0"
+       "\xe0\xb0\x86\xe0\xb0\xa6\xe0\xb0\xbf\0"
+       "\xe0\xb0\xb8\xe0\xb1\x8b\xe0\xb0\xae\0"
+       "\xe0\xb0\xae\xe0\xb0\x82\xe0\xb0\x97\xe0\xb0\xb3\0"
+       "\xe0\xb0\xac\xe0\xb1\x81\xe0\xb0\xa7\0"
+       "\xe0\xb0\x97\xe0\xb1\x81\xe0\xb0\xb0\xe0\xb1\x81\0"
+       "\xe0\xb0\xb6\xe0\xb1\x81\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\xb0\0"
+       "\xe0\xb0\xb6\xe0\xb0\xa8\xe0\xb0\xbf\0"
+       "\xe0\xb0\x86\0"
+       "\xe0\xb0\xb8\xe0\xb1\x8b\0"
+       "\xe0\xb0\xae\0"
+       "\xe0\xb0\xac\xe0\xb1\x81\0"
+       "\xe0\xb0\x97\xe0\xb1\x81\0"
+       "\xe0\xb0\xb6\xe0\xb1\x81\0"
+       "\xe0\xb0\xb6\0"
+       "\xe0\xb0\x9c\xe0\xb0\xa8\xe0\xb0\xb5\xe0\xb0\xb0\xe0\xb0\xbf\0"
+       "\xe0\xb0\xab\xe0\xb0\xbf\xe0\xb0\xac\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xb5\xe0\xb0\xb0\xe0\xb0\xbf\0"
+       "\xe0\xb0\xae\xe0\xb0\xbe\xe0\xb0\xb0\xe0\xb1\x8d\xe0\xb0\x9a\xe0\xb0\xbf\0"
+       "\xe0\xb0\x8f\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xbf\xe0\xb0\xb2\xe0\xb1\x8d\0"
+       "\xe0\xb0\xae\xe0\xb1\x87\0"
+       "\xe0\xb0\x9c\xe0\xb1\x82\xe0\xb0\xa8\xe0\xb1\x8d\0"
+       "\xe0\xb0\x9c\xe0\xb1\x81\xe0\xb0\xb2\xe0\xb1\x88\0"
+       "\xe0\xb0\x86\xe0\xb0\x97\xe0\xb0\xb8\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x81\0"
+       "\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x86\xe0\xb0\x82\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
+       "\xe0\xb0\x85\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x8b\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
+       "\xe0\xb0\xa8\xe0\xb0\xb5\xe0\xb0\x82\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
+       "\xe0\xb0\xa1\xe0\xb0\xbf\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\x82\xe0\xb0\xac\xe0\xb0\xb0\xe0\xb1\x8d\0"
+       "\xe0\xb0\x9c\xe0\xb0\xa8\0"
+       "\xe0\xb0\xab\xe0\xb0\xbf\xe0\xb0\xac\xe0\xb1\x8d\xe0\xb0\xb0\0"
+       "\xe0\xb0\x8f\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb0\xbf\0"
+       "\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\xaa\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x86\xe0\xb0\x82\0"
+       "\xe0\xb0\x85\xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\x9f\xe0\xb1\x8b\0"
+       "\xe0\xb0\xa8\xe0\xb0\xb5\xe0\xb0\x82\0"
+       "\xe0\xb0\xa1\xe0\xb0\xbf\xe0\xb0\xb8\xe0\xb1\x86\xe0\xb0\x82\0"
+       "\xe0\xb2\xad\xe0\xb2\xbe\xe0\xb2\xa8\xe0\xb3\x81\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\xb8\xe0\xb3\x8b\xe0\xb2\xae\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\xae\xe0\xb2\x82\xe0\xb2\x97\xe0\xb2\xb3\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\xac\xe0\xb3\x81\xe0\xb2\xa7\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\x97\xe0\xb3\x81\xe0\xb2\xb0\xe0\xb3\x81\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\xb6\xe0\xb3\x81\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\xb6\xe0\xb2\xa8\xe0\xb2\xbf\xe0\xb2\xb5\xe0\xb2\xbe\xe0\xb2\xb0\0"
+       "\xe0\xb2\xad\xe0\xb2\xbe\xe0\xb2\xa8\xe0\xb3\x81\0"
+       "\xe0\xb2\xb8\xe0\xb3\x8b\xe0\xb2\xae\0"
+       "\xe0\xb2\xae\xe0\xb2\x82\xe0\xb2\x97\xe0\xb2\xb3\0"
+       "\xe0\xb2\xac\xe0\xb3\x81\xe0\xb2\xa7\0"
+       "\xe0\xb2\x97\xe0\xb3\x81\xe0\xb2\xb0\xe0\xb3\x81\0"
+       "\xe0\xb2\xb6\xe0\xb3\x81\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\xb0\0"
+       "\xe0\xb2\xb6\xe0\xb2\xa8\xe0\xb2\xbf\0"
+       "\xe0\xb2\xad\xe0\xb2\xbe\0"
+       "\xe0\xb2\xb8\xe0\xb3\x8b\0"
+       "\xe0\xb2\xae\xe0\xb2\x82\0"
+       "\xe0\xb2\xac\xe0\xb3\x81\0"
+       "\xe0\xb2\x97\xe0\xb3\x81\0"
+       "\xe0\xb2\xb6\xe0\xb3\x81\0"
+       "\xe0\xb2\xb6\0"
+       "\xe0\xb2\x9c\xe0\xb2\xa8\xe0\xb2\xb5\xe0\xb2\xb0\xe0\xb2\xbf\0"
+       "\xe0\xb2\xab\xe0\xb3\x86\xe0\xb2\xac\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xb5\xe0\xb2\xb0\xe0\xb2\xbf\0"
+       "\xe0\xb2\xae\xe0\xb2\xbe\xe0\xb2\xb0\xe0\xb3\x8d\xe0\xb2\x9a\xe0\xb3\x8d\0"
+       "\xe0\xb2\x8f\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xbf\xe0\xb2\xb2\xe0\xb3\x8d\0"
+       "\xe0\xb2\xae\xe0\xb3\x87\0"
+       "\xe0\xb2\x9c\xe0\xb3\x82\xe0\xb2\xa8\xe0\xb3\x8d\0"
+       "\xe0\xb2\x9c\xe0\xb3\x81\xe0\xb2\xb2\xe0\xb3\x88\0"
+       "\xe0\xb2\x86\xe0\xb2\x97\xe0\xb2\xb8\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x8d\0"
+       "\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
+       "\xe0\xb2\x85\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x8b\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
+       "\xe0\xb2\xa8\xe0\xb2\xb5\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
+       "\xe0\xb2\xa1\xe0\xb2\xbf\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xac\xe0\xb2\xb0\xe0\xb3\x8d\0"
+       "\xe0\xb2\x9c\xe0\xb2\xa8\0"
+       "\xe0\xb2\xab\xe0\xb3\x86\xe0\xb2\xac\xe0\xb3\x8d\xe0\xb2\xb0\0"
+       "\xe0\xb2\x8f\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb2\xbf\0"
+       "\xe0\xb2\x86\xe0\xb2\x97\0"
+       "\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\xaa\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x86\xe0\xb2\x82\0"
+       "\xe0\xb2\x85\xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\x9f\xe0\xb3\x8b\0"
+       "\xe0\xb2\xa8\xe0\xb2\xb5\xe0\xb3\x86\xe0\xb2\x82\0"
+       "\xe0\xb2\xa1\xe0\xb2\xbf\xe0\xb2\xb8\xe0\xb3\x86\xe0\xb2\x82\0"
+       "\xe0\xb4\x9e\xe0\xb4\xbe\xe0\xb4\xaf\xe0\xb4\xb1\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
+       "\xe0\xb4\xa4\xe0\xb4\xbf\xe0\xb4\x99\xe0\xb5\x8d\xe0\xb4\x95\xe0\xb4\xb3\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
+       "\xe0\xb4\x9a\xe0\xb5\x8a\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xb5\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe0\xb4\x9a\0"
+       "\xe0\xb4\xac\xe0\xb5\x81\xe0\xb4\xa7\xe0\xb4\xa8\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
+       "\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
+       "\xe0\xb4\xb5\xe0\xb5\x86\xe0\xb4\xb3\xe0\xb5\x8d\xe0\xb4\xb3\xe0\xb4\xbf\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
+       "\xe0\xb4\xb6\xe0\xb4\xa8\xe0\xb4\xbf\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9a\0"
+       "\xe0\xb4\x9e\xe0\xb4\xbe\xe0\xb4\xaf\xe0\xb5\xbc\0"
+       "\xe0\xb4\xa4\xe0\xb4\xbf\xe0\xb4\x99\xe0\xb5\x8d\xe0\xb4\x95\xe0\xb5\xbe\0"
+       "\xe0\xb4\x9a\xe0\xb5\x8a\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xb5\0"
+       "\xe0\xb4\xac\xe0\xb5\x81\xe0\xb4\xa7\xe0\xb5\xbb\0"
+       "\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xaf\xe0\xb4\xbe\xe0\xb4\xb4\xe0\xb4\x82\0"
+       "\xe0\xb4\xb5\xe0\xb5\x86\xe0\xb4\xb3\xe0\xb5\x8d\xe0\xb4\xb3\xe0\xb4\xbf\0"
+       "\xe0\xb4\xb6\xe0\xb4\xa8\xe0\xb4\xbf\0"
+       "\xe0\xb4\x9e\xe0\xb4\xbe\0"
+       "\xe0\xb4\xa4\xe0\xb4\xbf\0"
+       "\xe0\xb4\x9a\xe0\xb5\x8a\0"
+       "\xe0\xb4\xac\xe0\xb5\x81\0"
+       "\xe0\xb4\xb5\xe0\xb5\x8d\xe0\xb4\xaf\xe0\xb4\xbe\0"
+       "\xe0\xb4\xb5\xe0\xb5\x86\0"
+       "\xe0\xb4\xb6\0"
+       "\xe0\xb4\x9c\xe0\xb4\xa8\xe0\xb5\x81\xe0\xb4\xb5\xe0\xb4\xb0\xe0\xb4\xbf\0"
+       "\xe0\xb4\xab\xe0\xb5\x86\xe0\xb4\xac\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb5\x81\xe0\xb4\xb5\xe0\xb4\xb0\xe0\xb4\xbf\0"
+       "\xe0\xb4\xae\xe0\xb4\xbe\xe0\xb5\xbc\xe0\xb4\x9a\xe0\xb5\x8d\xe0\xb4\x9a\xe0\xb5\x8d\0"
+       "\xe0\xb4\x8f\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb4\xbf\xe0\xb5\xbd\0"
+       "\xe0\xb4\xae\xe0\xb5\x87\xe0\xb4\xaf\xe0\xb5\x8d\0"
+       "\xe0\xb4\x9c\xe0\xb5\x82\xe0\xb5\xba\0"
+       "\xe0\xb4\x9c\xe0\xb5\x82\xe0\xb4\xb2\xe0\xb5\x88\0"
+       "\xe0\xb4\x93\xe0\xb4\x97\xe0\xb4\xb8\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\0"
+       "\xe0\xb4\xb8\xe0\xb5\x86\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb4\x82\xe0\xb4\xac\xe0\xb5\xbc\0"
+       "\xe0\xb4\x92\xe0\xb4\x95\xe0\xb5\x8d\xe2\x80\x8c\xe0\xb4\x9f\xe0\xb5\x8b\xe0\xb4\xac\xe0\xb5\xbc\0"
+       "\xe0\xb4\xa8\xe0\xb4\xb5\xe0\xb4\x82\xe0\xb4\xac\xe0\xb5\xbc\0"
+       "\xe0\xb4\xa1\xe0\xb4\xbf\xe0\xb4\xb8\xe0\xb4\x82\xe0\xb4\xac\xe0\xb5\xbc\0"
+       "\xe0\xb4\x9c\xe0\xb4\xa8\xe0\xb5\x81\0"
+       "\xe0\xb4\xab\xe0\xb5\x86\xe0\xb4\xac\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb5\x81\0"
+       "\xe0\xb4\xae\xe0\xb4\xbe\xe0\xb5\xbc\0"
+       "\xe0\xb4\x8f\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb0\xe0\xb4\xbf\0"
+       "\xe0\xb4\x93\xe0\xb4\x97\0"
+       "\xe0\xb4\xb8\xe0\xb5\x86\xe0\xb4\xaa\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb5\x8d\xe0\xb4\xb1\xe0\xb4\x82\0"
+       "\xe0\xb4\x92\xe0\xb4\x95\xe0\xb5\x8d\xe0\xb4\x9f\xe0\xb5\x8b\0"
+       "\xe0\xb4\xa8\xe0\xb4\xb5\xe0\xb4\x82\0"
+       "\xe0\xb4\xa1\xe0\xb4\xbf\xe0\xb4\xb8\xe0\xb4\x82\0"
+       "\xe0\xa6\xa6\xe0\xa7\x87\xe0\xa6\x93\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa6\xb8\xe0\xa7\x8b\xe0\xa6\xae\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa6\xae\xe0\xa6\x99\xe0\xa7\x8d\xe0\xa6\x97\xe0\xa6\xb2\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa6\xac\xe0\xa7\x81\xe0\xa6\xa7\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa6\xb6\xe0\xa6\xa8\xe0\xa6\xbf\xe0\xa6\xac\xe0\xa6\xbe\xe0\xa7\xb0\0"
+       "\xe0\xa7\xb0\xe0\xa6\xac\xe0\xa6\xbf\0"
+       "\xe0\xa6\xac\xe0\xa7\x83\xe0\xa6\xb9\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\xaa\xe0\xa6\xa4\xe0\xa6\xbf\0"
+       "\xe0\xa6\xb6\xe0\xa7\x81\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa7\xb0\0"
+       "\xe0\xa6\x9c\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x81\xe0\xa7\xb1\xe0\xa6\xbe\xe0\xa7\xb0\xe0\xa7\x80\0"
+       "\xe0\xa6\xab\xe0\xa7\x87\xe0\xa6\xac\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa7\x81\xe0\xa7\xb1\xe0\xa6\xbe\xe0\xa7\xb0\xe0\xa7\x80\0"
+       "\xe0\xa6\xae\xe0\xa6\xbe\xe0\xa7\xb0\xe0\xa7\x8d\xe0\xa6\x9a\0"
+       "\xe0\xa6\x8f\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa6\xbf\xe0\xa6\xb2\0"
+       "\xe0\xa6\x86\xe0\xa6\x97\xe0\xa6\xb7\xe0\xa7\x8d\xe0\xa6\x9f\0"
+       "\xe0\xa6\x9b\xe0\xa7\x87\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\xa4\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa7\xb0\0"
+       "\xe0\xa6\x85\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x8b\xe0\xa6\xac\xe0\xa7\xb0\0"
+       "\xe0\xa6\xa8\xe0\xa7\xb1\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa7\xb0\0"
+       "\xe0\xa6\xa1\xe0\xa6\xbf\xe0\xa6\x9a\xe0\xa7\x87\xe0\xa6\xae\xe0\xa7\x8d\xe0\xa6\xac\xe0\xa7\xb0\0"
+       "\xe0\xa6\x9c\xe0\xa6\xbe\xe0\xa6\xa8\xe0\xa7\x81\0"
+       "\xe0\xa6\xab\xe0\xa7\x87\xe0\xa6\xac\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa7\x81\0"
+       "\xe0\xa6\x86\xe0\xa6\x97\0"
+       "\xe0\xa6\xb8\xe0\xa7\x87\xe0\xa6\xaa\xe0\xa7\x8d\xe0\xa6\x9f\0"
+       "\xe0\xa6\x85\xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\x9f\xe0\xa7\x8b\0"
+       "\xe0\xa6\xa8\xe0\xa6\xad\xe0\xa7\x87\0"
+       "\xe0\xa6\xa1\xe0\xa6\xbf\xe0\xa6\xb8\xe0\xa7\x87\0"
+       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb3\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb3\0"
+       "\xe0\xa4\x9c\xe0\xa4\xbe\xe0\xa4\xa8\xe0\xa5\x87\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa5\x80\0"
+       "\xe0\xa4\xab\xe0\xa5\x87\xe0\xa4\xac\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x81\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\xe0\xa5\x80\0"
+       "\xe0\xa4\x8f\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xb2\0"
+       "\xe0\xa4\xae\xe0\xa5\x87\0"
+       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xb2\xe0\xa5\x88\0"
+       "\xe0\xa4\x91\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\x9f\0"
+       "\xe0\xa4\xb8\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\x91\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\xa8\xe0\xa5\x8b\xe0\xa4\xb5\xe0\xa5\x8d\xe0\xa4\xb9\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\xa1\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\x9c\xe0\xa4\xbe\xe0\xa4\xa8\xe0\xa5\x87\0"
+       "\xe0\xa4\xab\xe0\xa5\x87\xe0\xa4\xac\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x81\0"
+       "\xe0\xa4\x8f\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xbf\0"
+       "\xe0\xa4\x91\xe0\xa4\x97\0"
+       "\xe0\xa4\xb8\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\x82\0"
+       "\xe0\xa4\x91\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\0"
+       "\xe0\xa4\xa8\xe0\xa5\x8b\xe0\xa4\xb5\xe0\xa5\x8d\xe0\xa4\xb9\xe0\xa5\x87\xe0\xa4\x82\0"
+       "\xe0\xa4\xa1\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\x82\0"
+       "\xd0\xbd\xd1\x8f\xd0\xbc\0"
+       "\xd0\xb4\xd0\xb0\xd0\xb2\xd0\xb0\xd0\xb0\0"
+       "\xd0\xbc\xd1\x8f\xd0\xb3\xd0\xbc\xd0\xb0\xd1\x80\0"
+       "\xd0\xbb\xd1\x85\xd0\xb0\xd0\xb3\xd0\xb2\xd0\xb0\0"
+       "\xd0\xbf\xd2\xaf\xd1\x80\xd1\x8d\xd0\xb2\0"
+       "\xd0\xb1\xd0\xb0\xd0\xb0\xd1\x81\xd0\xb0\xd0\xbd\0"
+       "\xd0\xb1\xd1\x8f\xd0\xbc\xd0\xb1\xd0\xb0\0"
+       "\xd0\x9d\xd1\x8f\0"
+       "\xd0\x94\xd0\xb0\0"
+       "\xd0\x9c\xd1\x8f\0"
+       "\xd0\x9b\xd1\x85\0"
+       "\xd0\x9f\xd2\xaf\0"
+       "\xd0\x91\xd0\xb0\0"
+       "\xd0\x91\xd1\x8f\0"
+       "\xd0\x9d\xd1\x8d\xd0\xb3\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\xa5\xd0\xbe\xd1\x91\xd1\x80\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x93\xd1\x83\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x94\xd3\xa9\xd1\x80\xd3\xa9\xd0\xb2\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\xa2\xd0\xb0\xd0\xb2\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x97\xd1\x83\xd1\x80\xd0\xb3\xd0\xb0\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x94\xd0\xbe\xd0\xbb\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x9d\xd0\xb0\xd0\xb9\xd0\xbc\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x95\xd1\x81\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x90\xd1\x80\xd0\xb0\xd0\xb2\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x90\xd1\x80\xd0\xb2\xd0\xb0\xd0\xbd \xd0\xbd\xd1\x8d\xd0\xb3\xd0\xb4\xd2\xaf\xd0\xb3\xd1\x8d\xd1\x8d\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xd0\x90\xd1\x80\xd0\xb2\xd0\xb0\xd0\xbd \xd1\x85\xd0\xbe\xd1\x91\xd1\x80\xd0\xb4\xd1\x83\xd0\xb3\xd0\xb0\xd0\xb0\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "1-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "2-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "3-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "4-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "5-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "6-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "7-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "8-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "9-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "10-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "11-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "12-\xd1\x80 \xd1\x81\xd0\xb0\xd1\x80\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x98\xe0\xbc\x8b\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x98\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x98\xe0\xbd\xa2\xe0\xbc\x8b\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\xa3\xe0\xbe\xb7\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x95\xe0\xbd\xb4\xe0\xbd\xa2\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xb4\xe0\xbc\x8b\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbd\x84\xe0\xbd\xa6\xe0\xbc\x8b\0"
+       "\xe0\xbd\x82\xe0\xbd\x9f\xe0\xbd\xa0\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbe\xa4\xe0\xbd\xba\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x98\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\0"
+       "\xe0\xbd\x98\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x98\xe0\xbd\xa2\xe0\xbc\x8b\0"
+       "\xe0\xbd\xa3\xe0\xbe\xb7\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x95\xe0\xbd\xb4\xe0\xbd\xa2\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xb4\xe0\xbc\x8b\0"
+       "\xe0\xbd\x94\xe0\xbc\x8b\xe0\xbd\xa6\xe0\xbd\x84\xe0\xbd\xa6\xe0\xbc\x8b\0"
+       "\xe0\xbd\xa6\xe0\xbe\xa4\xe0\xbd\xba\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x89\xe0\xbd\xb2\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\0"
+       "\xe0\xbd\x98\xe0\xbd\xb2\xe0\xbd\x82\0"
+       "\xe0\xbd\xa3\xe0\xbe\xb7\xe0\xbd\x82\0"
+       "\xe0\xbd\x95\xe0\xbd\xb4\xe0\xbd\xa2\0"
+       "\xe0\xbd\xa6\xe0\xbd\x84\xe0\xbd\xa6\0"
+       "\xe0\xbd\xa6\xe0\xbe\xa4\xe0\xbd\xba\xe0\xbd\x93\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x84\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbd\xbc\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbd\xa6\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\xa6\xe0\xbd\xb4\xe0\xbd\x98\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x9e\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\xa3\xe0\xbe\x94\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbe\xb2\xe0\xbd\xb4\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x91\xe0\xbd\xb4\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xa2\xe0\xbe\x92\xe0\xbe\xb1\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x82\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x85\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbd\xa6\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbc\x8b\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x84\xe0\xbc\x8b\xe0\xbd\x94\xe0\xbd\xbc\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbd\xa6\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\xa6\xe0\xbd\xb4\xe0\xbd\x98\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x9e\xe0\xbd\xb2\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\xa3\xe0\xbe\x94\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbe\xb2\xe0\xbd\xb4\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x91\xe0\xbd\xb4\xe0\xbd\x93\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\xa2\xe0\xbe\x92\xe0\xbe\xb1\xe0\xbd\x91\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x91\xe0\xbd\x82\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x85\xe0\xbd\xb2\xe0\xbd\x82\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbc\x8b\xe0\xbd\x96\xe0\xbd\x85\xe0\xbd\xb4\xe0\xbc\x8b\xe0\xbd\x82\xe0\xbd\x89\xe0\xbd\xb2\xe0\xbd\xa6\xe0\xbc\x8b\xe0\xbd\x94\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa2\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa3\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa4\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa5\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa6\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa7\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa8\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa9\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\xe0\xbc\xa0\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\xe0\xbc\xa1\0"
+       "\xe0\xbd\x9f\xe0\xbe\xb3\xe0\xbc\x8b\xe0\xbc\xa1\xe0\xbc\xa2\0"
+       "Dydd Sul\0"
+       "Dydd Llun\0"
+       "Dydd Mawrth\0"
+       "Dydd Mercher\0"
+       "Dydd Iau\0"
+       "Dydd Gwener\0"
+       "Dydd Sadwrn\0"
+       "Sul\0"
+       "Llun\0"
+       "Mer\0"
+       "Iau\0"
+       "Gwe\0"
+       "Sad\0"
+       "Ll\0"
+       "Ionawr\0"
+       "Chwefror\0"
+       "Mawrth\0"
+       "Ebrill\0"
+       "Mehefin\0"
+       "Gorffennaf\0"
+       "Awst\0"
+       "Medi\0"
+       "Hydref\0"
+       "Tachwedd\0"
+       "Rhagfyr\0"
+       "Ion\0"
+       "Chw\0"
+       "Ebr\0"
+       "Meh\0"
+       "Gor\0"
+       "Hyd\0"
+       "Tach\0"
+       "Rhag\0"
+       "\xe1\x9e\xa2\xe1\x9e\xb6\xe1\x9e\x91\xe1\x9e\xb7\xe1\x9e\x8f\xe1\x9f\x92\xe1\x9e\x99\0"
+       "\xe1\x9e\x85\xe1\x9f\x90\xe1\x9e\x93\xe1\x9f\x92\xe1\x9e\x91\0"
+       "\xe1\x9e\xa2\xe1\x9e\x84\xe1\x9f\x92\xe1\x9e\x82\xe1\x9e\xb6\xe1\x9e\x9a\0"
+       "\xe1\x9e\x96\xe1\x9e\xbb\xe1\x9e\x92\0"
+       "\xe1\x9e\x96\xe1\x9f\x92\xe1\x9e\x9a\xe1\x9e\xa0\xe1\x9e\x9f\xe1\x9f\x92\xe1\x9e\x94\xe1\x9e\x8f\xe1\x9e\xb7\xe1\x9f\x8d\0"
+       "\xe1\x9e\x9f\xe1\x9e\xbb\xe1\x9e\x80\xe1\x9f\x92\xe1\x9e\x9a\0"
+       "\xe1\x9e\x9f\xe1\x9f\x85\xe1\x9e\x9a\xe1\x9f\x8d\0"
+       "\xe1\x9e\xa2\0"
+       "\xe1\x9e\x85\0"
+       "\xe1\x9e\x96\0"
+       "\xe1\x9e\x9f\0"
+       "\xe1\x9e\x98\xe1\x9e\x80\xe1\x9e\x9a\xe1\x9e\xb6\0"
+       "\xe1\x9e\x80\xe1\x9e\xbb\xe1\x9e\x98\xe1\x9f\x92\xe1\x9e\x97\xe1\x9f\x88\0"
+       "\xe1\x9e\x98\xe1\x9e\xb8\xe1\x9e\x93\xe1\x9e\xb6\0"
+       "\xe1\x9e\x98\xe1\x9f\x81\xe1\x9e\x9f\xe1\x9e\xb6\0"
+       "\xe1\x9e\xa7\xe1\x9e\x9f\xe1\x9e\x97\xe1\x9e\xb6\0"
+       "\xe1\x9e\x98\xe1\x9e\xb7\xe1\x9e\x90\xe1\x9e\xbb\xe1\x9e\x93\xe1\x9e\xb6\0"
+       "\xe1\x9e\x80\xe1\x9e\x80\xe1\x9f\x92\xe1\x9e\x80\xe1\x9e\x8a\xe1\x9e\xb6\0"
+       "\xe1\x9e\x9f\xe1\x9e\xb8\xe1\x9e\xa0\xe1\x9e\xb6\0"
+       "\xe1\x9e\x80\xe1\x9e\x89\xe1\x9f\x92\xe1\x9e\x89\xe1\x9e\xb6\0"
+       "\xe1\x9e\x8f\xe1\x9e\xbb\xe1\x9e\x9b\xe1\x9e\xb6\0"
+       "\xe1\x9e\x9c\xe1\x9e\xb7\xe1\x9e\x85\xe1\x9f\x92\xe1\x9e\x86\xe1\x9e\xb7\xe1\x9e\x80\xe1\x9e\xb6\0"
+       "\xe1\x9e\x92\xe1\x9f\x92\xe1\x9e\x93\xe1\x9e\xbc\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xad\xe0\xba\xb2\xe0\xba\x97\xe0\xba\xb4\xe0\xba\x94\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x88\xe0\xba\xb1\xe0\xba\x99\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xad\xe0\xba\xb1\xe0\xba\x87\xe0\xba\x84\xe0\xba\xb2\xe0\xba\x99\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x9e\xe0\xba\xb8\xe0\xba\x94\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x9e\xe0\xba\xb0\xe0\xba\xab\xe0\xba\xb1\xe0\xba\x94\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xaa\xe0\xba\xb8\xe0\xba\x81\0"
+       "\xe0\xba\xa7\xe0\xba\xb1\xe0\xba\x99\xe0\xbb\x80\xe0\xba\xaa\xe0\xba\xbb\xe0\xba\xb2\0"
+       "\xe0\xba\xad\xe0\xba\xb2\xe0\xba\x97\xe0\xba\xb4\xe0\xba\x94\0"
+       "\xe0\xba\x88\xe0\xba\xb1\xe0\xba\x99\0"
+       "\xe0\xba\xad\xe0\xba\xb1\xe0\xba\x87\xe0\xba\x84\xe0\xba\xb2\xe0\xba\x99\0"
+       "\xe0\xba\x9e\xe0\xba\xb8\xe0\xba\x94\0"
+       "\xe0\xba\x9e\xe0\xba\xb0\xe0\xba\xab\xe0\xba\xb1\xe0\xba\x94\0"
+       "\xe0\xba\xaa\xe0\xba\xb8\xe0\xba\x81\0"
+       "\xe0\xbb\x80\xe0\xba\xaa\xe0\xba\xbb\xe0\xba\xb2\0"
+       "\xe0\xba\xad\xe0\xba\xb2\0"
+       "\xe0\xba\x88\0"
+       "\xe0\xba\xad\0"
+       "\xe0\xba\x9e\0"
+       "\xe0\xba\x9e\xe0\xba\xab\0"
+       "\xe0\xba\xaa\xe0\xba\xb8\0"
+       "\xe0\xba\xaa\0"
+       "\xe0\xba\xa1\xe0\xba\xb1\xe0\xba\x87\xe0\xba\x81\xe0\xba\xad\xe0\xba\x99\0"
+       "\xe0\xba\x81\xe0\xba\xb8\xe0\xba\xa1\xe0\xba\x9e\xe0\xba\xb2\0"
+       "\xe0\xba\xa1\xe0\xba\xb5\xe0\xba\x99\xe0\xba\xb2\0"
+       "\xe0\xbb\x80\xe0\xba\xa1\xe0\xba\xaa\xe0\xba\xb2\0"
+       "\xe0\xba\x9e\xe0\xba\xb6\xe0\xba\x94\xe0\xba\xaa\xe0\xba\xb0\xe0\xba\x9e\xe0\xba\xb2\0"
+       "\xe0\xba\xa1\xe0\xba\xb4\xe0\xba\x96\xe0\xba\xb8\xe0\xba\x99\xe0\xba\xb2\0"
+       "\xe0\xba\x81\xe0\xbb\x8d\xe0\xba\xa5\xe0\xba\xb0\xe0\xba\x81\xe0\xba\xbb\xe0\xba\x94\0"
+       "\xe0\xba\xaa\xe0\xba\xb4\xe0\xba\x87\xe0\xba\xab\xe0\xba\xb2\0"
+       "\xe0\xba\x81\xe0\xba\xb1\xe0\xba\x99\xe0\xba\x8d\xe0\xba\xb2\0"
+       "\xe0\xba\x95\xe0\xba\xb8\xe0\xba\xa5\xe0\xba\xb2\0"
+       "\xe0\xba\x9e\xe0\xba\xb0\xe0\xba\x88\xe0\xba\xb4\xe0\xba\x81\0"
+       "\xe0\xba\x97\xe0\xba\xb1\xe0\xba\x99\xe0\xba\xa7\xe0\xba\xb2\0"
+       "\xe0\xba\xa1.\xe0\xba\x81.\0"
+       "\xe0\xba\x81.\xe0\xba\x9e.\0"
+       "\xe0\xba\xa1.\xe0\xba\x99.\0"
+       "\xe0\xba\xa1.\xe0\xba\xaa.\0"
+       "\xe0\xba\x9e.\xe0\xba\x9e.\0"
+       "\xe0\xba\xa1\xe0\xba\xb4.\xe0\xba\x96.\0"
+       "\xe0\xba\x81.\xe0\xba\xa5.\0"
+       "\xe0\xba\xaa.\xe0\xba\xab.\0"
+       "\xe0\xba\x81.\xe0\xba\x8d.\0"
+       "\xe0\xba\x95.\xe0\xba\xa5.\0"
+       "\xe0\xba\x9e.\xe0\xba\x88.\0"
+       "\xe0\xba\x97.\xe0\xba\xa7.\0"
+       "\xe1\x80\x90\xe1\x80\x94\xe1\x80\x84\xe1\x80\xba\xe1\x80\xb9\xe1\x80\x82\xe1\x80\x94\xe1\x80\xbd\xe1\x80\xb1\0"
+       "\xe1\x80\x90\xe1\x80\x94\xe1\x80\x84\xe1\x80\xba\xe1\x80\xb9\xe1\x80\x9c\xe1\x80\xac\0"
+       "\xe1\x80\xa1\xe1\x80\x84\xe1\x80\xba\xe1\x80\xb9\xe1\x80\x82\xe1\x80\xab\0"
+       "\xe1\x80\x97\xe1\x80\xaf\xe1\x80\x92\xe1\x80\xb9\xe1\x80\x93\xe1\x80\x9f\xe1\x80\xb0\xe1\x80\xb8\0"
+       "\xe1\x80\x80\xe1\x80\xbc\xe1\x80\xac\xe1\x80\x9e\xe1\x80\x95\xe1\x80\x90\xe1\x80\xb1\xe1\x80\xb8\0"
+       "\xe1\x80\x9e\xe1\x80\xb1\xe1\x80\xac\xe1\x80\x80\xe1\x80\xbc\xe1\x80\xac\0"
+       "\xe1\x80\x85\xe1\x80\x94\xe1\x80\xb1\0"
+       "\xe1\x80\x90\0"
+       "\xe1\x80\xa1\0"
+       "\xe1\x80\x97\0"
+       "\xe1\x80\x80\0"
+       "\xe1\x80\x9e\0"
+       "\xe1\x80\x85\0"
+       "\xe1\x80\x87\xe1\x80\x94\xe1\x80\xba\xe1\x80\x94\xe1\x80\x9d\xe1\x80\xab\xe1\x80\x9b\xe1\x80\xae\0"
+       "\xe1\x80\x96\xe1\x80\xb1\xe1\x80\x96\xe1\x80\xb1\xe1\x80\xac\xe1\x80\xba\xe1\x80\x9d\xe1\x80\xab\xe1\x80\x9b\xe1\x80\xae\0"
+       "\xe1\x80\x99\xe1\x80\x90\xe1\x80\xba\0"
+       "\xe1\x80\xa7\xe1\x80\x95\xe1\x80\xbc\xe1\x80\xae\0"
+       "\xe1\x80\x99\xe1\x80\xb1\0"
+       "\xe1\x80\x87\xe1\x80\xbd\xe1\x80\x94\xe1\x80\xba\0"
+       "\xe1\x80\x87\xe1\x80\xb0\xe1\x80\x9c\xe1\x80\xad\xe1\x80\xaf\xe1\x80\x84\xe1\x80\xba\0"
+       "\xe1\x80\xa9\xe1\x80\x82\xe1\x80\xaf\xe1\x80\x90\xe1\x80\xba\0"
+       "\xe1\x80\x85\xe1\x80\x80\xe1\x80\xba\xe1\x80\x90\xe1\x80\x84\xe1\x80\xba\xe1\x80\x98\xe1\x80\xac\0"
+       "\xe1\x80\xa1\xe1\x80\xb1\xe1\x80\xac\xe1\x80\x80\xe1\x80\xba\xe1\x80\x90\xe1\x80\xad\xe1\x80\xaf\xe1\x80\x98\xe1\x80\xac\0"
+       "\xe1\x80\x94\xe1\x80\xad\xe1\x80\xaf\xe1\x80\x9d\xe1\x80\x84\xe1\x80\xba\xe1\x80\x98\xe1\x80\xac\0"
+       "\xe1\x80\x92\xe1\x80\xae\xe1\x80\x87\xe1\x80\x84\xe1\x80\xba\xe1\x80\x98\xe1\x80\xac\0"
+       "\xe1\x80\x87\xe1\x80\x94\xe1\x80\xba\0"
+       "\xe1\x80\x96\xe1\x80\xb1\0"
+       "\xe1\x80\xa7\0"
+       "\xe1\x80\x87\xe1\x80\xb0\0"
+       "\xe1\x80\xa9\0"
+       "\xe1\x80\x85\xe1\x80\x80\xe1\x80\xba\0"
+       "\xe1\x80\xa1\xe1\x80\xb1\xe1\x80\xac\xe1\x80\x80\xe1\x80\xba\0"
+       "\xe1\x80\x94\xe1\x80\xad\xe1\x80\xaf\0"
+       "\xe1\x80\x92\xe1\x80\xae\0"
+       "luns\0"
+       "m\xc3\xa9rcores\0"
+       "xoves\0"
+       "venres\0"
+       "Dom.\0"
+       "Luns\0"
+       "Mar.\0"
+       "M\xc3\xa9r.\0"
+       "Xov.\0"
+       "Ven.\0"
+       "S\xc3\xa1\x62.\0"
+       "Xaneiro\0"
+       "Febreiro\0"
+       "Marzo\0"
+       "Abril\0"
+       "Maio\0"
+       "Xu\xc3\xb1o\0"
+       "Xullo\0"
+       "Agosto\0"
+       "Setembro\0"
+       "Outubro\0"
+       "Novembro\0"
+       "Decembro\0"
+       "xaneiro\0"
+       "febreiro\0"
+       "xu\xc3\xb1o\0"
+       "xullo\0"
+       "decembro\0"
+       "Xan.\0"
+       "Abr.\0"
+       "Xul.\0"
+       "Ago.\0"
+       "Set.\0"
+       "Out.\0"
+       "Dec.\0"
+       "\xe0\xa4\x86\xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xa4\xe0\xa5\x8d\xe0\xa4\xaf\xe0\xa4\xb5\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xae\xe0\xa4\x82\xe0\xa4\x97\xe0\xa4\xb3\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\x93\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\x9f\0"
+       "\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\x93\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xb6\x89\xe0\xb6\xbb\xe0\xb7\x92\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb7\x83\xe0\xb6\xb3\xe0\xb7\x94\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb6\x85\xe0\xb6\x9f\xe0\xb7\x84\xe0\xb6\xbb\xe0\xb7\x94\xe0\xb7\x80\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb6\xb6\xe0\xb6\xaf\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb6\xb6\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x84\xe0\xb7\x83\xe0\xb7\x8a\xe0\xb6\xb4\xe0\xb6\xad\xe0\xb7\x92\xe0\xb6\xb1\xe0\xb7\x8a\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb7\x83\xe0\xb7\x92\xe0\xb6\x9a\xe0\xb7\x94\xe0\xb6\xbb\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb7\x83\xe0\xb7\x99\xe0\xb6\xb1\xe0\xb7\x83\xe0\xb7\x94\xe0\xb6\xbb\xe0\xb7\x8f\xe0\xb6\xaf\xe0\xb7\x8f\0"
+       "\xe0\xb6\x85\xe0\xb6\x9f\xe0\xb7\x84\0"
+       "\xe0\xb6\xb6\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x84\xe0\xb7\x83\xe0\xb7\x8a\0"
+       "\xe0\xb7\x83\xe0\xb7\x92\xe0\xb6\x9a\xe0\xb7\x94\0"
+       "\xe0\xb7\x83\xe0\xb7\x99\xe0\xb6\xb1\0"
+       "\xe0\xb6\x89\0"
+       "\xe0\xb7\x83\0"
+       "\xe0\xb6\x85\0"
+       "\xe0\xb6\xb6\0"
+       "\xe0\xb6\xb6\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\0"
+       "\xe0\xb7\x83\xe0\xb7\x92\0"
+       "\xe0\xb7\x83\xe0\xb7\x99\0"
+       "\xe0\xb6\xa2\xe0\xb6\xb1\xe0\xb7\x80\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x92\0"
+       "\xe0\xb6\xb4\xe0\xb7\x99\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x80\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x92\0"
+       "\xe0\xb6\xb8\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x94\0"
+       "\xe0\xb6\x85\xe0\xb6\xb4\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x9a\xe0\xb6\xbd\xe0\xb7\x8a\0"
+       "\xe0\xb6\xb8\xe0\xb7\x90\xe0\xb6\xba\xe0\xb7\x92\0"
+       "\xe0\xb6\xa2\xe0\xb7\x96\xe0\xb6\xb1\xe0\xb7\x92\0"
+       "\xe0\xb6\xa2\xe0\xb7\x96\xe0\xb6\xbd\xe0\xb7\x92\0"
+       "\xe0\xb6\x85\xe0\xb6\x9c\xe0\xb7\x9d\xe0\xb7\x83\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x94\0"
+       "\xe0\xb7\x83\xe0\xb7\x90\xe0\xb6\xb4\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x90\xe0\xb6\xb8\xe0\xb7\x8a\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
+       "\xe0\xb6\x94\xe0\xb6\x9a\xe0\xb7\x8a\xe0\xb6\xad\xe0\xb7\x9d\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
+       "\xe0\xb6\xb1\xe0\xb7\x9c\xe0\xb7\x80\xe0\xb7\x90\xe0\xb6\xb8\xe0\xb7\x8a\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
+       "\xe0\xb6\xaf\xe0\xb7\x99\xe0\xb7\x83\xe0\xb7\x90\xe0\xb6\xb8\xe0\xb7\x8a\xe0\xb6\xb6\xe0\xb6\xbb\xe0\xb7\x8a\0"
+       "\xe0\xb6\xa2\xe0\xb6\xb1\0"
+       "\xe0\xb6\xb4\xe0\xb7\x99\xe0\xb6\xb6\0"
+       "\xe0\xb6\xb8\xe0\xb7\x8f\xe0\xb6\xbb\xe0\xb7\x8a\0"
+       "\xe0\xb6\x85\xe0\xb6\x9c\xe0\xb7\x9d\0"
+       "\xe0\xb7\x83\xe0\xb7\x90\xe0\xb6\xb4\xe0\xb7\x8a\0"
+       "\xe0\xb6\x94\xe0\xb6\x9a\xe0\xb7\x8a\0"
+       "\xe0\xb6\xb1\xe0\xb7\x9c\xe0\xb7\x80\xe0\xb7\x90\0"
+       "\xe0\xb6\xaf\xe0\xb7\x99\xe0\xb7\x83\xe0\xb7\x90\0"
+       "\xe1\x8e\xa4\xe1\x8e\xbe\xe1\x8f\x99\xe1\x8f\x93\xe1\x8f\x86\xe1\x8f\x8d\xe1\x8e\xac\0"
+       "\xe1\x8e\xa4\xe1\x8e\xbe\xe1\x8f\x99\xe1\x8f\x93\xe1\x8f\x89\xe1\x8f\x85\xe1\x8e\xaf\0"
+       "\xe1\x8f\x94\xe1\x8e\xb5\xe1\x8f\x81\xe1\x8e\xa2\xe1\x8e\xa6\0"
+       "\xe1\x8f\xa6\xe1\x8e\xa2\xe1\x8f\x81\xe1\x8e\xa2\xe1\x8e\xa6\0"
+       "\xe1\x8f\x85\xe1\x8e\xa9\xe1\x8f\x81\xe1\x8e\xa2\xe1\x8e\xa6\0"
+       "\xe1\x8f\xa7\xe1\x8e\xbe\xe1\x8e\xa9\xe1\x8e\xb6\xe1\x8f\x8d\xe1\x8f\x97\0"
+       "\xe1\x8e\xa4\xe1\x8e\xbe\xe1\x8f\x99\xe1\x8f\x93\xe1\x8f\x88\xe1\x8f\x95\xe1\x8e\xbe\0"
+       "\xe1\x8f\x86\xe1\x8f\x8d\xe1\x8e\xac\0"
+       "\xe1\x8f\x89\xe1\x8f\x85\xe1\x8e\xaf\0"
+       "\xe1\x8f\x94\xe1\x8e\xb5\xe1\x8f\x81\0"
+       "\xe1\x8f\xa6\xe1\x8e\xa2\xe1\x8f\x81\0"
+       "\xe1\x8f\x85\xe1\x8e\xa9\xe1\x8f\x81\0"
+       "\xe1\x8f\xa7\xe1\x8e\xbe\xe1\x8e\xa9\0"
+       "\xe1\x8f\x88\xe1\x8f\x95\xe1\x8e\xbe\0"
+       "\xe1\x8f\x86\0"
+       "\xe1\x8f\x89\0"
+       "\xe1\x8f\x94\0"
+       "\xe1\x8f\xa6\0"
+       "\xe1\x8f\x85\0"
+       "\xe1\x8f\xa7\0"
+       "\xe1\x8e\xa4\0"
+       "\xe1\x8e\xa4\xe1\x8f\x83\xe1\x8e\xb8\xe1\x8f\x94\xe1\x8f\x85\0"
+       "\xe1\x8e\xa7\xe1\x8e\xa6\xe1\x8e\xb5\0"
+       "\xe1\x8e\xa0\xe1\x8f\x85\xe1\x8f\xb1\0"
+       "\xe1\x8e\xa7\xe1\x8f\xac\xe1\x8f\x82\0"
+       "\xe1\x8e\xa0\xe1\x8f\x82\xe1\x8f\x8d\xe1\x8e\xac\xe1\x8f\x98\0"
+       "\xe1\x8f\x95\xe1\x8e\xad\xe1\x8e\xb7\xe1\x8f\xb1\0"
+       "\xe1\x8e\xab\xe1\x8f\xb0\xe1\x8f\x89\xe1\x8f\x82\0"
+       "\xe1\x8e\xa6\xe1\x8e\xb6\xe1\x8f\x82\0"
+       "\xe1\x8f\x9a\xe1\x8e\xb5\xe1\x8f\x8d\xe1\x8f\x97\0"
+       "\xe1\x8f\x9a\xe1\x8f\x82\xe1\x8f\x85\xe1\x8f\x97\0"
+       "\xe1\x8f\x85\xe1\x8f\x93\xe1\x8f\x95\xe1\x8f\x86\0"
+       "\xe1\x8e\xa5\xe1\x8f\x8d\xe1\x8e\xa9\xe1\x8f\xb1\0"
+       "\xe1\x8e\xa4\xe1\x8f\x83\0"
+       "\xe1\x8e\xa7\xe1\x8e\xa6\0"
+       "\xe1\x8e\xa0\xe1\x8f\x85\0"
+       "\xe1\x8e\xa7\xe1\x8f\xac\0"
+       "\xe1\x8e\xa0\xe1\x8f\x82\0"
+       "\xe1\x8f\x95\xe1\x8e\xad\0"
+       "\xe1\x8e\xab\xe1\x8f\xb0\0"
+       "\xe1\x8e\xa6\xe1\x8e\xb6\0"
+       "\xe1\x8f\x9a\xe1\x8e\xb5\0"
+       "\xe1\x8f\x9a\xe1\x8f\x82\0"
+       "\xe1\x8f\x85\xe1\x8f\x93\0"
+       "\xe1\x8e\xa5\xe1\x8f\x8d\0"
+       "\xe1\x8a\xa5\xe1\x88\x91\xe1\x8b\xb5\0"
+       "\xe1\x88\xb0\xe1\x8a\x9e\0"
+       "\xe1\x88\x9b\xe1\x8a\xad\xe1\x88\xb0\xe1\x8a\x9e\0"
+       "\xe1\x88\xa8\xe1\x89\xa1\xe1\x8b\x95\0"
+       "\xe1\x88\x90\xe1\x88\x99\xe1\x88\xb5\0"
+       "\xe1\x8b\x93\xe1\x88\xad\xe1\x89\xa5\0"
+       "\xe1\x89\x85\xe1\x8b\xb3\xe1\x88\x9c\0"
+       "\xe1\x88\x9b\xe1\x8a\xad\xe1\x88\xb0\0"
+       "\xe1\x8a\xa5\0"
+       "\xe1\x88\xb0\0"
+       "\xe1\x88\x9b\0"
+       "\xe1\x88\xa8\0"
+       "\xe1\x88\x90\0"
+       "\xe1\x8b\x93\0"
+       "\xe1\x89\x85\0"
+       "\xe1\x8c\x83\xe1\x8a\x95\xe1\x8b\xa9\xe1\x8b\x88\xe1\x88\xaa\0"
+       "\xe1\x8d\x8c\xe1\x89\xa5\xe1\x88\xa9\xe1\x8b\x88\xe1\x88\xaa\0"
+       "\xe1\x88\x9b\xe1\x88\xad\xe1\x89\xbd\0"
+       "\xe1\x8a\xa4\xe1\x8d\x95\xe1\x88\xaa\xe1\x88\x8d\0"
+       "\xe1\x88\x9c\xe1\x8b\xad\0"
+       "\xe1\x8c\x81\xe1\x8a\x95\0"
+       "\xe1\x8c\x81\xe1\x88\x8b\xe1\x8b\xad\0"
+       "\xe1\x8a\xa6\xe1\x8c\x88\xe1\x88\xb5\xe1\x89\xb5\0"
+       "\xe1\x88\xb4\xe1\x8d\x95\xe1\x89\xb4\xe1\x88\x9d\xe1\x89\xa0\xe1\x88\xad\0"
+       "\xe1\x8a\xa6\xe1\x8a\xad\xe1\x89\xb6\xe1\x89\xa0\xe1\x88\xad\0"
+       "\xe1\x8a\x96\xe1\x89\xac\xe1\x88\x9d\xe1\x89\xa0\xe1\x88\xad\0"
+       "\xe1\x8b\xb2\xe1\x88\xb4\xe1\x88\x9d\xe1\x89\xa0\xe1\x88\xad\0"
+       "\xe1\x8c\x83\xe1\x8a\x95\xe1\x8b\xa9\0"
+       "\xe1\x8d\x8c\xe1\x89\xa5\xe1\x88\xa9\0"
+       "\xe1\x8a\xa4\xe1\x8d\x95\xe1\x88\xaa\0"
+       "\xe1\x8a\xa6\xe1\x8c\x88\xe1\x88\xb5\0"
+       "\xe1\x88\xb4\xe1\x8d\x95\xe1\x89\xb4\0"
+       "\xe1\x8a\xa6\xe1\x8a\xad\xe1\x89\xb6\0"
+       "\xe1\x8a\x96\xe1\x89\xac\xe1\x88\x9d\0"
+       "\xe1\x8b\xb2\xe1\x88\xb4\xe1\x88\x9d\0"
+       "Asamas\0"
+       "Aynas\0"
+       "Asinas\0"
+       "Akras\0"
+       "Akwas\0"
+       "Asimwas\0"
+       "Asi\xe1\xb8\x8dyas\0"
+       "Asa\0"
+       "Ayn\0"
+       "Asn\0"
+       "Akr\0"
+       "Akw\0"
+       "Asm\0"
+       "As\xe1\xb8\x8d\0"
+       "Yennayer\0"
+       "Yebrayer\0"
+       "Ibrir\0"
+       "Mayyu\0"
+       "Yunyu\0"
+       "Yulyuz\0"
+       "\xc6\x94uct\0"
+       "Cutanbir\0"
+       "K\xe1\xb9\xaduber\0"
+       "Nwanbir\0"
+       "Dujanbir\0"
+       "Yen\0"
+       "Yeb\0"
+       "Ibr\0"
+       "Yun\0"
+       "Yul\0"
+       "\xc6\x94uc\0"
+       "Cut\0"
+       "K\xe1\xb9\xadu\0"
+       "Nwa\0"
+       "Duj\0"
+       "\xe0\xa4\x86\xe0\xa4\x87\xe0\xa4\xa4\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb8\xe0\xa5\x8b\xe0\xa4\xae\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xae\xe0\xa4\x99\xe0\xa5\x8d\xe0\xa4\x97\xe0\xa4\xb2\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xac\xe0\xa5\x81\xe0\xa4\xa7\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xac\xe0\xa4\xbf\xe0\xa4\xb9\xe0\xa4\xbf\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb6\xe0\xa5\x81\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\xb6\xe0\xa4\xa8\xe0\xa4\xbf\xe0\xa4\xac\xe0\xa4\xbe\xe0\xa4\xb0\0"
+       "\xe0\xa4\x86\xe0\xa4\x87\xe0\xa4\xa4\0"
+       "\xe0\xa4\xae\xe0\xa4\x99\xe0\xa5\x8d\xe0\xa4\x97\xe0\xa4\xb2\0"
+       "\xe0\xa4\xac\xe0\xa4\xbf\xe0\xa4\xb9\xe0\xa4\xbf\0"
+       "\xe0\xa4\x86\0"
+       "\xe0\xa4\xae\0"
+       "\xe0\xa4\xac\xe0\xa4\xbf\0"
+       "\xe0\xa4\xab\xe0\xa5\x87\xe0\xa4\xac\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x81\xe0\xa4\x85\xe0\xa4\xb0\xe0\xa5\x80\0"
+       "\xe0\xa4\x85\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xb2\0"
+       "\xe0\xa4\x9c\xe0\xa5\x81\xe0\xa4\xa8\0"
+       "\xe0\xa4\x85\xe0\xa4\x97\xe0\xa4\xb8\xe0\xa5\x8d\xe0\xa4\x9f\0"
+       "\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\xaa\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x87\xe0\xa4\xae\xe0\xa5\x8d\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\x85\xe0\xa4\x95\xe0\xa5\x8d\xe0\xa4\x9f\xe0\xa5\x8b\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\xa8\xe0\xa5\x8b\xe0\xa4\xad\xe0\xa5\x87\xe0\xa4\xae\xe0\xa5\x8d\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "\xe0\xa4\xa1\xe0\xa4\xbf\xe0\xa4\xb8\xe0\xa5\x87\xe0\xa4\xae\xe0\xa5\x8d\xe0\xa4\xac\xe0\xa4\xb0\0"
+       "snein\0"
+       "moandei\0"
+       "tiisdei\0"
+       "woansdei\0"
+       "tongersdei\0"
+       "freed\0"
+       "sneon\0"
+       "si\0"
+       "mo\0"
+       "fr\0"
+       "Jannewaris\0"
+       "Febrewaris\0"
+       "Maaie\0"
+       "Juny\0"
+       "Septimber\0"
+       "Novimber\0"
+       "Desimber\0"
+       "Mrt\0"
+       "\xd9\x88\xd8\xb1\xdb\x8c\0"
+       "\xd8\xba\xd9\x88\xdb\x8c\xdb\x8c\0"
+       "\xd8\xba\xd8\xa8\xd8\xb1\xda\xaf\xd9\x88\xd9\x84\xdb\x8c\0"
+       "\xda\x86\xd9\x86\xda\xaf\xd8\xa7\xda\x9a\0"
+       "\xd8\xb2\xd9\x85\xd8\xb1\xdb\x8c\0"
+       "\xd9\x88\xda\x96\xdb\x8c\0"
+       "\xd8\xaa\xd9\x84\xd9\x87\0"
+       "\xd9\x84\xda\x93\xd9\x85\0"
+       "\xd9\x84\xdb\x8c\xd9\x86\xd8\xaf\xdb\x8d\0"
+       "\xd9\x85\xd8\xb1\xd8\xba\xd9\x88\xd9\x85\xdb\x8c\0"
+       "\xd8\xb3\xd9\x84\xd9\x88\xd8\xa7\xd8\xba\xd9\x87\0"
+       "\xda\xa9\xd8\xa8\0"
+       "Linggo\0"
+       "Lunes\0"
+       "Martes\0"
+       "Miyerkules\0"
+       "Huwebes\0"
+       "Biyernes\0"
+       "Sabado\0"
+       "Lin\0"
+       "Lun\0"
+       "Miy\0"
+       "Huw\0"
+       "Biy\0"
+       "Enero\0"
+       "Pebrero\0"
+       "Marso\0"
+       "Mayo\0"
+       "Hunyo\0"
+       "Hulyo\0"
+       "Setyembre\0"
+       "Oktubre\0"
+       "Nobyembre\0"
+       "Disyembre\0"
+       "Ene\0"
+       "Peb\0"
+       "Abr\0"
+       "Hun\0"
+       "Hul\0"
+       "Nob\0"
+       "dewo\0"
+       "aa\xc9\x93nde\0"
+       "mawbaare\0"
+       "njeslaare\0"
+       "naasaande\0"
+       "mawnde\0"
+       "hoore-biir\0"
+       "dew\0"
+       "aa\xc9\x93\0"
+       "maw\0"
+       "naa\0"
+       "mwd\0"
+       "hbi\0"
+       "d\0"
+       "a\0"
+       "m\0"
+       "h\0"
+       "siilo\0"
+       "colte\0"
+       "mbooy\0"
+       "see\xc9\x97to\0"
+       "duujal\0"
+       "korse\0"
+       "morso\0"
+       "juko\0"
+       "siilto\0"
+       "yarkomaa\0"
+       "jolal\0"
+       "bowte\0"
+       "sii\0"
+       "col\0"
+       "mbo\0"
+       "see\0"
+       "duu\0"
+       "kor\0"
+       "mor\0"
+       "juk\0"
+       "slt\0"
+       "yar\0"
+       "jol\0"
+       "bow\0"
+       "Lahadi\0"
+       "Litinin\0"
+       "Talata\0"
+       "Laraba\0"
+       "Alhamis\0"
+       "Jumma\xca\xbc\x61\0"
+       "Asabar\0"
+       "Lah\0"
+       "Lit\0"
+       "Tal\0"
+       "Lar\0"
+       "Alh\0"
+       "Janairu\0"
+       "Faburairu\0"
+       "Maris\0"
+       "Afirilu\0"
+       "Mayu\0"
+       "Yuni\0"
+       "Yuli\0"
+       "Agusta\0"
+       "Satumba\0"
+       "Nuwamba\0"
+       "Disamba\0"
+       "Fab\0"
+       "Afi\0"
+       "Agu\0"
+       "Nuw\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xc3\x80\xc3\xack\xc3\xba\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 Aj\xc3\xa9\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xc3\x8cs\xe1\xba\xb9\xcc\x81gun\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81r\xc3\xba\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81\x62\xe1\xbb\x8d\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xe1\xba\xb8t\xc3\xac\0"
+       "\xe1\xbb\x8cj\xe1\xbb\x8d\xcc\x81 \xc3\x80\x62\xc3\xa1m\xe1\xba\xb9\xcc\x81ta\0"
+       "\xc3\x80\xc3\xack\xc3\xba\0"
+       "Aj\xc3\xa9\0"
+       "\xc3\x8cs\xe1\xba\xb9\xcc\x81gun\0"
+       "\xe1\xba\xb8t\xc3\xac\0"
+       "\xc3\x80\x62\xc3\xa1m\xe1\xba\xb9\xcc\x81ta\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xb9\xa2\xe1\xba\xb9\xcc\x81r\xe1\xba\xb9\xcc\x81\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x88r\xc3\xa8l\xc3\xa8\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xba\xb8r\xe1\xba\xb9\xcc\x80n\xc3\xa0\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x8cgb\xc3\xa9\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xba\xb8\xcc\x80\x62ibi\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x92k\xc3\xba\x64u\0"
+       "O\xe1\xb9\xa3\xc3\xb9 Ag\xe1\xba\xb9m\xe1\xbb\x8d\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xc3\x92g\xc3\xban\0"
+       "O\xe1\xb9\xa3\xc3\xb9 Owewe\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xbb\x8c\xcc\x80w\xc3\xa0r\xc3\xa0\0"
+       "O\xe1\xb9\xa3\xc3\xb9 B\xc3\xa9l\xc3\xba\0"
+       "O\xe1\xb9\xa3\xc3\xb9 \xe1\xbb\x8c\xcc\x80p\xe1\xba\xb9\xcc\x80\0"
+       "\xe1\xb9\xa2\xe1\xba\xb9\xcc\x81r\xe1\xba\xb9\xcc\x81\0"
+       "\xc3\x88r\xc3\xa8l\xc3\xa8\0"
+       "\xe1\xba\xb8r\xe1\xba\xb9\xcc\x80n\xc3\xa0\0"
+       "\xc3\x8cgb\xc3\xa9\0"
+       "\xe1\xba\xb8\xcc\x80\x62ibi\0"
+       "\xc3\x92k\xc3\xba\x64u\0"
+       "Ag\xe1\xba\xb9m\xe1\xbb\x8d\0"
+       "\xc3\x92g\xc3\xban\0"
+       "Owewe\0"
+       "\xe1\xbb\x8c\xcc\x80w\xc3\xa0r\xc3\xa0\0"
+       "B\xc3\xa9l\xc3\xba\0"
+       "\xe1\xbb\x8c\xcc\x80p\xe1\xba\xb9\xcc\x80\0"
+       "Sontaga\0"
+       "Mosupalogo\0"
+       "Labohlano\0"
+       "Mokibelo\0"
+       "Mok\0"
+       "Janaware\0"
+       "Feberware\0"
+       "Mat\xc5\xa1he\0"
+       "Aporele\0"
+       "Julae\0"
+       "Agostose\0"
+       "Setemere\0"
+       "Oktobore\0"
+       "Nofemere\0"
+       "Disemere\0"
+       "Apo\0"
+       "Nof\0"
+       "Sonndeg\0"
+       "M\xc3\xa9indeg\0"
+       "D\xc3\xabnschdeg\0"
+       "M\xc3\xabttwoch\0"
+       "Donneschdeg\0"
+       "Freideg\0"
+       "Samschdeg\0"
+       "M\xc3\xa9i\0"
+       "D\xc3\xabn\0"
+       "M\xc3\xabt\0"
+       "Don\0"
+       "Fre\0"
+       "Sam\0"
+       "M\xc3\xa4\x65rz\0"
+       "Abr\xc3\xabll\0"
+       "Mee\0"
+       "M\xc3\xa4\x65\0"
+       "sabaat\0"
+       "ataasinngorneq\0"
+       "marlunngorneq\0"
+       "pingasunngorneq\0"
+       "sisamanngorneq\0"
+       "tallimanngorneq\0"
+       "arfininngorneq\0"
+       "ata\0"
+       "pin\0"
+       "sis\0"
+       "tal\0"
+       "arf\0"
+       "martsi\0"
+       "aprili\0"
+       "maji\0"
+       "augustusi\0"
+       "septemberi\0"
+       "oktoberi\0"
+       "novemberi\0"
+       "decemberi\0"
+       "Mb\xe1\xbb\x8ds\xe1\xbb\x8b \xe1\xbb\xa4ka\0"
+       "M\xe1\xbb\x8dnde\0"
+       "Tiuzdee\0"
+       "Wenezdee\0"
+       "T\xe1\xbb\x8d\xe1\xbb\x8dzdee\0"
+       "Fra\xe1\xbb\x8b\x64\x65\x65\0"
+       "Sat\xe1\xbb\x8d\x64\x65\x65\0"
+       "\xe1\xbb\xa4ka\0"
+       "M\xe1\xbb\x8dn\0"
+       "Tiu\0"
+       "Wen\0"
+       "T\xe1\xbb\x8d\xe1\xbb\x8d\0"
+       "Fra\xe1\xbb\x8b\0"
+       "Jen\xe1\xbb\xa5war\xe1\xbb\x8b\0"
+       "Febr\xe1\xbb\xa5war\xe1\xbb\x8b\0"
+       "Maach\xe1\xbb\x8b\0"
+       "Eprel\0"
+       "Juun\0"
+       "Jula\xe1\xbb\x8b\0"
+       "\xe1\xbb\x8cg\xe1\xbb\x8d\xe1\xbb\x8dst\0"
+       "\xe1\xbb\x8cktoba\0"
+       "Jen\0"
+       "Maa\0"
+       "Juu\0"
+       "\xe1\xbb\x8cg\xe1\xbb\x8d\0"
+       "\xe1\xbb\x8ckt\0"
+       "Dilbata\0"
+       "Wiixata\0"
+       "Qibxata\0"
+       "Roobii\0"
+       "Kamiisa\0"
+       "Jimaata\0"
+       "Sanbata\0"
+       "Dil\0"
+       "Wix\0"
+       "Qib\0"
+       "Rob\0"
+       "Jim\0"
+       "San\0"
+       "Amajjii\0"
+       "Guraandhala\0"
+       "Bitooteessa\0"
+       "Elba\0"
+       "Caamsa\0"
+       "Waxabajjii\0"
+       "Adooleessa\0"
+       "Hagayya\0"
+       "Fuulbana\0"
+       "Onkololeessa\0"
+       "Sadaasa\0"
+       "Muddee\0"
+       "Ama\0"
+       "Gur\0"
+       "Bit\0"
+       "Elb\0"
+       "Cam\0"
+       "Wax\0"
+       "Ado\0"
+       "Hag\0"
+       "Ful\0"
+       "Onk\0"
+       "\xe1\x88\xb0\xe1\x8a\x95\xe1\x89\xa0\xe1\x89\xb5\0"
+       "\xe1\x88\xb0\xe1\x8a\x91\xe1\x8b\xad\0"
+       "\xe1\x88\xa0\xe1\x88\x89\xe1\x88\xb5\0"
+       "\xe1\x8a\x83\xe1\x88\x99\xe1\x88\xb5\0"
+       "\xe1\x8b\x93\xe1\x88\xad\xe1\x89\xa2\0"
+       "\xe1\x89\x80\xe1\x8b\xb3\xe1\x88\x9d\0"
+       "\xe1\x88\xb0\xe1\x8a\x95\0"
+       "\xe1\x88\xb0\xe1\x8a\x91\0"
+       "\xe1\x88\xb0\xe1\x88\x89\0"
+       "\xe1\x88\xa8\xe1\x89\xa1\0"
+       "\xe1\x88\x93\xe1\x88\x99\0"
+       "\xe1\x8b\x93\xe1\x88\xad\0"
+       "\xe1\x89\x80\xe1\x8b\xb3\0"
+       "\xe1\x88\xa0\0"
+       "\xe1\x88\x93\0"
+       "\xe1\x89\x80\0"
+       "\xe1\x8c\xa5\xe1\x88\xaa\0"
+       "\xe1\x88\x88\xe1\x8a\xab\xe1\x89\xb2\xe1\x89\xb5\0"
+       "\xe1\x88\x98\xe1\x8c\x8b\xe1\x89\xa2\xe1\x89\xb5\0"
+       "\xe1\x88\x9a\xe1\x8b\xab\xe1\x8b\x9d\xe1\x8b\xab\0"
+       "\xe1\x8c\x8d\xe1\x8a\x95\xe1\x89\xa6\xe1\x89\xb5\0"
+       "\xe1\x88\xb0\xe1\x8a\x90\0"
+       "\xe1\x88\x93\xe1\x88\x9d\xe1\x88\x88\0"
+       "\xe1\x8a\x90\xe1\x88\x93\xe1\x88\xb0\0"
+       "\xe1\x88\x98\xe1\x88\xb5\xe1\x8a\xa8\xe1\x88\xa8\xe1\x88\x9d\0"
+       "\xe1\x8c\xa5\xe1\x89\x85\xe1\x88\x9d\xe1\x89\xb2\0"
+       "\xe1\x88\x95\xe1\x8b\xb3\xe1\x88\xad\0"
+       "\xe1\x89\xb3\xe1\x88\x95\xe1\x88\xb3\xe1\x88\xb5\0"
+       "\xe1\x88\x88\xe1\x8a\xab\0"
+       "\xe1\x88\x98\xe1\x8c\x8b\0"
+       "\xe1\x88\x9a\xe1\x8b\xab\0"
+       "\xe1\x8c\x8d\xe1\x8a\x95\0"
+       "\xe1\x88\x93\xe1\x88\x9d\0"
+       "\xe1\x8a\x90\xe1\x88\x93\0"
+       "\xe1\x88\x98\xe1\x88\xb5\0"
+       "\xe1\x8c\xa5\xe1\x89\x85\0"
+       "\xe1\x88\x95\xe1\x8b\xb3\0"
+       "\xe1\x89\xb3\xe1\x88\x95\0"
+       "L\xc4\x81pule\0"
+       "Po\xca\xbb\x61kahi\0"
+       "Po\xca\xbb\x61lua\0"
+       "Po\xca\xbb\x61kolu\0"
+       "Po\xca\xbb\x61h\xc4\x81\0"
+       "Po\xca\xbb\x61lima\0"
+       "Po\xca\xbb\x61ono\0"
+       "LP\0"
+       "P1\0"
+       "P2\0"
+       "P3\0"
+       "P4\0"
+       "P5\0"
+       "P6\0"
+       "Ianuali\0"
+       "Pepeluali\0"
+       "Malaki\0"
+       "\xca\xbb\x41pelila\0"
+       "Iune\0"
+       "Iulai\0"
+       "\xca\xbb\x41ukake\0"
+       "Kepakemapa\0"
+       "\xca\xbbOkakopa\0"
+       "Nowemapa\0"
+       "Kekemapa\0"
+       "Ian.\0"
+       "Pep.\0"
+       "Mal.\0"
+       "\xca\xbb\x41p.\0"
+       "Iun.\0"
+       "Iul.\0"
+       "\xca\xbb\x41u.\0"
+       "Kep.\0"
+       "\xca\xbbOk.\0"
+       "Now.\0"
+       "Kek.\0"
+       "Axad\0"
+       "Isniin\0"
+       "Talaado\0"
+       "Arbaco\0"
+       "Khamiis\0"
+       "Jimco\0"
+       "Sabti\0"
+       "Axd\0"
+       "Arb\0"
+       "Kh\0"
+       "Bisha Koobaad\0"
+       "Bisha Labaad\0"
+       "Bisha Saddexaad\0"
+       "Bisha Afraad\0"
+       "Bisha Shanaad\0"
+       "Bisha Lixaad\0"
+       "Bisha Todobaad\0"
+       "Bisha Sideedaad\0"
+       "Bisha Sagaalaad\0"
+       "Bisha Tobnaad\0"
+       "Bisha Kow iyo Tobnaad\0"
+       "Bisha Laba iyo Tobnaad\0"
+       "Kob\0"
+       "Lab\0"
+       "Afr\0"
+       "Sha\0"
+       "Lix\0"
+       "Tod\0"
+       "Sid\0"
+       "Sag\0"
+       "Tob\0"
+       "KIT\0"
+       "LIT\0"
+       "\xea\x91\xad\xea\x86\x8f\xea\x91\x8d\0"
+       "\xea\x86\x8f\xea\x8a\x82\xea\x8b\x8d\0"
+       "\xea\x86\x8f\xea\x8a\x82\xea\x91\x8d\0"
+       "\xea\x86\x8f\xea\x8a\x82\xea\x8c\x95\0"
+       "\xea\x86\x8f\xea\x8a\x82\xea\x87\x96\0"
+       "\xea\x86\x8f\xea\x8a\x82\xea\x89\xac\0"
+       "\xea\x86\x8f\xea\x8a\x82\xea\x83\x98\0"
+       "\xea\x91\xad\xea\x86\x8f\0"
+       "\xea\x86\x8f\xea\x8b\x8d\0"
+       "\xea\x86\x8f\xea\x91\x8d\0"
+       "\xea\x86\x8f\xea\x8c\x95\0"
+       "\xea\x86\x8f\xea\x87\x96\0"
+       "\xea\x86\x8f\xea\x89\xac\0"
+       "\xea\x86\x8f\xea\x83\x98\0"
+       "\xea\x86\x8f\0"
+       "\xea\x8b\x8d\0"
+       "\xea\x91\x8d\0"
+       "\xea\x8c\x95\0"
+       "\xea\x87\x96\0"
+       "\xea\x89\xac\0"
+       "\xea\x83\x98\0"
+       "\xea\x8b\x8d\xea\x86\xaa\0"
+       "\xea\x91\x8d\xea\x86\xaa\0"
+       "\xea\x8c\x95\xea\x86\xaa\0"
+       "\xea\x87\x96\xea\x86\xaa\0"
+       "\xea\x89\xac\xea\x86\xaa\0"
+       "\xea\x83\x98\xea\x86\xaa\0"
+       "\xea\x8f\x83\xea\x86\xaa\0"
+       "\xea\x89\x86\xea\x86\xaa\0"
+       "\xea\x88\xac\xea\x86\xaa\0"
+       "\xea\x8a\xb0\xea\x86\xaa\0"
+       "\xea\x8a\xb0\xea\x8a\xaa\xea\x86\xaa\0"
+       "\xea\x8a\xb0\xea\x91\x8b\xea\x86\xaa\0"
+       "Meurzh\0"
+       "Merc\xca\xbcher\0"
+       "Yaou\0"
+       "Gwener\0"
+       "Sadorn\0"
+       "Meu.\0"
+       "Mer.\0"
+       "Gwe.\0"
+       "Sad.\0"
+       "Su\0"
+       "Mz\0"
+       "Mc\0"
+       "Genver\0"
+       "C\xca\xbchwevrer\0"
+       "Ebrel\0"
+       "Mae\0"
+       "Mezheven\0"
+       "Gouere\0"
+       "Eost\0"
+       "Gwengolo\0"
+       "Here\0"
+       "Du\0"
+       "Kerzu\0"
+       "Gen.\0"
+       "C\xca\xbchwe.\0"
+       "Meur.\0"
+       "Ebr.\0"
+       "Mezh.\0"
+       "Goue.\0"
+       "Gwen.\0"
+       "Ker.\0"
+       "\xd9\x8a\xdb\x95\xd9\x83\xd8\xb4\xdb\x95\xd9\x86\xd8\xa8\xdb\x95\0"
+       "\xd8\xaf\xdb\x88\xd8\xb4\xdb\x95\xd9\x86\xd8\xa8\xdb\x95\0"
+       "\xd8\xb3\xdb\x95\xd9\x8a\xd8\xb4\xdb\x95\xd9\x86\xd8\xa8\xdb\x95\0"
+       "\xda\x86\xd8\xa7\xd8\xb1\xd8\xb4\xdb\x95\xd9\x86\xd8\xa8\xdb\x95\0"
+       "\xd9\xbe\xdb\x95\xd9\x8a\xd8\xb4\xdb\x95\xd9\x86\xd8\xa8\xdb\x95\0"
+       "\xd8\xac\xdb\x88\xd9\x85\xdb\x95\0"
+       "\xd8\xb4\xdb\x95\xd9\x86\xd8\xa8\xdb\x95\0"
+       "\xd9\x8a\xdb\x95\0"
+       "\xd8\xaf\xdb\x88\0"
+       "\xd8\xb3\xdb\x95\0"
+       "\xda\x86\xd8\xa7\0"
+       "\xd9\xbe\xdb\x95\0"
+       "\xd8\xac\xdb\x88\0"
+       "\xd8\xb4\xdb\x95\0"
+       "\xd9\x8a\0"
+       "\xd9\x8a\xd8\xa7\xd9\x86\xdb\x8b\xd8\xa7\xd8\xb1\0"
+       "\xd9\x81\xdb\x90\xdb\x8b\xd8\xb1\xd8\xa7\xd9\x84\0"
+       "\xd9\x85\xd8\xa7\xd8\xb1\xd8\xaa\0"
+       "\xd8\xa6\xd8\xa7\xd9\xbe\xd8\xb1\xdb\x90\xd9\x84\0"
+       "\xd9\x85\xd8\xa7\xd9\x8a\0"
+       "\xd8\xa6\xd9\x89\xd9\x8a\xdb\x87\xd9\x86\0"
+       "\xd8\xa6\xd9\x89\xd9\x8a\xdb\x87\xd9\x84\0"
+       "\xd8\xa6\xd8\xa7\xdb\x8b\xd8\xba\xdb\x87\xd8\xb3\xd8\xaa\0"
+       "\xd8\xb3\xdb\x90\xd9\x86\xd8\xaa\xdb\x95\xd8\xa8\xd9\x89\xd8\xb1\0"
+       "\xd8\xa6\xdb\x86\xd9\x83\xd8\xaa\xdb\x95\xd8\xa8\xd9\x89\xd8\xb1\0"
+       "\xd9\x86\xd9\x88\xd9\x8a\xd8\xa7\xd8\xa8\xd9\x89\xd8\xb1\0"
+       "\xd8\xaf\xdb\x90\xd9\x83\xd8\xa7\xd8\xa8\xd9\x89\xd8\xb1\0"
+       "Sunntig\0"
+       "M\xc3\xa4\xc3\xa4ntig\0"
+       "Ziischtig\0"
+       "Mittwuch\0"
+       "Dunschtig\0"
+       "Friitig\0"
+       "Samschtig\0"
+       "Su.\0"
+       "M\xc3\xa4.\0"
+       "Zi.\0"
+       "Mi.\0"
+       "Du.\0"
+       "Fr.\0"
+       "Auguscht\0"
+       "Sept\xc3\xa4mber\0"
+       "Oktoober\0"
+       "Nov\xc3\xa4mber\0"
+       "Dez\xc3\xa4mber\0"
+       "\xd0\xb1\xd0\xb0\xd1\x81\xd0\xba\xd1\x8b\xd2\xbb\xd1\x8b\xd0\xb0\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb0\0"
+       "\xd0\xb1\xd1\x8d\xd0\xbd\xd0\xb8\xd0\xb4\xd0\xb8\xd1\x8d\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb8\xd0\xba\0"
+       "\xd0\xbe\xd0\xbf\xd1\x82\xd1\x83\xd0\xbe\xd1\x80\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\xd0\xba\0"
+       "\xd1\x81\xd1\x8d\xd1\x80\xd1\x8d\xd0\xb4\xd1\x8d\0"
+       "\xd1\x87\xd1\x8d\xd0\xbf\xd0\xbf\xd0\xb8\xd1\x8d\xd1\x80\0"
+       "\xd0\x91\xd1\x8d\xd1\x8d\xd1\x82\xd0\xb8\xd2\xa5\xd1\x81\xd1\x8d\0"
+       "\xd1\x81\xd1\x83\xd0\xb1\xd1\x83\xd0\xbe\xd1\x82\xd0\xb0\0"
+       "\xd0\xb1\xd1\x81\0"
+       "\xd0\xb1\xd0\xbd\0"
+       "\xd0\xbe\xd0\xbf\0"
+       "\xd1\x81\xd1\x8d\0"
+       "\xd1\x87\xd0\xbf\0"
+       "\xd0\xb1\xd1\x8d\0"
+       "\xd0\x9e\0"
+       "\xd1\x82\xd0\xbe\xd1\x85\xd1\x81\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\0"
+       "\xd0\xbe\xd0\xbb\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\0"
+       "\xd0\xba\xd1\x83\xd0\xbb\xd1\x83\xd0\xbd \xd1\x82\xd1\x83\xd1\x82\xd0\xb0\xd1\x80\0"
+       "\xd0\xbc\xd1\x83\xd1\x83\xd1\x81 \xd1\x83\xd1\x81\xd1\x82\xd0\xb0\xd1\x80\0"
+       "\xd1\x8b\xd0\xb0\xd0\xbc \xd1\x8b\xd0\xb9\xd0\xb0\0"
+       "\xd0\xb1\xd1\x8d\xd1\x81 \xd1\x8b\xd0\xb9\xd0\xb0\0"
+       "\xd0\xbe\xd1\x82 \xd1\x8b\xd0\xb9\xd0\xb0\0"
+       "\xd0\xb0\xd1\x82\xd1\x8b\xd1\x80\xd0\xb4\xd1\x8c\xd1\x8b\xd1\x85 \xd1\x8b\xd0\xb9\xd0\xb0\0"
+       "\xd0\xb1\xd0\xb0\xd0\xbb\xd0\xb0\xd2\x95\xd0\xb0\xd0\xbd \xd1\x8b\xd0\xb9\xd0\xb0\0"
+       "\xd0\xb0\xd0\xbb\xd1\x82\xd1\x8b\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x8b\0"
+       "\xd1\x81\xd1\x8d\xd1\x82\xd0\xb8\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb8\0"
+       "\xd0\xb0\xd1\x85\xd1\x81\xd1\x8b\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x8b\0"
+       "\xd0\xa2\xd0\xbe\xd1\x85\xd1\x81\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\0"
+       "\xd0\x9e\xd0\xbb\xd1\x83\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x83\0"
+       "\xd0\x9a\xd1\x83\xd0\xbb\xd1\x83\xd0\xbd \xd1\x82\xd1\x83\xd1\x82\xd0\xb0\xd1\x80\0"
+       "\xd0\x9c\xd1\x83\xd1\x83\xd1\x81 \xd1\x83\xd1\x81\xd1\x82\xd0\xb0\xd1\x80\0"
+       "\xd0\xab\xd0\xb0\xd0\xbc \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
+       "\xd0\x91\xd1\x8d\xd1\x81 \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
+       "\xd0\x9e\xd1\x82 \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
+       "\xd0\x90\xd1\x82\xd1\x8b\xd1\x80\xd0\xb4\xd1\x8c\xd1\x8b\xd1\x85 \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
+       "\xd0\x91\xd0\xb0\xd0\xbb\xd0\xb0\xd2\x95\xd0\xb0\xd0\xbd \xd1\x8b\xd0\xb9\xd1\x8b\xd0\xbd\0"
+       "\xd0\x90\xd0\xbb\xd1\x82\xd1\x8b\xd0\xbd\xd0\xbd\xd1\x8c\xd1\x8b\0"
+       "\xd0\xa1\xd1\x8d\xd1\x82\xd0\xb8\xd0\xbd\xd0\xbd\xd1\x8c\xd0\xb8\0"
+       "\xd0\xa2\xd0\xbe\xd1\x85\xd1\x81\0"
+       "\xd0\x9e\xd0\xbb\xd1\x83\xd0\xbd\0"
+       "\xd0\x9a\xd0\xbb\xd0\xbd\0"
+       "\xd0\x9c\xd1\x81\xd1\x83\0"
+       "\xd0\xab\xd0\xb0\xd0\xbc\0"
+       "\xd0\x91\xd1\x8d\xd1\x81\0"
+       "\xd0\x9e\xd1\x82\xd0\xb9\0"
+       "\xd0\x90\xd1\x82\xd1\x80\0"
+       "\xd0\x91\xd0\xbb\xd2\x95\0"
+       "\xd0\x90\xd0\xbb\xd1\x82\0"
+       "\xd0\xa1\xd1\x8d\xd1\x82\0"
+       "\xd0\x90\xd1\x85\xd1\x81\0"
+       "Ku cyumweru\0"
+       "Kuwa mbere\0"
+       "Kuwa kabiri\0"
+       "Kuwa gatatu\0"
+       "Kuwa kane\0"
+       "Kuwa gatanu\0"
+       "Kuwa gatandatu\0"
+       "cyu.\0"
+       "mbe.\0"
+       "kab.\0"
+       "gtu.\0"
+       "kan.\0"
+       "gnu.\0"
+       "gnd.\0"
+       "Mutarama\0"
+       "Gashyantare\0"
+       "Werurwe\0"
+       "Mata\0"
+       "Gicuransi\0"
+       "Kamena\0"
+       "Nyakanga\0"
+       "Kanama\0"
+       "Nzeli\0"
+       "Ukwakira\0"
+       "Ugushyingo\0"
+       "Ukuboza\0"
+       "mut.\0"
+       "gas.\0"
+       "wer.\0"
+       "mat.\0"
+       "gic.\0"
+       "kam.\0"
+       "nya.\0"
+       "nze.\0"
+       "ukw.\0"
+       "ugu.\0"
+       "uku.\0"
+       "DiD\xc3\xb2mhnaich\0"
+       "DiLuain\0"
+       "DiM\xc3\xa0irt\0"
+       "DiCiadain\0"
+       "DiarDaoin\0"
+       "DihAoine\0"
+       "DiSathairne\0"
+       "DiD\0"
+       "DiL\0"
+       "DiM\0"
+       "DiC\0"
+       "Dia\0"
+       "Dih\0"
+       "DiS\0"
+       "Am Faoilleach\0"
+       "An Gearran\0"
+       "Am M\xc3\xa0rt\0"
+       "An Giblean\0"
+       "An C\xc3\xa8itean\0"
+       "An t-\xc3\x92gmhios\0"
+       "An t-Iuchar\0"
+       "An L\xc3\xb9nastal\0"
+       "An t-Sultain\0"
+       "An D\xc3\xa0mhair\0"
+       "An t-Samhain\0"
+       "An D\xc3\xb9\x62hlachd\0"
+       "dhen Fhaoilleach\0"
+       "dhen Ghearran\0"
+       "dhen Mh\xc3\xa0rt\0"
+       "dhen Ghiblean\0"
+       "dhen Ch\xc3\xa8itean\0"
+       "dhen \xc3\x92gmhios\0"
+       "dhen Iuchar\0"
+       "dhen L\xc3\xb9nastal\0"
+       "dhen t-Sultain\0"
+       "dhen D\xc3\xa0mhair\0"
+       "dhen t-Samhain\0"
+       "dhen D\xc3\xb9\x62hlachd\0"
+       "Faoi\0"
+       "Gearr\0"
+       "M\xc3\xa0rt\0"
+       "Gibl\0"
+       "C\xc3\xa8it\0"
+       "\xc3\x92gmh\0"
+       "Iuch\0"
+       "L\xc3\xb9na\0"
+       "Sult\0"
+       "D\xc3\xa0mh\0"
+       "D\xc3\xb9\x62h\0"
+       "\xe9\x80\xb1\xe6\x97\xa5\0"
+       "\xe9\x80\xb1\xe4\xb8\x80\0"
+       "\xe9\x80\xb1\xe4\xba\x8c\0"
+       "\xe9\x80\xb1\xe4\xb8\x89\0"
+       "\xe9\x80\xb1\xe5\x9b\x9b\0"
+       "\xe9\x80\xb1\xe4\xba\x94\0"
+       "\xe9\x80\xb1\xe5\x85\xad\0"
+       "\xd8\xa7\xd9\x84\xd8\xa3\xd8\xad\xd8\xaf\0"
+       "\xd8\xa7\xd9\x84\xd8\xa7\xd8\xab\xd9\x86\xd9\x8a\xd9\x86\0"
+       "\xd8\xa7\xd9\x84\xd8\xab\xd9\x84\xd8\xa7\xd8\xab\xd8\xa7\xd8\xa1\0"
+       "\xd8\xa7\xd9\x84\xd8\xa3\xd8\xb1\xd8\xa8\xd8\xb9\xd8\xa7\xd8\xa1\0"
+       "\xd8\xa7\xd9\x84\xd8\xae\xd9\x85\xd9\x8a\xd8\xb3\0"
+       "\xd8\xa7\xd9\x84\xd8\xac\xd9\x85\xd8\xb9\xd8\xa9\0"
+       "\xd8\xa7\xd9\x84\xd8\xb3\xd8\xa8\xd8\xaa\0"
+       "\xd8\xad\0"
+       "\xd9\x86\0"
+       "\xd8\xab\0"
+       "\xd8\xb1\0"
+       "\xd8\xae\0"
+       "\xd9\x83\xd8\xa7\xd9\x86\xd9\x88\xd9\x86 \xd8\xa7\xd9\x84\xd8\xab\xd8\xa7\xd9\x86\xd9\x8a\0"
+       "\xd8\xb4\xd8\xa8\xd8\xa7\xd8\xb7\0"
+       "\xd8\xa2\xd8\xb0\xd8\xa7\xd8\xb1\0"
+       "\xd9\x86\xd9\x8a\xd8\xb3\xd8\xa7\xd9\x86\0"
+       "\xd8\xa3\xd9\x8a\xd8\xa7\xd8\xb1\0"
+       "\xd8\xad\xd8\xb2\xd9\x8a\xd8\xb1\xd8\xa7\xd9\x86\0"
+       "\xd8\xaa\xd9\x85\xd9\x88\xd8\xb2\0"
+       "\xd8\xa2\xd8\xa8\0"
+       "\xd8\xa3\xd9\x8a\xd9\x84\xd9\x88\xd9\x84\0"
+       "\xd8\xaa\xd8\xb4\xd8\xb1\xd9\x8a\xd9\x86 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\0"
+       "\xd8\xaa\xd8\xb4\xd8\xb1\xd9\x8a\xd9\x86 \xd8\xa7\xd9\x84\xd8\xab\xd8\xa7\xd9\x86\xd9\x8a\0"
+       "\xd9\x83\xd8\xa7\xd9\x86\xd9\x88\xd9\x86 \xd8\xa7\xd9\x84\xd8\xa3\xd9\x88\xd9\x84\0"
+       "ene\0"
+       "oct\0"
+       "tysdag\0"
+       "laurdag\0"
+       "tys\0"
+       "lau\0"
+       "segunda\0"
+       "ter\xc3\xa7\x61\0"
+       "quarta\0"
+       "quinta\0"
+       "sexta\0"
+       "Dum\0"
+       "Mie\0"
+       "Joi\0"
+       "Vin\0"
+       "S\xc3\xa2m\0"
+       "Ma\0"
+       "\xd9\xbe\xdb\x8c\xd8\xb1\0"
+       "\xd0\xb1\xd0\xb0\xd0\xb7\xd0\xb0\xd1\x80\0"
+       "\xd0\xb1\xd0\xb0\xd0\xb7\xd0\xb0\xd1\x80 \xd0\xb5\xd1\x80\xd1\x82\xd3\x99\xd1\x81\xd0\xb8\0"
+       "\xd1\x87\xd3\x99\xd1\x80\xd1\x88\xd3\x99\xd0\xbd\xd0\xb1\xd3\x99 \xd0\xb0\xd1\x85\xd1\x88\xd0\xb0\xd0\xbc\xd1\x8b\0"
+       "\xd1\x87\xd3\x99\xd1\x80\xd1\x88\xd3\x99\xd0\xbd\xd0\xb1\xd3\x99\0"
+       "\xd2\xb9\xd2\xaf\xd0\xbc\xd3\x99 \xd0\xb0\xd1\x85\xd1\x88\xd0\xb0\xd0\xbc\xd1\x8b\0"
+       "\xd2\xb9\xd2\xaf\xd0\xbc\xd3\x99\0"
+       "\xd1\x88\xd3\x99\xd0\xbd\xd0\xb1\xd3\x99\0"
+       "\xd0\x91.\0"
+       "\xd0\x91.\xd0\x95.\0"
+       "\xd0\xa7.\xd0\x90.\0"
+       "\xd0\xa7.\0"
+       "\xd2\xb8.\xd0\x90.\0"
+       "\xd2\xb8.\0"
+       "\xd0\xa8.\0"
+       "\xd0\x88\xd0\xb0\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\0"
+       "\xd0\x98\xd1\x98\xd1\x83\xd0\xbd\0"
+       "\xd0\x98\xd1\x98\xd1\x83\xd0\xbb\0"
+       "\xd0\xa1\xd0\xb5\xd0\xbd\xd1\x82\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd0\x9e\xd0\xba\xd1\x82\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd0\x9d\xd0\xbe\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd1\x98\xd0\xb0\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\0"
+       "\xd1\x84\xd0\xb5\xd0\xb2\xd1\x80\xd0\xb0\xd0\xbb\0"
+       "\xd0\xb0\xd0\xbf\xd1\x80\xd0\xb5\xd0\xbb\0"
+       "\xd0\xb8\xd1\x98\xd1\x83\xd0\xbd\0"
+       "\xd0\xb8\xd1\x98\xd1\x83\xd0\xbb\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd0\xbd\xd0\xbe\xd1\x98\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd0\xb4\xd0\xb5\xd0\xba\xd0\xb0\xd0\xb1\xd1\x80\0"
+       "\xd1\x98\xd0\xb0\xd0\xbd\0"
+       "\xd0\xbc\xd0\xb0\xd1\x80\0"
+       "\xd0\xb8\xd1\x98\xd0\xbd\0"
+       "\xd0\xb8\xd1\x98\xd0\xbb\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\0"
+       "\xd0\xbd\xd0\xbe\xd1\x98\0"
+       "nje\xc5\xba\x65la\0"
+       "p\xc3\xb3nje\xc5\xba\x65le\0"
+       "wa\xc5\x82tora\0"
+       "srjoda\0"
+       "stw\xc3\xb3rtk\0"
+       "p\xc4\x9btk\0"
+       "wa\xc5\x82\0"
+       "stw\0"
+       "p\xc4\x9bt\0"
+       "\xd1\x8f\xd0\xba\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
+       "\xd0\xb4\xd1\x83\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
+       "\xd1\x81\xd0\xb5\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
+       "\xd1\x87\xd0\xbe\xd1\x80\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
+       "\xd0\xbf\xd0\xb0\xd0\xb9\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
+       "\xd1\x88\xd0\xb0\xd0\xbd\xd0\xb1\xd0\xb0\0"
+       "\xd0\xaf\xd0\xba\xd1\x88\0"
+       "\xd0\x94\xd1\x83\xd1\x88\0"
+       "\xd0\xa1\xd0\xb5\xd1\x88\0"
+       "\xd0\xa7\xd0\xbe\xd1\x80\0"
+       "\xd0\x9f\xd0\xb0\xd0\xb9\0"
+       "\xd0\x96\xd1\x83\xd0\xbc\0"
+       "\xd0\xa8\xd0\xb0\xd0\xbd\0"
+       "\xd0\xaf\0"
+       "\xd1\x8f\xd0\xbd\xd0\xb2\xd0\xb0\xd1\x80\0"
+       "\xd0\xb8\xd1\x8e\xd0\xbd\0"
+       "\xd0\xb8\xd1\x8e\xd0\xbb\0"
+       "\xd1\x81\xd0\xb5\xd0\xbd\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\xd1\x8f\xd0\xb1\xd1\x80\0"
+       "\xd0\xbd\xd0\xbe\xd1\x8f\xd0\xb1\xd1\x80\0"
+       "\xd8\xa8\xd9\x8f\xd8\xaf\xda\xbe\0"
+       "\xd9\x85\xd8\xa6\0"
+       "\xd9\x8a\xd9\x86\xd8\xa7\xd9\x8a\xd8\xb1\0"
+       "\xd9\x81\xd8\xa8\xd8\xb1\xd8\xa7\xd9\x8a\xd8\xb1\0"
+       "\xd8\xa3\xd8\xa8\xd8\xb1\xd9\x8a\xd9\x84\0"
+       "\xd9\x85\xd8\xa7\xd9\x8a\xd9\x88\0"
+       "\xd9\x8a\xd9\x88\xd9\x86\xd9\x8a\xd9\x88\0"
+       "\xd9\x8a\xd9\x88\xd9\x84\xd9\x8a\xd9\x88\0"
+       "\xd8\xa3\xd8\xba\xd8\xb3\xd8\xb7\xd8\xb3\0"
+       "\xd8\xb3\xd8\xa8\xd8\xaa\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xd8\xa3\xd9\x83\xd8\xaa\xd9\x88\xd8\xa8\xd8\xb1\0"
+       "\xd9\x86\xd9\x88\xd9\x81\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "\xd8\xaf\xd9\x8a\xd8\xb3\xd9\x85\xd8\xa8\xd8\xb1\0"
+       "J\xc3\xa4nner\0"
+       "J\xc3\xa4n\0"
+       "Sun.\0"
+       "Mon.\0"
+       "Tue.\0"
+       "Wed.\0"
+       "Thu.\0"
+       "Fri.\0"
+       "Sat.\0"
+       "M.\0"
+       "Tu.\0"
+       "W.\0"
+       "Th.\0"
+       "F.\0"
+       "Oct.\0"
+       "juill.\0"
+       "vuoss\xc3\xa1rgga\0"
+       "ma\xc5\x8b\xc5\x8b\x65\x62\xc3\xa1rgga\0"
+       "gaskavahku\0"
+       "duorastaga\0"
+       "bearjadaga\0"
+       "l\xc3\xa1vvardaga\0"
+       "U\0"
+       "\xd8\xac\xd8\xa7\xd9\x86\xd9\x81\xd9\x8a\0"
+       "\xd9\x81\xd9\x8a\xd9\x81\xd8\xb1\xd9\x8a\0"
+       "\xd8\xa3\xd9\x81\xd8\xb1\xd9\x8a\xd9\x84\0"
+       "\xd8\xac\xd9\x88\xd8\xa7\xd9\x86\0"
+       "\xd8\xac\xd9\x88\xd9\x8a\xd9\x84\xd9\x8a\xd8\xa9\0"
+       "\xd8\xa3\xd9\x88\xd8\xaa\0"
+       "septembar\0"
+       "oktobar\0"
+       "novembar\0"
+       "decembar\0"
+       "avg\0"
+       "\xd9\x8a\xd9\x88\xd9\x84\xd9\x8a\xd9\x88\xd8\xb2\0"
+       "\xd8\xba\xd8\xb4\xd8\xaa\0"
+       "\xd8\xb4\xd8\xaa\xd9\x86\xd8\xa8\xd8\xb1\0"
+       "\xd9\x86\xd9\x88\xd9\x86\xd8\xa8\xd8\xb1\0"
+       "\xd8\xaf\xd8\xac\xd9\x86\xd8\xa8\xd8\xb1\0"
+       "ponedeljak\0"
+       "ut.\0"
+       "sr.\0"
+       "sub.\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4\xd1\x98\xd0\xb5\xd1\x99\xd0\xb0\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd1\x99\xd0\xb0\xd0\xba\0"
+       "\xd1\x83\xd1\x82\xd0\xbe\xd1\x80\xd0\xb0\xd0\xba\0"
+       "\xd1\x81\xd1\x80\xd0\xb8\xd1\x98\xd0\xb5\xd0\xb4\xd0\xb0\0"
+       "\xd1\x87\xd0\xb5\xd1\x82\xd0\xb2\xd1\x80\xd1\x82\xd0\xb0\xd0\xba\0"
+       "\xd0\xbf\xd0\xb5\xd1\x82\xd0\xb0\xd0\xba\0"
+       "\xd1\x83\xd1\x82.\0"
+       "\xd1\x81\xd1\x80.\0"
+       "\xd1\x81\xd1\x83\xd0\xb1.\0"
+       "\xd1\x83\0"
+       "\xd1\x98\xd0\xb0\xd0\xbd\xd1\x83\xd0\xb0\xd1\x80\0"
+       "\xd1\x84\xd0\xb5\xd0\xb1\xd1\x80\xd1\x83\xd0\xb0\xd1\x80\0"
+       "\xd1\x98\xd1\x83\xd0\xbd\0"
+       "\xd1\x98\xd1\x83\xd0\xbb\0"
+       "\xd1\x81\xd0\xb5\xd0\xbf\xd1\x82\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb0\xd1\x80\0"
+       "\xd0\xbe\xd0\xba\xd1\x82\xd0\xbe\xd0\xb1\xd0\xb0\xd1\x80\0"
+       "\xd0\xbd\xd0\xbe\xd0\xb2\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb0\xd1\x80\0"
+       "\xd0\xb4\xd0\xb5\xd1\x86\xd0\xb5\xd0\xbc\xd0\xb1\xd0\xb0\xd1\x80\0"
+       "\xd1\x84\xd0\xb5\xd0\xb1.\0"
+       "\xd0\xbd\xd0\xbe\xd0\xb2.\0"
+       "\xd0\xb4\xd0\xb5\xd1\x86.\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4\xd0\xb5\xd1\x99\xd0\xb0\0"
+       "\xd0\xbd\xd0\xb5\xd0\xb4\0"
+       "\xd0\xbf\xd0\xbe\xd0\xbd\0"
+       "\xd1\x83\xd1\x82\xd0\xbe\0"
+       "\xd1\x81\xd1\x80\xd0\xb8\0"
+       "\xd1\x87\xd0\xb5\xd1\x82\0"
+       "\xd0\xbf\xd0\xb5\xd1\x82\0"
+       "\xd1\x81\xd1\x83\xd0\xb1\0"
+       "\xd1\x84\xd0\xb5\xd0\xb1\0"
+       "\xd0\xbd\xd0\xbe\xd0\xb2\0"
+       "\xd0\xb4\xd0\xb5\xd1\x86\0"
+       "l\0"
+       "j\0"
+       "v\0"
+       "sre\0"
+       "pasepeeivi\0"
+       "vuossaarg\xc3\xa2\0"
+       "majebaarg\xc3\xa2\0"
+       "koskoho\0"
+       "tuor\xc3\xa2stuv\0"
+       "v\xc3\xa1stuppeeivi\0"
+       "l\xc3\xa1vurduv\0"
+       "pas\0"
+       "vuo\0"
+       "kos\0"
+       "tuo\0"
+       "v\xc3\xa1s\0"
+       "u\xc4\x91\xc4\x91\xc3\xa2ivem\xc3\xa1\xc3\xa1nu\0"
+       "kuov\xc3\xa2m\xc3\xa1\xc3\xa1nu\0"
+       "njuh\xc4\x8d\xc3\xa2m\xc3\xa1\xc3\xa1nu\0"
+       "cu\xc3\xa1\xc5\x8buim\xc3\xa1\xc3\xa1nu\0"
+       "vyesim\xc3\xa1\xc3\xa1nu\0"
+       "kesim\xc3\xa1\xc3\xa1nu\0"
+       "syeinim\xc3\xa1\xc3\xa1nu\0"
+       "porgem\xc3\xa1\xc3\xa1nu\0"
+       "\xc4\x8doh\xc4\x8d\xc3\xa2m\xc3\xa1\xc3\xa1nu\0"
+       "roovv\xc3\xa2\x64m\xc3\xa1\xc3\xa1nu\0"
+       "skamm\xc3\xa2m\xc3\xa1\xc3\xa1nu\0"
+       "juovl\xc3\xa2m\xc3\xa1\xc3\xa1nu\0"
+       "u\xc4\x91iv\0"
+       "kuov\xc3\xa2\0"
+       "njuh\xc4\x8d\xc3\xa2\0"
+       "cu\xc3\xa1\xc5\x8bui\0"
+       "vyesi\0"
+       "kesi\0"
+       "syeini\0"
+       "porge\0"
+       "\xc4\x8doh\xc4\x8d\xc3\xa2\0"
+       "roovv\xc3\xa2\x64\0"
+       "skamm\xc3\xa2\0"
+       "juovl\xc3\xa2\0"
+       "Febrero\0"
+       "Junio\0"
+       "Julio\0"
+       "Setiembre\0"
+       "Octubre\0"
+       "Noviembre\0"
+       "Diciembre\0"
+       "setiembre\0"
+       "Ene.\0"
+       "May.\0"
+       "Dic.\0"
+       "\xd1\x81\xd1\x80\xd0\xb5\0"
+       "f\xc3\xa9v.\0"
+       "jui.\0"
+       "\xd8\xa7\xd9\x84\xd8\xaa\xd9\x82\xd9\x88\xd9\x8a\xd9\x85 \xd8\xa7\xd9\x84\xd9\x87\xd8\xac\xd8\xb1\xd9\x8a\0"
+       "\xd0\xb3\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
+       "calendari gregori\xc3\xa0\0"
+       "\xe5\x85\xac\xe5\x8e\x86\0"
+       "Gregori\xc3\xa1nsk\xc3\xbd kalend\xc3\xa1\xc5\x99\0"
+       "gregoriansk kalender\0"
+       "Gregorianischer Kalender\0"
+       "\xce\x93\xcf\x81\xce\xb7\xce\xb3\xce\xbf\xcf\x81\xce\xb9\xce\xb1\xce\xbd\xcf\x8c \xce\xb7\xce\xbc\xce\xb5\xcf\x81\xce\xbf\xce\xbb\xcf\x8c\xce\xb3\xce\xb9\xce\xbf\0"
+       "Gregorian Calendar\0"
+       "calendario gregoriano\0"
+       "gregoriaaninen kalenteri\0"
+       "calendrier gr\xc3\xa9gorien\0"
+       "\xd7\x9c\xd7\x95\xd7\x97 \xd7\x94\xd7\xa9\xd7\xa0\xd7\x94 \xd7\x94\xd7\x92\xd7\xa8\xd7\x92\xd7\x95\xd7\xa8\xd7\x99\xd7\x90\xd7\xa0\xd7\x99\0"
+       "Gergely-napt\xc3\xa1r\0"
+       "Gregor\xc3\xadskt dagatal\0"
+       "Calendario gregoriano\0"
+       "\xe8\xa5\xbf\xe6\x9a\xa6(\xe3\x82\xb0\xe3\x83\xac\xe3\x82\xb4\xe3\x83\xaa\xe3\x82\xaa\xe6\x9a\xa6)\0"
+       "\xec\x96\x91\xeb\xa0\xa5\0"
+       "Gregoriaanse kalender\0"
+       "kalendarz gregoria\xc5\x84ski\0"
+       "Calend\xc3\xa1rio Gregoriano\0"
+       "chalender gregorian\0"
+       "calendar gregorian\0"
+       "\xd0\xb3\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\xd1\x8c\0"
+       "gregorijanski kalendar\0"
+       "gregori\xc3\xa1nsky kalend\xc3\xa1r\0"
+       "kalendar gregorian\0"
+       "\xe0\xb8\x9b\xe0\xb8\x8f\xe0\xb8\xb4\xe0\xb8\x97\xe0\xb8\xb4\xe0\xb8\x99\xe0\xb8\x9e\xe0\xb8\xb8\xe0\xb8\x97\xe0\xb8\x98\0"
+       "Miladi Takvim\0"
+       "\xd8\xac\xd8\xa7\xd8\xb1\xd8\xac\xdb\x8c\xd8\xa7\xd8\xa6\xdb\x8c \xda\xa9\xdb\x8c\xd9\x84\xd9\x86\xda\x88\xd8\xb1\0"
+       "Kalender Gregorian\0"
+       "\xd0\xb3\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd1\x96\xd0\xb0\xd0\xbd\xd1\x81\xd1\x8c\xd0\xba\xd0\xb8\xd0\xb9 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
+       "\xd0\xb3\xd1\x80\xd1\x8b\xd0\xb3\xd0\xb0\xd1\x80\xd1\x8b\xd1\x8f\xd0\xbd\xd1\x81\xd0\xba\xd1\x96 \xd0\xba\xd0\xb0\xd0\xbb\xd1\x8f\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
+       "gregorijanski koledar\0"
+       "Gregoriuse kalender\0"
+       "Gregora kalend\xc4\x81rs\0"
+       "Grigaliaus kalendorius\0"
+       "\xd8\xaa\xd9\x82\xd9\x88\xdb\x8c\xd9\x85 \xd9\x85\xdb\x8c\xd9\x84\xd8\xa7\xd8\xaf\xdb\x8c\0"
+       "L\xe1\xbb\x8b\x63h Gregory\0"
+       "\xd5\xa3\xd6\x80\xd5\xab\xd5\xa3\xd5\xb8\xd6\x80\xd5\xb5\xd5\xa1\xd5\xb6 \xd5\xbf\xd5\xb8\xd5\xb4\xd5\xa1\xd6\x80\0"
+       "Qreqorian T\xc9\x99qvimi\0"
+       "Egutegi gregoriarra\0"
+       "gregorianska protyka\0"
+       "\xd0\x93\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd1\x98\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
+       "ikhalenda lesi-Gregorian\0"
+       "Gregoriese kalender\0"
+       "\xe1\x83\x92\xe1\x83\xa0\xe1\x83\x98\xe1\x83\x92\xe1\x83\x9d\xe1\x83\xa0\xe1\x83\x98\xe1\x83\x90\xe1\x83\x9c\xe1\x83\xa3\xe1\x83\x9a\xe1\x83\x98 \xe1\x83\x99\xe1\x83\x90\xe1\x83\x9a\xe1\x83\x94\xe1\x83\x9c\xe1\x83\x93\xe1\x83\x90\xe1\x83\xa0\xe1\x83\x98\0"
+       "gregorianskur kalendari\0"
+       "\xe0\xa4\x97\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x87\xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xaf\xe0\xa4\xa8 \xe0\xa4\x95\xe0\xa5\x88\xe0\xa4\xb2\xe0\xa5\x87\xe0\xa4\x82\xe0\xa4\xa1\xe0\xa4\xb0\0"
+       "Kalendarju Gregorjan\0"
+       "gregoria kaleander\0"
+       "F\xc3\xa9ilire Ghr\xc3\xa9\x61g\xc3\xb3ra\0"
+       "Kalendar Gregory\0"
+       "\xd0\x93\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd\xd0\xb4\xd1\x8b\xd2\x9b \xd0\xba\xd2\xaf\xd0\xbd\xd1\x82\xd1\x96\xd0\xb7\xd0\xb1\xd0\xb5\0"
+       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd \xd0\xb6\xd1\x8b\xd0\xbb\xd0\xbd\xd0\xb0\xd0\xb0\xd0\xbc\xd0\xb0\xd1\x81\xd1\x8b\0"
+       "Kalenda ya Kigregori\0"
+       "Gregor\xc3\xbd\x61n senenamasy\0"
+       "grigorian taqvimi\0"
+       "\xe0\xa6\x97\xe0\xa7\x8d\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\x97\xe0\xa7\x8b\xe0\xa6\xb0\xe0\xa6\xbf\xe0\xa6\xaf\xe0\xa6\xbc\xe0\xa6\xbe\xe0\xa6\xa8 \xe0\xa6\x95\xe0\xa7\x8d\xe0\xa6\xaf\xe0\xa6\xbe\xe0\xa6\xb2\xe0\xa7\x87\xe0\xa6\xa8\xe0\xa7\x8d\xe0\xa6\xa1\xe0\xa6\xbe\xe0\xa6\xb0\0"
+       "\xe0\xa8\x97\xe0\xa8\xb0\xe0\xa9\x87\xe0\xa8\x97\xe0\xa9\x8b\xe0\xa8\xb0\xe0\xa9\x80\xe0\xa8\x85\xe0\xa8\xa8 \xe0\xa8\x95\xe0\xa9\x88\xe0\xa8\xb2\xe0\xa9\xb0\xe0\xa8\xa1\xe0\xa8\xb0\0"
+       "\xe0\xaa\x97\xe0\xab\x8d\xe0\xaa\xb0\xe0\xab\x87\xe0\xaa\x97\xe0\xab\x8b\xe0\xaa\xb0\xe0\xaa\xbf\xe0\xaa\x85\xe0\xaa\xa8 \xe0\xaa\x95\xe0\xab\x87\xe0\xaa\xb2\xe0\xab\x87\xe0\xaa\xa8\xe0\xab\x8d\xe0\xaa\xa1\xe0\xaa\xb0\0"
+       "\xe0\xae\x95\xe0\xae\xbf\xe0\xae\xb0\xe0\xae\xbf\xe0\xae\x95\xe0\xaf\x8b\xe0\xae\xb0\xe0\xae\xbf\xe0\xae\xaf\xe0\xae\xa9\xe0\xaf\x8d \xe0\xae\xa8\xe0\xae\xbe\xe0\xae\xb3\xe0\xaf\x8d\xe0\xae\x95\xe0\xae\xbe\xe0\xae\x9f\xe0\xaf\x8d\xe0\xae\x9f\xe0\xae\xbf\0"
+       "\xe0\xb0\x97\xe0\xb1\x8d\xe0\xb0\xb0\xe0\xb1\x87\xe0\xb0\x97\xe0\xb1\x8b\xe0\xb0\xb0\xe0\xb0\xbf\xe0\xb0\xaf\xe0\xb0\xa8\xe0\xb1\x8d \xe0\xb0\x95\xe0\xb1\x8d\xe0\xb0\xaf\xe0\xb0\xbe\xe0\xb0\xb2\xe0\xb1\x86\xe0\xb0\x82\xe0\xb0\xa1\xe0\xb0\xb0\xe0\xb1\x8d\0"
+       "\xe0\xb2\x97\xe0\xb3\x8d\xe0\xb2\xb0\xe0\xb3\x86\xe0\xb2\x97\xe0\xb3\x8b\xe0\xb2\xb0\xe0\xb2\xbf\xe0\xb2\xaf\xe0\xb2\xa8\xe0\xb3\x8d \xe0\xb2\x95\xe0\xb3\x8d\xe0\xb2\xaf\xe0\xb2\xbe\xe0\xb2\xb2\xe0\xb3\x86\xe0\xb2\x82\xe0\xb2\xa1\xe0\xb2\xb0\xe0\xb3\x8d\0"
+       "\xe0\xb4\x87\xe0\xb4\x82\xe0\xb4\x97\xe0\xb5\x8d\xe0\xb4\xb2\xe0\xb5\x80\xe0\xb4\xb7\xe0\xb5\x8d \xe0\xb4\x95\xe0\xb4\xb2\xe0\xb4\xa3\xe0\xb5\x8d\xe0\xb4\x9f\xe0\xb5\xbc\0"
+       "\xe0\xa6\x97\xe0\xa7\x8d\xe0\xa7\xb0\xe0\xa6\xbf\xe0\xa6\x97\xe0\xa7\x8b\xe0\xa7\xb0\xe0\xa7\x80\xe0\xa6\xaf\xe0\xa6\xbc \xe0\xa6\xaa\xe0\xa6\x9e\xe0\xa7\x8d\xe0\xa6\x9c\xe0\xa6\xbf\xe0\xa6\x95\xe0\xa6\xbe\0"
+       "\xe0\xa4\x97\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x87\xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xaf\xe0\xa4\xa8 \xe0\xa4\xa6\xe0\xa4\xbf\xe0\xa4\xa8\xe0\xa4\xa6\xe0\xa4\xb0\xe0\xa5\x8d\xe0\xa4\xb6\xe0\xa4\xbf\xe0\xa4\x95\xe0\xa4\xbe\0"
+       "\xd0\xb3\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb9\xd0\xbd \xd1\x85\xd1\x83\xd0\xb0\xd0\xbd\xd0\xbb\xd0\xb8\0"
+       "Calendr Gregori\0"
+       "\xe1\x9e\x94\xe1\x9f\x92\xe1\x9e\x9a\xe1\x9e\x8f\xe1\x9e\xb7\xe1\x9e\x91\xe1\x9e\xb7\xe1\x9e\x93\xe2\x80\x8b\xe1\x9e\xa0\xe1\x9f\x92\xe1\x9e\x9f\xe1\x9e\x80\xe1\x9e\xa0\xe1\x9f\x92\xe1\x9e\x9f\xe1\x9f\x8a\xe1\x9e\xb8\0"
+       "\xe0\xba\x9b\xe0\xba\xb0\xe0\xba\x95\xe0\xba\xb4\xe0\xba\x97\xe0\xba\xb4\xe0\xba\x99\xe0\xbb\x80\xe0\xba\x81\xe0\xba\xa3\xe0\xbb\x82\xe0\xba\x81\xe0\xba\xa3\xe0\xba\xbd\xe0\xba\x99\0"
+       "\xe1\x80\x94\xe1\x80\xad\xe1\x80\xaf\xe1\x80\x84\xe1\x80\xba\xe1\x80\x84\xe1\x80\xb6\xe1\x80\x90\xe1\x80\x80\xe1\x80\xac\xe1\x80\x9e\xe1\x80\xaf\xe1\x80\xb6\xe1\x80\xb8 \xe1\x80\x95\xe1\x80\xbc\xe1\x80\x80\xe1\x80\xb9\xe1\x80\x81\xe1\x80\x92\xe1\x80\xad\xe1\x80\x94\xe1\x80\xba\0"
+       "\xe0\xb6\x9c\xe0\xb7\x8a\xe2\x80\x8d\xe0\xb6\xbb\xe0\xb7\x99\xe0\xb6\x9c\xe0\xb6\xbb\xe0\xb7\x92\xe0\xb6\xba\xe0\xb7\x8f\xe0\xb6\xb1\xe0\xb7\x94 \xe0\xb6\xaf\xe0\xb7\x92\xe0\xb6\xb1 \xe0\xb6\xaf\xe0\xb6\xbb\xe0\xb7\x8a\xe0\xb7\x81\xe0\xb6\xb1\xe0\xb6\xba\0"
+       "\xe1\x8e\xa9\xe1\x8e\xb4\xe1\x8e\xaa\xe1\x8e\xb5\xe1\x8e\xa0\xe1\x8f\x82 \xe1\x8f\x85\xe1\x8f\x99 \xe1\x8f\x97\xe1\x8f\x8e\xe1\x8f\x8d\xe1\x8f\x97\0"
+       "\xe1\x8b\xa8\xe1\x8c\x8d\xe1\x88\xaa\xe1\x8c\x8e\xe1\x88\xaa\xe1\x8b\xab\xe1\x8a\x95 \xe1\x8b\xa8\xe1\x89\x80\xe1\x8a\x95 \xe1\x8a\xa0\xe1\x89\x86\xe1\x8c\xa3\xe1\x8c\xa0\xe1\x88\xad\0"
+       "\xe0\xa4\x97\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x87\xe0\xa4\x97\xe0\xa5\x8b\xe0\xa4\xb0\xe0\xa4\xbf\xe0\xa4\xaf\xe0\xa4\xa8 \xe0\xa4\xaa\xe0\xa4\xbe\xe0\xa4\xa4\xe0\xa5\x8d\xe0\xa4\xb0\xe0\xa5\x8b\0"
+       "Gregoriaanske kalinder\0"
+       "Gregorian na Kalendaryo\0"
+       "Gregorianesche Kalenner\0"
+       "gregorianskit ullorsiutaat\0"
+       "\xea\x84\x89\xea\x89\xbb\xea\x83\x85\xea\x91\x8d\0"
+       "deiziadur gregorian\0"
+       "\xd9\x85\xd9\x89\xd9\x84\xd8\xa7\xd8\xaf\xd9\x89\xd9\x8a\xdb\x95 \xd9\x8a\xd9\x89\xd9\x84\xd9\x86\xd8\xa7\xd9\x85\xdb\x95\xd8\xb3\xd9\x89\0"
+       "Gregoriaanisch Kal\xc3\xa4nder\0"
+       "Am M\xc3\xacosachan Griogarach\0"
+       "\xe5\x85\xac\xe6\x9b\x86\0"
+       "\xd8\xa7\xd9\x84\xd8\xaa\xd9\x82\xd9\x88\xd9\x8a\xd9\x85 \xd8\xa7\xd9\x84\xd9\x85\xd9\x8a\xd9\x84\xd8\xa7\xd8\xaf\xd9\x8a\0"
+       "Calend\xc3\xa1rio gregoriano\0"
+       "gregoria\xc5\x84ski kalender\0"
+       "\xd0\x93\xd1\x80\xd0\xb8\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd0\xb0\xd0\xbd \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\xd0\xb8\0"
+       "gregoriala\xc5\xa1 kalendar\0"
+       "\xd0\xb3\xd1\x80\xd0\xb5\xd0\xb3\xd0\xbe\xd1\x80\xd0\xb8\xd1\x98\xd0\xb0\xd0\xbd\xd1\x81\xd0\xba\xd0\xb8 \xd0\xba\xd0\xb0\xd0\xbb\xd0\xb5\xd0\xbd\xd0\xb4\xd0\xb0\xd1\x80\0"
+};
+
+
 #endif
 
index d2ce9167a1940fa764c79b60b318a9810c011947..f88f8dcd7834f34221dfe062b01c26c3a726431e 100644 (file)
@@ -17,6 +17,8 @@
 #define NUM_YEAR_MONTH_PATTERNS 8
 
 #define idx2string(idx) (locale_strings + (idx))
+#define pattern2string(idx) (patterns + (idx))
+#define dtidx2string(idx) (datetime_strings + (idx))
 
 /* need to change this if the string data ends up to not fit in a 64KB array. */
 typedef guint16 stridx_t;
index 783b528339c41d84657ab7ae50fcd0b0eb5831b9..9316b410cd6fcc1d13b13de6ca147141bdc9e98b 100644 (file)
@@ -133,7 +133,7 @@ create_names_array_idx (const guint16 *names, int ml, MonoError *error)
        return_val_if_nok (error, NULL);
 
        for(i = 0; i < ml; i++)
-               mono_array_setref (ret, i, mono_string_new (domain, idx2string (names [i])));
+               mono_array_setref (ret, i, mono_string_new (domain, dtidx2string (names [i])));
 
        return ret;
 }
@@ -162,7 +162,7 @@ create_names_array_idx_dynamic (const guint16 *names, int ml, MonoError *error)
        return_val_if_nok (error, NULL);
 
        for(i = 0; i < len; i++)
-               mono_array_setref (ret, i, mono_string_new (domain, idx2string (names [i])));
+               mono_array_setref (ret, i, mono_string_new (domain, pattern2string (names [i])));
 
        return ret;
 }
@@ -207,7 +207,7 @@ ves_icall_System_Globalization_CalendarData_fill_calendar_data (MonoCalendarData
        return_val_and_set_pending_if_nok (&error, FALSE);
        MONO_OBJECT_SETREF (this_obj, LongDatePatterns, long_date_patterns);
 
-       MONO_OBJECT_SETREF (this_obj, MonthDayPattern, mono_string_new (domain, idx2string (dfe->month_day_pattern)));
+       MONO_OBJECT_SETREF (this_obj, MonthDayPattern, mono_string_new (domain, pattern2string (dfe->month_day_pattern)));
 
        MonoArray *day_names = create_names_array_idx (dfe->day_names, NUM_DAYS, &error);
        return_val_and_set_pending_if_nok (&error, FALSE);
diff --git a/tools/locale-builder/CLDR/common/main/ha_Latn.xml b/tools/locale-builder/CLDR/common/main/ha_Latn.xml
new file mode 100644 (file)
index 0000000..8fa062e
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="ha"/>
+               <script type="Latn"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/ha_Latn_NG.xml b/tools/locale-builder/CLDR/common/main/ha_Latn_NG.xml
new file mode 100644 (file)
index 0000000..d8aa456
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="ha"/>
+               <script type="Latn"/>
+               <territory type="NG"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/mn_Cyrl.xml b/tools/locale-builder/CLDR/common/main/mn_Cyrl.xml
new file mode 100644 (file)
index 0000000..536d5ca
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="mn"/>
+               <script type="Cyrl"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/nso.xml b/tools/locale-builder/CLDR/common/main/nso.xml
new file mode 100644 (file)
index 0000000..b701e91
--- /dev/null
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9287 $"/>
+               <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
+               <language type="nso"/>
+       </identity>
+       <localeDisplayNames>
+               <languages>
+                       <language type="nso" draft="provisional">Sesotho sa Leboa</language>
+               </languages>
+       </localeDisplayNames>
+       <characters>
+               <exemplarCharacters>[a b d e ê f g h i j k l m n o ô p r s š t u w x y]</exemplarCharacters>
+               <exemplarCharacters type="auxiliary">[c q v z]</exemplarCharacters>
+               <exemplarCharacters type="index" draft="unconfirmed">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
+       </characters>
+       <delimiters>
+               <quotationStart draft="unconfirmed">‘</quotationStart>
+               <quotationEnd draft="unconfirmed">’</quotationEnd>
+               <alternateQuotationStart draft="unconfirmed">“</alternateQuotationStart>
+               <alternateQuotationEnd draft="unconfirmed">”</alternateQuotationEnd>
+       </delimiters>
+       <dates>
+               <calendars>
+                       <calendar type="gregorian">
+                               <months>
+                                       <monthContext type="format">
+                                               <monthWidth type="abbreviated">
+                                                       <month type="1" draft="unconfirmed">Jan</month>
+                                                       <month type="2" draft="unconfirmed">Feb</month>
+                                                       <month type="3" draft="unconfirmed">Mat</month>
+                                                       <month type="4" draft="unconfirmed">Apo</month>
+                                                       <month type="5" draft="unconfirmed">Mei</month>
+                                                       <month type="6" draft="unconfirmed">Jun</month>
+                                                       <month type="7" draft="unconfirmed">Jul</month>
+                                                       <month type="8" draft="unconfirmed">Ago</month>
+                                                       <month type="9" draft="unconfirmed">Set</month>
+                                                       <month type="10" draft="unconfirmed">Okt</month>
+                                                       <month type="11" draft="unconfirmed">Nof</month>
+                                                       <month type="12" draft="unconfirmed">Dis</month>
+                                               </monthWidth>
+                                               <monthWidth type="wide">
+                                                       <month type="1" draft="unconfirmed">Janaware</month>
+                                                       <month type="2" draft="unconfirmed">Feberware</month>
+                                                       <month type="3" draft="unconfirmed">Matšhe</month>
+                                                       <month type="4" draft="unconfirmed">Aporele</month>
+                                                       <month type="5" draft="unconfirmed">Mei</month>
+                                                       <month type="6" draft="unconfirmed">June</month>
+                                                       <month type="7" draft="unconfirmed">Julae</month>
+                                                       <month type="8" draft="unconfirmed">Agostose</month>
+                                                       <month type="9" draft="unconfirmed">Setemere</month>
+                                                       <month type="10" draft="unconfirmed">Oktobore</month>
+                                                       <month type="11" draft="unconfirmed">Nofemere</month>
+                                                       <month type="12" draft="unconfirmed">Disemere</month>
+                                               </monthWidth>
+                                       </monthContext>
+                               </months>
+                               <days>
+                                       <dayContext type="format">
+                                               <dayWidth type="abbreviated">
+                                                       <day type="sun" draft="unconfirmed">Son</day>
+                                                       <day type="mon" draft="unconfirmed">Mos</day>
+                                                       <day type="tue" draft="unconfirmed">Bed</day>
+                                                       <day type="wed" draft="unconfirmed">Rar</day>
+                                                       <day type="thu" draft="unconfirmed">Ne</day>
+                                                       <day type="fri" draft="unconfirmed">Hla</day>
+                                                       <day type="sat" draft="unconfirmed">Mok</day>
+                                               </dayWidth>
+                                               <dayWidth type="wide">
+                                                       <day type="sun" draft="unconfirmed">Sontaga</day>
+                                                       <day type="mon" draft="unconfirmed">Mosupalogo</day>
+                                                       <day type="tue" draft="unconfirmed">Labobedi</day>
+                                                       <day type="wed" draft="unconfirmed">Laboraro</day>
+                                                       <day type="thu" draft="unconfirmed">Labone</day>
+                                                       <day type="fri" draft="unconfirmed">Labohlano</day>
+                                                       <day type="sat" draft="unconfirmed">Mokibelo</day>
+                                               </dayWidth>
+                                       </dayContext>
+                               </days>
+                       </calendar>
+               </calendars>
+       </dates>
+       <numbers>
+               <symbols numberSystem="latn">
+                       <decimal>,</decimal>
+                       <group> </group>
+               </symbols>
+               <decimalFormats numberSystem="latn">
+                       <decimalFormatLength>
+                               <decimalFormat>
+                                       <pattern>#,##0.###</pattern>
+                               </decimalFormat>
+                       </decimalFormatLength>
+               </decimalFormats>
+               <scientificFormats numberSystem="latn">
+                       <scientificFormatLength>
+                               <scientificFormat>
+                                       <pattern>#E0</pattern>
+                               </scientificFormat>
+                       </scientificFormatLength>
+               </scientificFormats>
+               <percentFormats numberSystem="latn">
+                       <percentFormatLength>
+                               <percentFormat>
+                                       <pattern>#,##0%</pattern>
+                               </percentFormat>
+                       </percentFormatLength>
+               </percentFormats>
+               <currencyFormats numberSystem="latn">
+                       <currencyFormatLength>
+                               <currencyFormat type="standard">
+                                       <pattern>¤#,##0.00</pattern>
+                               </currencyFormat>
+                       </currencyFormatLength>
+               </currencyFormats>
+               <currencies>
+                       <currency type="ZAR">
+                               <symbol>R</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+</ldml>
+
diff --git a/tools/locale-builder/CLDR/common/main/nso_ZA.xml b/tools/locale-builder/CLDR/common/main/nso_ZA.xml
new file mode 100644 (file)
index 0000000..7f73905
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="nso"/>
+               <territory type="ZA"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/st.xml b/tools/locale-builder/CLDR/common/main/st.xml
new file mode 100644 (file)
index 0000000..e709ffc
--- /dev/null
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9287 $"/>
+               <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
+               <language type="st"/>
+       </identity>
+       <localeDisplayNames>
+               <languages>
+                       <language type="af" draft="unconfirmed">Seburu</language>
+                       <language type="am" draft="unconfirmed">Se-amhari</language>
+                       <language type="ar" draft="unconfirmed">Se-arab</language>
+                       <language type="az" draft="unconfirmed">Se-azerbaijani</language>
+                       <language type="be" draft="unconfirmed">Se-belarusia</language>
+                       <language type="bg" draft="unconfirmed">Se-bulgaria</language>
+                       <language type="bh" draft="unconfirmed">Se-bihari</language>
+                       <language type="bn" draft="unconfirmed">Se-bengali</language>
+                       <language type="br" draft="unconfirmed">Breton</language>
+                       <language type="bs" draft="unconfirmed">Se-bosnia</language>
+                       <language type="ca" draft="unconfirmed">Se-catalia</language>
+                       <language type="cs" draft="unconfirmed">Se-czech</language>
+                       <language type="cy" draft="unconfirmed">Se-welsh</language>
+                       <language type="da" draft="unconfirmed">Se-dutch</language>
+                       <language type="de" draft="unconfirmed">Se-jeremane</language>
+                       <language type="el" draft="unconfirmed">Se-greek</language>
+                       <language type="en" draft="unconfirmed">Senyesemane</language>
+                       <language type="eo" draft="unconfirmed">Se-esperanto</language>
+                       <language type="es" draft="unconfirmed">Sespain</language>
+                       <language type="et" draft="unconfirmed">Se-estonia</language>
+                       <language type="eu" draft="unconfirmed">Se-basque</language>
+                       <language type="fa" draft="unconfirmed">Se-persia</language>
+                       <language type="fi" draft="unconfirmed">Se-finnish</language>
+                       <language type="fil" draft="unconfirmed">Se-tagalog</language>
+                       <language type="fo" draft="unconfirmed">Se-foroese</language>
+                       <language type="fr" draft="unconfirmed">Se-french</language>
+                       <language type="fy" draft="unconfirmed">Se-frisia</language>
+                       <language type="ga" draft="unconfirmed">Se-irish</language>
+                       <language type="gd" draft="unconfirmed">Se-scots gaelic</language>
+                       <language type="gl" draft="unconfirmed">Se-galicia</language>
+                       <language type="gn" draft="unconfirmed">Guarani</language>
+                       <language type="gu" draft="unconfirmed">Se-gujarati</language>
+                       <language type="he" draft="unconfirmed">Se-hebrew</language>
+                       <language type="hi" draft="unconfirmed">Se-hindi</language>
+                       <language type="hr" draft="unconfirmed">Se-croatia</language>
+                       <language type="hu" draft="unconfirmed">Se-hungaria</language>
+                       <language type="ia" draft="unconfirmed">Se-interlingua</language>
+                       <language type="id" draft="unconfirmed">Se-indonesia</language>
+                       <language type="is" draft="unconfirmed">Se-iceland</language>
+                       <language type="it" draft="unconfirmed">Se-tariana</language>
+                       <language type="ja" draft="unconfirmed">Se-japane</language>
+                       <language type="jv" draft="unconfirmed">Se-javane</language>
+                       <language type="ka" draft="unconfirmed">Se-geogia</language>
+                       <language type="kn" draft="unconfirmed">Se-kannada</language>
+                       <language type="ko" draft="unconfirmed">Se-korea</language>
+                       <language type="ku" draft="unconfirmed">Kurdish</language>
+                       <language type="ky" draft="unconfirmed">Kyrgyz</language>
+                       <language type="la" draft="unconfirmed">Se-latino</language>
+                       <language type="lt" draft="unconfirmed">Se-Lithuano</language>
+                       <language type="mk" draft="unconfirmed">Se-masedonia</language>
+                       <language type="ml" draft="unconfirmed">Se-malayalam</language>
+                       <language type="mr" draft="unconfirmed">Se-marathi</language>
+                       <language type="ms" draft="unconfirmed">Se-malay</language>
+                       <language type="mt" draft="unconfirmed">Se-maltese</language>
+                       <language type="ne" draft="unconfirmed">Se-nepali</language>
+                       <language type="nl" draft="unconfirmed">Dutch</language>
+                       <language type="nn" draft="unconfirmed">Se-norway (Nynorsk)</language>
+                       <language type="no" draft="unconfirmed">Se-norway</language>
+                       <language type="oc" draft="unconfirmed">Se-occitan</language>
+                       <language type="or" draft="unconfirmed">Oriya</language>
+                       <language type="pa" draft="unconfirmed">Se-punjabi</language>
+                       <language type="pl" draft="unconfirmed">Se-polish</language>
+                       <language type="ps" draft="unconfirmed">Pashto</language>
+                       <language type="pt" draft="unconfirmed">Se-portugal</language>
+                       <language type="pt_BR" draft="unconfirmed">Seputukesi (sa Brazil)</language>
+                       <language type="pt_PT" draft="unconfirmed">Se-portugal (Portugal)</language>
+                       <language type="ro" draft="unconfirmed">Se-romania</language>
+                       <language type="ru" draft="unconfirmed">Se-rushia</language>
+                       <language type="sh" draft="unconfirmed">Serbo-Croatian</language>
+                       <language type="si" draft="unconfirmed">Se-sinhali</language>
+                       <language type="sk" draft="unconfirmed">Se-slovak</language>
+                       <language type="sl" draft="unconfirmed">Se-slovania</language>
+                       <language type="sq" draft="unconfirmed">Se-albanian</language>
+                       <language type="sr" draft="unconfirmed">Se-serbian</language>
+                       <language type="st" draft="contributed">Sesotho</language>
+                       <language type="su" draft="unconfirmed">Se-sundanese</language>
+                       <language type="sv" draft="unconfirmed">Se-sweden</language>
+                       <language type="sw" draft="unconfirmed">Se-swahili</language>
+                       <language type="ta" draft="unconfirmed">Se-tamil</language>
+                       <language type="te" draft="unconfirmed">Se-telegu</language>
+                       <language type="th" draft="unconfirmed">Se-thai</language>
+                       <language type="ti" draft="unconfirmed">Se-tigrinya</language>
+                       <language type="tk" draft="unconfirmed">Turkmen</language>
+                       <language type="tlh" draft="unconfirmed">Se-klingon</language>
+                       <language type="tr" draft="unconfirmed">Se-theki</language>
+                       <language type="tw" draft="unconfirmed">Twi</language>
+                       <language type="uk" draft="unconfirmed">Se-ukrania</language>
+                       <language type="ur" draft="unconfirmed">Se-urdu</language>
+                       <language type="uz" draft="unconfirmed">Se-uzbek</language>
+                       <language type="vi" draft="unconfirmed">Se-vietnam</language>
+                       <language type="xh" draft="unconfirmed">se Xhosa</language>
+                       <language type="yi" draft="unconfirmed">Yiddish</language>
+                       <language type="zu" draft="unconfirmed">se Zulu</language>
+               </languages>
+       </localeDisplayNames>
+       <characters>
+               <exemplarCharacters>[a b d e f g h i j k l m n o p q r s t u w y]</exemplarCharacters>
+               <exemplarCharacters type="auxiliary">[c v x z]</exemplarCharacters>
+               <exemplarCharacters type="index" draft="unconfirmed">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
+       </characters>
+       <delimiters>
+               <quotationStart draft="unconfirmed">‘</quotationStart>
+               <quotationEnd draft="unconfirmed">’</quotationEnd>
+               <alternateQuotationStart draft="unconfirmed">“</alternateQuotationStart>
+               <alternateQuotationEnd draft="unconfirmed">”</alternateQuotationEnd>
+       </delimiters>
+       <dates>
+               <calendars>
+                       <calendar type="gregorian">
+                               <months>
+                                       <monthContext type="format">
+                                               <monthWidth type="abbreviated">
+                                                       <month type="1" draft="unconfirmed">Phe</month>
+                                                       <month type="2" draft="unconfirmed">Kol</month>
+                                                       <month type="3" draft="unconfirmed">Ube</month>
+                                                       <month type="4" draft="unconfirmed">Mme</month>
+                                                       <month type="5" draft="unconfirmed">Mot</month>
+                                                       <month type="6" draft="unconfirmed">Jan</month>
+                                                       <month type="7" draft="unconfirmed">Upu</month>
+                                                       <month type="8" draft="unconfirmed">Pha</month>
+                                                       <month type="9" draft="unconfirmed">Leo</month>
+                                                       <month type="10" draft="unconfirmed">Mph</month>
+                                                       <month type="11" draft="unconfirmed">Pun</month>
+                                                       <month type="12" draft="unconfirmed">Tsh</month>
+                                               </monthWidth>
+                                               <monthWidth type="wide">
+                                                       <month type="1" draft="unconfirmed">Phesekgong</month>
+                                                       <month type="2" draft="unconfirmed">Hlakola</month>
+                                                       <month type="3" draft="unconfirmed">Hlakubele</month>
+                                                       <month type="4" draft="unconfirmed">Mmese</month>
+                                                       <month type="5" draft="unconfirmed">Motsheanong</month>
+                                                       <month type="6" draft="unconfirmed">Phupjane</month>
+                                                       <month type="7" draft="unconfirmed">Phupu</month>
+                                                       <month type="8" draft="unconfirmed">Phata</month>
+                                                       <month type="9" draft="unconfirmed">Leotshe</month>
+                                                       <month type="10" draft="unconfirmed">Mphalane</month>
+                                                       <month type="11" draft="unconfirmed">Pundungwane</month>
+                                                       <month type="12" draft="unconfirmed">Tshitwe</month>
+                                               </monthWidth>
+                                       </monthContext>
+                               </months>
+                               <days>
+                                       <dayContext type="format">
+                                               <dayWidth type="abbreviated">
+                                                       <day type="sun" draft="unconfirmed">Son</day>
+                                                       <day type="mon" draft="unconfirmed">Mma</day>
+                                                       <day type="tue" draft="unconfirmed">Bed</day>
+                                                       <day type="wed" draft="unconfirmed">Rar</day>
+                                                       <day type="thu" draft="unconfirmed">Ne</day>
+                                                       <day type="fri" draft="unconfirmed">Hla</day>
+                                                       <day type="sat" draft="unconfirmed">Moq</day>
+                                               </dayWidth>
+                                               <dayWidth type="wide">
+                                                       <day type="sun" draft="unconfirmed">Sontaha</day>
+                                                       <day type="mon" draft="unconfirmed">Mmantaha</day>
+                                                       <day type="tue" draft="unconfirmed">Labobedi</day>
+                                                       <day type="wed" draft="unconfirmed">Laboraru</day>
+                                                       <day type="thu" draft="unconfirmed">Labone</day>
+                                                       <day type="fri" draft="unconfirmed">Labohlane</day>
+                                                       <day type="sat" draft="unconfirmed">Moqebelo</day>
+                                               </dayWidth>
+                                       </dayContext>
+                               </days>
+                       </calendar>
+               </calendars>
+       </dates>
+       <numbers>
+               <symbols numberSystem="latn">
+                       <decimal>,</decimal>
+                       <group> </group>
+               </symbols>
+               <decimalFormats numberSystem="latn">
+                       <decimalFormatLength>
+                               <decimalFormat>
+                                       <pattern>#,##0.###</pattern>
+                               </decimalFormat>
+                       </decimalFormatLength>
+               </decimalFormats>
+               <scientificFormats numberSystem="latn">
+                       <scientificFormatLength>
+                               <scientificFormat>
+                                       <pattern>#E0</pattern>
+                               </scientificFormat>
+                       </scientificFormatLength>
+               </scientificFormats>
+               <percentFormats numberSystem="latn">
+                       <percentFormatLength>
+                               <percentFormat>
+                                       <pattern>#,##0%</pattern>
+                               </percentFormat>
+                       </percentFormatLength>
+               </percentFormats>
+               <currencyFormats numberSystem="latn">
+                       <currencyFormatLength>
+                               <currencyFormat type="standard">
+                                       <pattern>¤#,##0.00</pattern>
+                               </currencyFormat>
+                       </currencyFormatLength>
+               </currencyFormats>
+               <currencies>
+                       <currency type="ZAR">
+                               <symbol>R</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+</ldml>
+
diff --git a/tools/locale-builder/CLDR/common/main/st_ZA.xml b/tools/locale-builder/CLDR/common/main/st_ZA.xml
new file mode 100644 (file)
index 0000000..1899565
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="st"/>
+               <territory type="ZA"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/tg.xml b/tools/locale-builder/CLDR/common/main/tg.xml
new file mode 100644 (file)
index 0000000..ba40e08
--- /dev/null
@@ -0,0 +1,248 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="tg"/>
+       </identity>
+       <localeDisplayNames>
+               <languages>
+                       <language type="be" draft="unconfirmed">Белорусӣ</language>
+                       <language type="bg" draft="unconfirmed">Булғорӣ</language>
+                       <language type="bh" draft="unconfirmed">Биҳарӣ</language>
+                       <language type="bn" draft="unconfirmed">Бенгалӣ</language>
+                       <language type="br" draft="unconfirmed">Бретонӣ</language>
+                       <language type="bs" draft="unconfirmed">Босниягӣ</language>
+                       <language type="ca" draft="unconfirmed">Каталанӣ</language>
+                       <language type="cs" draft="unconfirmed">Чехӣ</language>
+                       <language type="da" draft="unconfirmed">Даниягӣ</language>
+                       <language type="de">Немисӣ</language>
+                       <language type="el" draft="unconfirmed">Юнонӣ</language>
+                       <language type="en">Англисӣ</language>
+                       <language type="eo" draft="unconfirmed">Эсперанто</language>
+                       <language type="es" draft="unconfirmed">Испанӣ</language>
+                       <language type="et" draft="unconfirmed">Эстонӣ</language>
+                       <language type="eu" draft="unconfirmed">Баскӣ</language>
+                       <language type="fa" draft="unconfirmed">Форсӣ</language>
+                       <language type="fi" draft="unconfirmed">Финнӣ</language>
+                       <language type="fil" draft="unconfirmed">Филиппинӣ</language>
+                       <language type="fo" draft="unconfirmed">Фарозӣ</language>
+                       <language type="fr">Фаронсавӣ</language>
+                       <language type="fy" draft="unconfirmed">Фрисианӣ</language>
+                       <language type="ga" draft="unconfirmed">Ирландӣ</language>
+                       <language type="gd" draft="unconfirmed">Шотландӣ-Галикӣ</language>
+                       <language type="gl" draft="unconfirmed">Галисианӣ</language>
+                       <language type="gn" draft="unconfirmed">Горанӣ</language>
+                       <language type="gu" draft="unconfirmed">Гуҷаратӣ</language>
+                       <language type="he" draft="unconfirmed">Яҳудӣ</language>
+                       <language type="hi" draft="unconfirmed">Ҳиндӣ</language>
+                       <language type="hu" draft="unconfirmed">Маҷорӣ</language>
+                       <language type="ia" draft="unconfirmed">Байни забонӣ</language>
+                       <language type="id" draft="unconfirmed">Индонезӣ</language>
+                       <language type="is" draft="unconfirmed">Исландӣ</language>
+                       <language type="ja" draft="unconfirmed">Ҷопонӣ</language>
+                       <language type="jv" draft="unconfirmed">Ҷаванизӣ</language>
+                       <language type="ka" draft="unconfirmed">Гурҷӣ</language>
+                       <language type="ky" draft="unconfirmed">Қирғизӣ</language>
+                       <language type="la" draft="unconfirmed">Лотинӣ</language>
+                       <language type="lo" draft="unconfirmed">Лаосӣ</language>
+                       <language type="lt" draft="unconfirmed">Литвонӣ</language>
+                       <language type="lv" draft="unconfirmed">Латвиягӣ</language>
+                       <language type="nl" draft="unconfirmed">Ҳолландӣ</language>
+                       <language type="no" draft="unconfirmed">Норвегӣ</language>
+                       <language type="or" draft="unconfirmed">Урисоӣ</language>
+                       <language type="pl" draft="unconfirmed">Лаҳистонӣ</language>
+                       <language type="pt" draft="unconfirmed">Португалӣ</language>
+                       <language type="pt_BR" draft="unconfirmed">Португалӣ (Бразилия)</language>
+                       <language type="ro" draft="unconfirmed">Руминӣ</language>
+                       <language type="ru" draft="unconfirmed">Русӣ</language>
+                       <language type="sv" draft="unconfirmed">Шведӣ</language>
+                       <language type="tg" draft="unconfirmed">Тоҷикӣ</language>
+                       <language type="ug" draft="unconfirmed">Ӯйғурӣ</language>
+                       <language type="uk" draft="unconfirmed">Украинӣ</language>
+                       <language type="ur" draft="unconfirmed">Урду</language>
+                       <language type="uz" draft="unconfirmed">Ӯзбекӣ</language>
+                       <language type="yi" draft="unconfirmed">Яҳудии Аврупои шарқӣ</language>
+                       <language type="zh">Чинӣ</language>
+                       <language type="zu" draft="unconfirmed">Зулу</language>
+               </languages>
+               <scripts>
+                       <script type="Arab">Арабӣ</script>
+               </scripts>
+               <territories>
+                       <territory type="AF">Афғонистан</territory>
+                       <territory type="TJ">Тоҷикистон</territory>
+                       <territory type="TO" draft="unconfirmed">Тонга</territory>
+               </territories>
+       </localeDisplayNames>
+       <characters>
+               <exemplarCharacters>[а б в г ғ д е ё ж з и ӣ й к қ л м н о п р с т у ӯ ф х ҳ ч ҷ ш ъ э ю я]</exemplarCharacters>
+               <exemplarCharacters type="auxiliary">[ц щ ы ь]</exemplarCharacters>
+               <exemplarCharacters type="index" draft="unconfirmed">[А Б В Г Ғ Д Е Ж З И Й К Қ Л М Н О П Р С Т У Ф Х Ҳ Ч Ҷ Ш Ъ Э Ю Я]</exemplarCharacters>
+       </characters>
+       <delimiters>
+               <quotationStart draft="unconfirmed">«</quotationStart>
+               <quotationEnd draft="unconfirmed">»</quotationEnd>
+               <alternateQuotationStart draft="unconfirmed">«</alternateQuotationStart>
+               <alternateQuotationEnd draft="unconfirmed">„</alternateQuotationEnd>
+       </delimiters>
+       <dates>
+               <calendars>
+                       <calendar type="generic">
+                               <dateFormats>
+                                       <dateFormatLength type="full">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">EEEE, G y MMMM dd</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                                       <dateFormatLength type="long">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">G y MMMM d</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                                       <dateFormatLength type="medium">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">G y MMM d</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                                       <dateFormatLength type="short">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">GGGGG yy/MM/dd</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                               </dateFormats>
+                       </calendar>
+                       <calendar type="gregorian">
+                               <months>
+                                       <monthContext type="format">
+                                               <monthWidth type="abbreviated">
+                                                       <month type="1" draft="unconfirmed">Янв</month>
+                                                       <month type="2" draft="unconfirmed">Фев</month>
+                                                       <month type="3" draft="unconfirmed">Мар</month>
+                                                       <month type="4" draft="unconfirmed">Апр</month>
+                                                       <month type="5" draft="unconfirmed">Май</month>
+                                                       <month type="6" draft="unconfirmed">Июн</month>
+                                                       <month type="7" draft="unconfirmed">Июл</month>
+                                                       <month type="8" draft="unconfirmed">Авг</month>
+                                                       <month type="9" draft="unconfirmed">Сен</month>
+                                                       <month type="10" draft="unconfirmed">Окт</month>
+                                                       <month type="11" draft="unconfirmed">Ноя</month>
+                                                       <month type="12" draft="unconfirmed">Дек</month>
+                                               </monthWidth>
+                                               <monthWidth type="wide">
+                                                       <month type="1" draft="unconfirmed">Январ</month>
+                                                       <month type="2" draft="unconfirmed">Феврал</month>
+                                                       <month type="3" draft="unconfirmed">Март</month>
+                                                       <month type="4" draft="unconfirmed">Апрел</month>
+                                                       <month type="5" draft="unconfirmed">Май</month>
+                                                       <month type="6" draft="unconfirmed">Июн</month>
+                                                       <month type="7" draft="unconfirmed">Июл</month>
+                                                       <month type="8" draft="unconfirmed">Август</month>
+                                                       <month type="9" draft="unconfirmed">Сентябр</month>
+                                                       <month type="10" draft="unconfirmed">Октябр</month>
+                                                       <month type="11" draft="unconfirmed">Ноябр</month>
+                                                       <month type="12" draft="unconfirmed">Декабр</month>
+                                               </monthWidth>
+                                       </monthContext>
+                               </months>
+                               <days>
+                                       <dayContext type="format">
+                                               <dayWidth type="abbreviated">
+                                                       <day type="sun" draft="unconfirmed">Яшб</day>
+                                                       <day type="mon" draft="unconfirmed">Дшб</day>
+                                                       <day type="tue" draft="unconfirmed">Сшб</day>
+                                                       <day type="wed" draft="unconfirmed">Чшб</day>
+                                                       <day type="thu" draft="unconfirmed">Пшб</day>
+                                                       <day type="fri" draft="unconfirmed">Ҷмъ</day>
+                                                       <day type="sat" draft="unconfirmed">Шнб</day>
+                                               </dayWidth>
+                                               <dayWidth type="wide">
+                                                       <day type="sun" draft="unconfirmed">Якшанбе</day>
+                                                       <day type="mon" draft="unconfirmed">Душанбе</day>
+                                                       <day type="tue" draft="unconfirmed">Сешанбе</day>
+                                                       <day type="wed" draft="unconfirmed">Чоршанбе</day>
+                                                       <day type="thu" draft="unconfirmed">Панҷшанбе</day>
+                                                       <day type="fri" draft="unconfirmed">Ҷумъа</day>
+                                                       <day type="sat" draft="unconfirmed">Шанбе</day>
+                                               </dayWidth>
+                                       </dayContext>
+                               </days>
+                               <dayPeriods>
+                                       <dayPeriodContext type="format">
+                                               <dayPeriodWidth type="wide">
+                                                       <dayPeriod type="am" draft="unconfirmed">пе. чо.</dayPeriod>
+                                                       <dayPeriod type="pm" draft="unconfirmed">па. чо.</dayPeriod>
+                                               </dayPeriodWidth>
+                                       </dayPeriodContext>
+                               </dayPeriods>
+                               <eras>
+                                       <eraNames>
+                                               <era type="0" draft="unconfirmed">Пеш аз милод</era>
+                                               <era type="1" draft="unconfirmed">ПаМ</era>
+                                       </eraNames>
+                                       <eraAbbr>
+                                               <era type="0" draft="unconfirmed">ПеМ</era>
+                                               <era type="1" draft="unconfirmed">ПаМ</era>
+                                       </eraAbbr>
+                               </eras>
+                               <dateFormats>
+                                       <dateFormatLength type="full">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">EEEE, y MMMM dd</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                                       <dateFormatLength type="long">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">y MMMM d</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                                       <dateFormatLength type="medium">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">y MMM d</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                                       <dateFormatLength type="short">
+                                               <dateFormat>
+                                                       <pattern draft="unconfirmed">yy/MM/dd</pattern>
+                                               </dateFormat>
+                                       </dateFormatLength>
+                               </dateFormats>
+                               <timeFormats>
+                                       <timeFormatLength type="full">
+                                               <timeFormat>
+                                                       <pattern draft="unconfirmed">HH:mm:ss zzzz</pattern>
+                                               </timeFormat>
+                                       </timeFormatLength>
+                                       <timeFormatLength type="long">
+                                               <timeFormat>
+                                                       <pattern draft="unconfirmed">HH:mm:ss z</pattern>
+                                               </timeFormat>
+                                       </timeFormatLength>
+                                       <timeFormatLength type="medium">
+                                               <timeFormat>
+                                                       <pattern draft="unconfirmed">HH:mm:ss</pattern>
+                                               </timeFormat>
+                                       </timeFormatLength>
+                                       <timeFormatLength type="short">
+                                               <timeFormat>
+                                                       <pattern draft="unconfirmed">HH:mm</pattern>
+                                               </timeFormat>
+                                       </timeFormatLength>
+                               </timeFormats>
+                       </calendar>
+               </calendars>
+       </dates>
+       <numbers>
+               <currencies>
+                       <currency type="TJS">
+                               <displayName draft="unconfirmed">Сомонӣ</displayName>
+                               <symbol draft="unconfirmed">сом</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/tg_Cyrl.xml b/tools/locale-builder/CLDR/common/main/tg_Cyrl.xml
new file mode 100644 (file)
index 0000000..df2e1e7
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="tg"/>
+               <script type="Cyrl"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/tg_Cyrl_TJ.xml b/tools/locale-builder/CLDR/common/main/tg_Cyrl_TJ.xml
new file mode 100644 (file)
index 0000000..fcd7287
--- /dev/null
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="tg"/>
+               <script type="Cyrl"/>
+               <territory type="TJ"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/tn.xml b/tools/locale-builder/CLDR/common/main/tn.xml
new file mode 100644 (file)
index 0000000..5f17c21
--- /dev/null
@@ -0,0 +1,208 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9287 $"/>
+               <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
+               <language type="tn"/>
+       </identity>
+       <localeDisplayNames>
+               <languages>
+                       <language type="af" draft="unconfirmed">Seburu</language>
+                       <language type="am" draft="unconfirmed">Amhariki</language>
+                       <language type="ar" draft="unconfirmed">Arabic</language>
+                       <language type="az" draft="unconfirmed">Azerbaijani</language>
+                       <language type="be" draft="unconfirmed">Belarusian</language>
+                       <language type="bg" draft="unconfirmed">Bulgarian</language>
+                       <language type="bh" draft="unconfirmed">Bihari</language>
+                       <language type="bn" draft="unconfirmed">Bengali</language>
+                       <language type="bs" draft="unconfirmed">SeBosnia</language>
+                       <language type="ca" draft="unconfirmed">Catalan</language>
+                       <language type="cs" draft="unconfirmed">Se Czeck</language>
+                       <language type="cy" draft="unconfirmed">Welsh</language>
+                       <language type="da" draft="unconfirmed">Danish</language>
+                       <language type="de" draft="unconfirmed">German</language>
+                       <language type="el" draft="unconfirmed">SeGerika</language>
+                       <language type="en" draft="unconfirmed">Sekgoa</language>
+                       <language type="eo" draft="unconfirmed">Esperanto</language>
+                       <language type="es" draft="unconfirmed">Spanish</language>
+                       <language type="et" draft="unconfirmed">Estonian</language>
+                       <language type="eu" draft="unconfirmed">Basque</language>
+                       <language type="fa" draft="unconfirmed">Mo/SePerishia</language>
+                       <language type="fi" draft="unconfirmed">Se-Finland</language>
+                       <language type="fil" draft="unconfirmed">Tagalog</language>
+                       <language type="fo" draft="unconfirmed">Faroese</language>
+                       <language type="fr" draft="unconfirmed">Se Fora</language>
+                       <language type="fy" draft="unconfirmed">Frisian</language>
+                       <language type="ga" draft="unconfirmed">Irish</language>
+                       <language type="gd" draft="unconfirmed">Scots Gaelic</language>
+                       <language type="gl" draft="unconfirmed">Galician</language>
+                       <language type="gu" draft="unconfirmed">Gujarati</language>
+                       <language type="he" draft="unconfirmed">Se heberu</language>
+                       <language type="hi" draft="unconfirmed">Hindi</language>
+                       <language type="hr" draft="unconfirmed">Croatian</language>
+                       <language type="hu" draft="unconfirmed">Hungarian</language>
+                       <language type="ia" draft="unconfirmed">Interlingua</language>
+                       <language type="id" draft="unconfirmed">Indonesian</language>
+                       <language type="is" draft="unconfirmed">Icelandic</language>
+                       <language type="it" draft="unconfirmed">Se Italiano</language>
+                       <language type="ja" draft="unconfirmed">Se Japan</language>
+                       <language type="jv" draft="unconfirmed">Javanese</language>
+                       <language type="ka" draft="unconfirmed">Mo/SeJojia</language>
+                       <language type="kn" draft="unconfirmed">Kannada</language>
+                       <language type="ko" draft="unconfirmed">Se Korea</language>
+                       <language type="la" draft="unconfirmed">Latin</language>
+                       <language type="lt" draft="unconfirmed">Lithuanian</language>
+                       <language type="lv" draft="unconfirmed">Latvian</language>
+                       <language type="mk" draft="unconfirmed">Macedonian</language>
+                       <language type="ml" draft="unconfirmed">Malayalam</language>
+                       <language type="mr" draft="unconfirmed">Marathi</language>
+                       <language type="ms" draft="unconfirmed">Malay</language>
+                       <language type="mt" draft="unconfirmed">Maltese</language>
+                       <language type="ne" draft="unconfirmed">Nepali</language>
+                       <language type="nl" draft="unconfirmed">Se Dutch</language>
+                       <language type="no" draft="unconfirmed">Puo ya kwa Norway</language>
+                       <language type="oc" draft="unconfirmed">Occitan</language>
+                       <language type="pa" draft="unconfirmed">Punjabi</language>
+                       <language type="pl" draft="unconfirmed">Se Poland</language>
+                       <language type="pt" draft="unconfirmed">Se Potoketsi</language>
+                       <language type="ro" draft="unconfirmed">Se Roma</language>
+                       <language type="ru" draft="unconfirmed">Russian</language>
+                       <language type="sk" draft="unconfirmed">Slovak</language>
+                       <language type="sl" draft="unconfirmed">Slovenian</language>
+                       <language type="sq" draft="unconfirmed">Albanian</language>
+                       <language type="sr" draft="unconfirmed">Serbian</language>
+                       <language type="su" draft="unconfirmed">Mo/SeSundane</language>
+                       <language type="sv" draft="unconfirmed">Swedish</language>
+                       <language type="sw" draft="unconfirmed">Swahili</language>
+                       <language type="ta" draft="unconfirmed">Tamil</language>
+                       <language type="te" draft="unconfirmed">Telugu</language>
+                       <language type="th" draft="unconfirmed">Thai</language>
+                       <language type="ti" draft="unconfirmed">Tigrinya</language>
+                       <language type="tlh" draft="unconfirmed">Klingon</language>
+                       <language type="tn" draft="provisional">Setswana</language>
+                       <language type="tr" draft="unconfirmed">Turkish</language>
+                       <language type="uk" draft="unconfirmed">Ukrainian</language>
+                       <language type="ur" draft="unconfirmed">Urdu</language>
+                       <language type="uz" draft="unconfirmed">Uzbek</language>
+                       <language type="vi" draft="unconfirmed">Vietnamese</language>
+                       <language type="xh" draft="unconfirmed">IsiXhosa</language>
+                       <language type="zu" draft="unconfirmed">IsiZulu</language>
+               </languages>
+       </localeDisplayNames>
+       <characters>
+               <exemplarCharacters>[a b d e ê f g h i j k l m n o ô p r s t u w y]</exemplarCharacters>
+               <exemplarCharacters type="auxiliary">[c q v x z]</exemplarCharacters>
+               <exemplarCharacters type="index" draft="unconfirmed">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
+       </characters>
+       <delimiters>
+               <quotationStart draft="unconfirmed">‘</quotationStart>
+               <quotationEnd draft="unconfirmed">’</quotationEnd>
+               <alternateQuotationStart draft="unconfirmed">“</alternateQuotationStart>
+               <alternateQuotationEnd draft="unconfirmed">”</alternateQuotationEnd>
+       </delimiters>
+       <dates>
+               <calendars>
+                       <calendar type="gregorian">
+                               <months>
+                                       <monthContext type="format">
+                                               <monthWidth type="abbreviated">
+                                                       <month type="1" draft="unconfirmed">Fer</month>
+                                                       <month type="2" draft="unconfirmed">Tlh</month>
+                                                       <month type="3" draft="unconfirmed">Mop</month>
+                                                       <month type="4" draft="unconfirmed">Mor</month>
+                                                       <month type="5" draft="unconfirmed">Mot</month>
+                                                       <month type="6" draft="unconfirmed">See</month>
+                                                       <month type="7" draft="unconfirmed">Phu</month>
+                                                       <month type="8" draft="unconfirmed">Pha</month>
+                                                       <month type="9" draft="unconfirmed">Lwe</month>
+                                                       <month type="10" draft="unconfirmed">Dip</month>
+                                                       <month type="11" draft="unconfirmed">Ngw</month>
+                                                       <month type="12" draft="unconfirmed">Sed</month>
+                                               </monthWidth>
+                                               <monthWidth type="wide">
+                                                       <month type="1" draft="unconfirmed">Ferikgong</month>
+                                                       <month type="2" draft="unconfirmed">Tlhakole</month>
+                                                       <month type="3" draft="unconfirmed">Mopitlo</month>
+                                                       <month type="4" draft="unconfirmed">Moranang</month>
+                                                       <month type="5" draft="unconfirmed">Motsheganang</month>
+                                                       <month type="6" draft="unconfirmed">Seetebosigo</month>
+                                                       <month type="7" draft="unconfirmed">Phukwi</month>
+                                                       <month type="8" draft="unconfirmed">Phatwe</month>
+                                                       <month type="9" draft="unconfirmed">Lwetse</month>
+                                                       <month type="10" draft="unconfirmed">Diphalane</month>
+                                                       <month type="11" draft="unconfirmed">Ngwanatsele</month>
+                                                       <month type="12" draft="unconfirmed">Sedimonthole</month>
+                                               </monthWidth>
+                                       </monthContext>
+                               </months>
+                               <days>
+                                       <dayContext type="format">
+                                               <dayWidth type="abbreviated">
+                                                       <day type="sun" draft="unconfirmed">Tsh</day>
+                                                       <day type="mon" draft="unconfirmed">Mos</day>
+                                                       <day type="tue" draft="unconfirmed">Bed</day>
+                                                       <day type="wed" draft="unconfirmed">Rar</day>
+                                                       <day type="thu" draft="unconfirmed">Ne</day>
+                                                       <day type="fri" draft="unconfirmed">Tla</day>
+                                                       <day type="sat" draft="unconfirmed">Mat</day>
+                                               </dayWidth>
+                                               <dayWidth type="wide">
+                                                       <day type="sun" draft="unconfirmed">Tshipi</day>
+                                                       <day type="mon" draft="unconfirmed">Mosopulogo</day>
+                                                       <day type="tue" draft="unconfirmed">Labobedi</day>
+                                                       <day type="wed" draft="unconfirmed">Laboraro</day>
+                                                       <day type="thu" draft="unconfirmed">Labone</day>
+                                                       <day type="fri" draft="unconfirmed">Labotlhano</day>
+                                                       <day type="sat" draft="unconfirmed">Matlhatso</day>
+                                               </dayWidth>
+                                       </dayContext>
+                               </days>
+                       </calendar>
+               </calendars>
+       </dates>
+       <numbers>
+               <symbols numberSystem="latn">
+                       <decimal>,</decimal>
+                       <group> </group>
+               </symbols>
+               <decimalFormats numberSystem="latn">
+                       <decimalFormatLength>
+                               <decimalFormat>
+                                       <pattern>#,##0.###</pattern>
+                               </decimalFormat>
+                       </decimalFormatLength>
+               </decimalFormats>
+               <scientificFormats numberSystem="latn">
+                       <scientificFormatLength>
+                               <scientificFormat>
+                                       <pattern>#E0</pattern>
+                               </scientificFormat>
+                       </scientificFormatLength>
+               </scientificFormats>
+               <percentFormats numberSystem="latn">
+                       <percentFormatLength>
+                               <percentFormat>
+                                       <pattern>#,##0%</pattern>
+                               </percentFormat>
+                       </percentFormatLength>
+               </percentFormats>
+               <currencyFormats numberSystem="latn">
+                       <currencyFormatLength>
+                               <currencyFormat type="standard">
+                                       <pattern>¤#,##0.00</pattern>
+                               </currencyFormat>
+                       </currencyFormatLength>
+               </currencyFormats>
+               <currencies>
+                       <currency type="ZAR">
+                               <symbol>R</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+</ldml>
+
diff --git a/tools/locale-builder/CLDR/common/main/tn_BW.xml b/tools/locale-builder/CLDR/common/main/tn_BW.xml
new file mode 100644 (file)
index 0000000..b5c1367
--- /dev/null
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="tn"/>
+               <territory type="BW"/>
+       </identity>
+       <numbers>
+               <currencies>
+                       <currency type="BWP">
+                               <symbol>P</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/tn_ZA.xml b/tools/locale-builder/CLDR/common/main/tn_ZA.xml
new file mode 100644 (file)
index 0000000..32f5149
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="tn"/>
+               <territory type="ZA"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/ts.xml b/tools/locale-builder/CLDR/common/main/ts.xml
new file mode 100644 (file)
index 0000000..05fbb46
--- /dev/null
@@ -0,0 +1,168 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9287 $"/>
+               <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
+               <language type="ts"/>
+       </identity>
+       <localeDisplayNames>
+               <languages>
+                       <language type="cs" draft="unconfirmed">Xi Czech</language>
+                       <language type="da" draft="unconfirmed">Xi Danish</language>
+                       <language type="de" draft="unconfirmed">Xi Jarimani</language>
+                       <language type="el" draft="unconfirmed">Xi Giriki</language>
+                       <language type="en" draft="unconfirmed">Xi Nghezi</language>
+                       <language type="es" draft="unconfirmed">Xi spain</language>
+                       <language type="et" draft="unconfirmed">hi xi Estonia</language>
+                       <language type="fi" draft="unconfirmed">Xi Finnish</language>
+                       <language type="fr" draft="unconfirmed">Xi Furwa</language>
+                       <language type="he" draft="unconfirmed">XiHeberu</language>
+                       <language type="hu" draft="unconfirmed">hi xi Hungary</language>
+                       <language type="is" draft="unconfirmed">hi xi Iceland</language>
+                       <language type="it" draft="unconfirmed">Xi Ithali</language>
+                       <language type="ja" draft="unconfirmed">Xi Japani</language>
+                       <language type="ko" draft="unconfirmed">Xikorea</language>
+                       <language type="lt" draft="unconfirmed">hi xi Lithuania</language>
+                       <language type="lv" draft="unconfirmed">hi xi Latvia</language>
+                       <language type="nl" draft="unconfirmed">Xi bunu</language>
+                       <language type="no" draft="unconfirmed">Xi Norway</language>
+                       <language type="pl" draft="unconfirmed">Xi Polixi</language>
+                       <language type="pt" draft="unconfirmed">Putukezi</language>
+                       <language type="ro" draft="unconfirmed">hi xi Romania</language>
+                       <language type="ru" draft="unconfirmed">Xi Rhaxiya</language>
+                       <language type="sv" draft="unconfirmed">Xi Swiden</language>
+                       <language type="ts" draft="provisional">Xitsonga</language>
+               </languages>
+       </localeDisplayNames>
+       <characters>
+               <exemplarCharacters>[a b c d e f g h i j k l m n o p q r s t u v w x y z]</exemplarCharacters>
+               <exemplarCharacters type="index" draft="unconfirmed">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
+       </characters>
+       <delimiters>
+               <quotationStart draft="unconfirmed">‘</quotationStart>
+               <quotationEnd draft="unconfirmed">’</quotationEnd>
+               <alternateQuotationStart draft="unconfirmed">“</alternateQuotationStart>
+               <alternateQuotationEnd draft="unconfirmed">”</alternateQuotationEnd>
+       </delimiters>
+       <dates>
+               <calendars>
+                       <calendar type="gregorian">
+                               <months>
+                                       <monthContext type="format">
+                                               <monthWidth type="abbreviated">
+                                                       <month type="1" draft="unconfirmed">Sun</month>
+                                                       <month type="2" draft="unconfirmed">Yan</month>
+                                                       <month type="3" draft="unconfirmed">Kul</month>
+                                                       <month type="4" draft="unconfirmed">Dzi</month>
+                                                       <month type="5" draft="unconfirmed">Mud</month>
+                                                       <month type="6" draft="unconfirmed">Kho</month>
+                                                       <month type="7" draft="unconfirmed">Maw</month>
+                                                       <month type="8" draft="unconfirmed">Mha</month>
+                                                       <month type="9" draft="unconfirmed">Ndz</month>
+                                                       <month type="10" draft="unconfirmed">Nhl</month>
+                                                       <month type="11" draft="unconfirmed">Huk</month>
+                                                       <month type="12" draft="unconfirmed">N'w</month>
+                                               </monthWidth>
+                                               <monthWidth type="wide">
+                                                       <month type="1" draft="unconfirmed">Sunguti</month>
+                                                       <month type="2" draft="unconfirmed">Nyenyenyani</month>
+                                                       <month type="3" draft="unconfirmed">Nyenyankulu</month>
+                                                       <month type="4" draft="unconfirmed">Dzivamisoko</month>
+                                                       <month type="5" draft="unconfirmed">Mudyaxihi</month>
+                                                       <month type="6" draft="unconfirmed">Khotavuxika</month>
+                                                       <month type="7" draft="unconfirmed">Mawuwani</month>
+                                                       <month type="8" draft="unconfirmed">Mhawuri</month>
+                                                       <month type="9" draft="unconfirmed">Ndzhati</month>
+                                                       <month type="10" draft="unconfirmed">Nhlangula</month>
+                                                       <month type="11" draft="unconfirmed">Hukuri</month>
+                                                       <month type="12" draft="unconfirmed">N'wendzamhala</month>
+                                               </monthWidth>
+                                       </monthContext>
+                               </months>
+                               <days>
+                                       <dayContext type="format">
+                                               <dayWidth type="abbreviated">
+                                                       <day type="sun" draft="unconfirmed">Son</day>
+                                                       <day type="mon" draft="unconfirmed">Mus</day>
+                                                       <day type="tue" draft="unconfirmed">Bir</day>
+                                                       <day type="wed" draft="unconfirmed">Har</day>
+                                                       <day type="thu" draft="unconfirmed">Ne</day>
+                                                       <day type="fri" draft="unconfirmed">Tlh</day>
+                                                       <day type="sat" draft="unconfirmed">Mug</day>
+                                               </dayWidth>
+                                               <dayWidth type="wide">
+                                                       <day type="sun" draft="unconfirmed">Sonto</day>
+                                                       <day type="mon" draft="unconfirmed">Musumbhunuku</day>
+                                                       <day type="tue" draft="unconfirmed">Ravumbirhi</day>
+                                                       <day type="wed" draft="unconfirmed">Ravunharhu</day>
+                                                       <day type="thu" draft="unconfirmed">Ravumune</day>
+                                                       <day type="fri" draft="unconfirmed">Ravuntlhanu</day>
+                                                       <day type="sat" draft="unconfirmed">Mugqivela</day>
+                                               </dayWidth>
+                                       </dayContext>
+                               </days>
+                               <quarters>
+                                       <quarterContext type="format">
+                                               <quarterWidth type="abbreviated">
+                                                       <quarter type="1" draft="unconfirmed">K1</quarter>
+                                                       <quarter type="2" draft="unconfirmed">K2</quarter>
+                                                       <quarter type="3" draft="unconfirmed">K3</quarter>
+                                                       <quarter type="4" draft="unconfirmed">K4</quarter>
+                                               </quarterWidth>
+                                               <quarterWidth type="wide">
+                                                       <quarter type="1" draft="unconfirmed">Kotara yo sungula</quarter>
+                                                       <quarter type="2" draft="unconfirmed">Kotara ya vumbirhi</quarter>
+                                                       <quarter type="3" draft="unconfirmed">Kotara ya vunharhu</quarter>
+                                                       <quarter type="4" draft="unconfirmed">Kotara ya vumune</quarter>
+                                               </quarterWidth>
+                                       </quarterContext>
+                               </quarters>
+                       </calendar>
+               </calendars>
+       </dates>
+       <numbers>
+               <symbols numberSystem="latn">
+                       <decimal>,</decimal>
+                       <group> </group>
+               </symbols>
+               <decimalFormats numberSystem="latn">
+                       <decimalFormatLength>
+                               <decimalFormat>
+                                       <pattern>#,##0.###</pattern>
+                               </decimalFormat>
+                       </decimalFormatLength>
+               </decimalFormats>
+               <scientificFormats numberSystem="latn">
+                       <scientificFormatLength>
+                               <scientificFormat>
+                                       <pattern>#E0</pattern>
+                               </scientificFormat>
+                       </scientificFormatLength>
+               </scientificFormats>
+               <percentFormats numberSystem="latn">
+                       <percentFormatLength>
+                               <percentFormat>
+                                       <pattern>#,##0%</pattern>
+                               </percentFormat>
+                       </percentFormatLength>
+               </percentFormats>
+               <currencyFormats numberSystem="latn">
+                       <currencyFormatLength>
+                               <currencyFormat type="standard">
+                                       <pattern>¤#,##0.00</pattern>
+                               </currencyFormat>
+                       </currencyFormatLength>
+               </currencyFormats>
+               <currencies>
+                       <currency type="ZAR">
+                               <symbol>R</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+</ldml>
+
diff --git a/tools/locale-builder/CLDR/common/main/ts_ZA.xml b/tools/locale-builder/CLDR/common/main/ts_ZA.xml
new file mode 100644 (file)
index 0000000..bb845df
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="ts"/>
+               <territory type="ZA"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/tzm_Latn.xml b/tools/locale-builder/CLDR/common/main/tzm_Latn.xml
new file mode 100644 (file)
index 0000000..c3c5199
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="tzm"/>
+               <script type="Latn"/>
+       </identity>
+</ldml>
diff --git a/tools/locale-builder/CLDR/common/main/xh.xml b/tools/locale-builder/CLDR/common/main/xh.xml
new file mode 100644 (file)
index 0000000..ef6e399
--- /dev/null
@@ -0,0 +1,265 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9287 $"/>
+               <generation date="$Date: 2013-08-28 21:32:04 -0500 (Wed, 28 Aug 2013) $"/>
+               <language type="xh"/>
+       </identity>
+       <localeDisplayNames>
+               <languages>
+                       <language type="af" draft="provisional">isiBhulu</language>
+                       <language type="am" draft="unconfirmed">Isi-Amharic</language>
+                       <language type="ar" draft="unconfirmed">Isi-Arabic</language>
+                       <language type="as" draft="unconfirmed">isiAssamese</language>
+                       <language type="az" draft="unconfirmed">Isi-Azerbaijani</language>
+                       <language type="be" draft="unconfirmed">Isi-Belarusian</language>
+                       <language type="bg" draft="unconfirmed">Isi-Bulgaria</language>
+                       <language type="bh" draft="unconfirmed">Isi-Bihari</language>
+                       <language type="bn" draft="unconfirmed">Isi-Bengali</language>
+                       <language type="br" draft="unconfirmed">Breton</language>
+                       <language type="bs" draft="unconfirmed">Isi-Bosnia</language>
+                       <language type="ca" draft="unconfirmed">Isi-Calatan</language>
+                       <language type="cs" draft="unconfirmed">Isi-Czech</language>
+                       <language type="cy" draft="unconfirmed">Isi-Welsh</language>
+                       <language type="da" draft="unconfirmed">Isi-Danish</language>
+                       <language type="de" draft="unconfirmed">Isi-German</language>
+                       <language type="el" draft="unconfirmed">Isi-Greek</language>
+                       <language type="en" draft="provisional">isiNgesi</language>
+                       <language type="eo" draft="unconfirmed">Isi-Esperanto</language>
+                       <language type="es" draft="unconfirmed">Isi-Spanish</language>
+                       <language type="et" draft="unconfirmed">Isi-Estonian</language>
+                       <language type="eu" draft="unconfirmed">Isi-Basque</language>
+                       <language type="fa" draft="unconfirmed">Isi-Persia</language>
+                       <language type="fi" draft="unconfirmed">Isi-Finnish</language>
+                       <language type="fil" draft="unconfirmed">Isi-Taglog</language>
+                       <language type="fo" draft="unconfirmed">Isi-Faroese</language>
+                       <language type="fr" draft="unconfirmed">Isi-French</language>
+                       <language type="fy" draft="unconfirmed">Isi-Frisian</language>
+                       <language type="ga" draft="unconfirmed">Isi-Irish</language>
+                       <language type="gd" draft="unconfirmed">Scots Gaelic</language>
+                       <language type="gl" draft="unconfirmed">Isi-Galician</language>
+                       <language type="gn" draft="unconfirmed">Guarani</language>
+                       <language type="gu" draft="unconfirmed">Isi-Gujarati</language>
+                       <language type="he" draft="unconfirmed">Isi-Hebrew</language>
+                       <language type="hi" draft="unconfirmed">Isi-Hindi</language>
+                       <language type="hr" draft="unconfirmed">Isi-Croatia</language>
+                       <language type="hu" draft="unconfirmed">Isi-Hungarian</language>
+                       <language type="hy" draft="unconfirmed">isiArmenian</language>
+                       <language type="ia" draft="unconfirmed">Interlingua</language>
+                       <language type="id" draft="unconfirmed">Isi-Indonesian</language>
+                       <language type="ie" draft="unconfirmed">isiInterlingue</language>
+                       <language type="is" draft="unconfirmed">Isi-Icelandic</language>
+                       <language type="it" draft="unconfirmed">Isi-Italian</language>
+                       <language type="ja" draft="unconfirmed">Isi-Japanese</language>
+                       <language type="jv" draft="unconfirmed">Isi-Javanese</language>
+                       <language type="ka" draft="unconfirmed">Isi-Georgia</language>
+                       <language type="km" draft="unconfirmed">isiCambodia</language>
+                       <language type="kn" draft="unconfirmed">Isi-Kannada</language>
+                       <language type="ko" draft="unconfirmed">Isi-Korean</language>
+                       <language type="ku" draft="unconfirmed">Kurdish</language>
+                       <language type="ky" draft="unconfirmed">Kyrgyz</language>
+                       <language type="la" draft="unconfirmed">Isi-Latin</language>
+                       <language type="ln" draft="unconfirmed">Iilwimi</language>
+                       <language type="lo" draft="unconfirmed">IsiLoathian</language>
+                       <language type="lt" draft="unconfirmed">Isi-Lithuanian</language>
+                       <language type="lv" draft="unconfirmed">Isi-Latvian</language>
+                       <language type="mk" draft="unconfirmed">Isi-Macedonian</language>
+                       <language type="ml" draft="unconfirmed">Isi-Malayalam</language>
+                       <language type="mn" draft="unconfirmed">IsiMongolian</language>
+                       <language type="mr" draft="unconfirmed">Isi-Marathi</language>
+                       <language type="ms" draft="unconfirmed">Isi-Malay</language>
+                       <language type="mt" draft="unconfirmed">Isi-Maltese</language>
+                       <language type="ne" draft="unconfirmed">Isi-Nepali</language>
+                       <language type="nl" draft="unconfirmed">Isi-Dutch</language>
+                       <language type="nn" draft="unconfirmed">Isi-Norwegia (Nynorsk)</language>
+                       <language type="no" draft="unconfirmed">Isi-Norwegian</language>
+                       <language type="oc" draft="unconfirmed">Iso-Occitan</language>
+                       <language type="or" draft="unconfirmed">Oriya</language>
+                       <language type="pa" draft="unconfirmed">Isi-Punjabi</language>
+                       <language type="pl" draft="unconfirmed">Isi-Polish</language>
+                       <language type="ps" draft="unconfirmed">Pashto</language>
+                       <language type="pt" draft="unconfirmed">Isi-Portuguese</language>
+                       <language type="pt_BR" draft="unconfirmed">portokugusseee</language>
+                       <language type="pt_PT" draft="unconfirmed">Isi-Portuguese (Portugal)</language>
+                       <language type="ro" draft="unconfirmed">Isi-Romanian</language>
+                       <language type="ru" draft="unconfirmed">Isi-Russian</language>
+                       <language type="sa" draft="unconfirmed">iSanskrit</language>
+                       <language type="sd" draft="unconfirmed">isiSindhi</language>
+                       <language type="sh" draft="unconfirmed">Serbo-Croatian</language>
+                       <language type="si" draft="unconfirmed">Isi-Sinhalese</language>
+                       <language type="sk" draft="unconfirmed">Isi-Slovak</language>
+                       <language type="sl" draft="unconfirmed">Isi-Slovenian</language>
+                       <language type="so" draft="unconfirmed">IsiSomaliya</language>
+                       <language type="sq" draft="unconfirmed">Isi-Albania</language>
+                       <language type="sr" draft="unconfirmed">Isi-Serbia</language>
+                       <language type="st" draft="unconfirmed">Sesotho</language>
+                       <language type="su" draft="unconfirmed">Isi-Sudanese</language>
+                       <language type="sv" draft="unconfirmed">Isi-Swedish</language>
+                       <language type="sw" draft="unconfirmed">Isi-Swahili</language>
+                       <language type="ta" draft="unconfirmed">Isi-Tamil</language>
+                       <language type="te" draft="unconfirmed">Isi-Telegu</language>
+                       <language type="th" draft="unconfirmed">Isi-Thai</language>
+                       <language type="ti" draft="unconfirmed">Isi-Tigrinya</language>
+                       <language type="tk" draft="unconfirmed">Turkmen</language>
+                       <language type="tlh" draft="unconfirmed">Klingon</language>
+                       <language type="tr" draft="unconfirmed">Isi-Turkish</language>
+                       <language type="tw" draft="unconfirmed">Twi</language>
+                       <language type="ug" draft="unconfirmed">Isi Uighur</language>
+                       <language type="uk" draft="unconfirmed">Isi-Ukranian</language>
+                       <language type="ur" draft="unconfirmed">Urdu</language>
+                       <language type="uz" draft="unconfirmed">Isi-Uzbek</language>
+                       <language type="vi" draft="unconfirmed">Isi-Vietnamese</language>
+                       <language type="xh" draft="provisional">isiXhosa</language>
+                       <language type="yi" draft="unconfirmed">Yiddish</language>
+                       <language type="zu" draft="provisional">isiZulu</language>
+               </languages>
+       </localeDisplayNames>
+       <characters>
+               <exemplarCharacters>[a b c d e f g h i j k l m n o p q r s t u v w x y z]</exemplarCharacters>
+               <exemplarCharacters type="auxiliary">[]</exemplarCharacters>
+               <exemplarCharacters type="index" draft="unconfirmed">[A B C D E F G H I J K L M N O P Q R S T U V W X Y Z]</exemplarCharacters>
+       </characters>
+       <delimiters>
+               <quotationStart>‘</quotationStart>
+               <quotationEnd>’</quotationEnd>
+               <alternateQuotationStart>“</alternateQuotationStart>
+               <alternateQuotationEnd>”</alternateQuotationEnd>
+       </delimiters>
+       <dates>
+               <calendars>
+                       <calendar type="gregorian">
+                               <months>
+                                       <monthContext type="format">
+                                               <monthWidth type="abbreviated">
+                                                       <month type="1" draft="unconfirmed">Jan</month>
+                                                       <month type="2" draft="unconfirmed">Feb</month>
+                                                       <month type="3" draft="unconfirmed">Mat</month>
+                                                       <month type="4" draft="unconfirmed">Epr</month>
+                                                       <month type="5" draft="unconfirmed">Mey</month>
+                                                       <month type="6" draft="unconfirmed">Jun</month>
+                                                       <month type="7" draft="unconfirmed">Jul</month>
+                                                       <month type="8" draft="unconfirmed">Aga</month>
+                                                       <month type="9" draft="unconfirmed">Sep</month>
+                                                       <month type="10" draft="unconfirmed">Okt</month>
+                                                       <month type="11" draft="unconfirmed">Nov</month>
+                                                       <month type="12" draft="unconfirmed">Dis</month>
+                                               </monthWidth>
+                                               <monthWidth type="wide">
+                                                       <month type="1" draft="unconfirmed">Janyuwari</month>
+                                                       <month type="2" draft="unconfirmed">Februwari</month>
+                                                       <month type="3" draft="unconfirmed">Matshi</month>
+                                                       <month type="4" draft="unconfirmed">Epreli</month>
+                                                       <month type="5" draft="unconfirmed">Meyi</month>
+                                                       <month type="6" draft="unconfirmed">Juni</month>
+                                                       <month type="7" draft="unconfirmed">Julayi</month>
+                                                       <month type="8" draft="unconfirmed">Agasti</month>
+                                                       <month type="9" draft="unconfirmed">Septemba</month>
+                                                       <month type="10" draft="unconfirmed">Okthoba</month>
+                                                       <month type="11" draft="unconfirmed">Novemba</month>
+                                                       <month type="12" draft="unconfirmed">Disemba</month>
+                                               </monthWidth>
+                                       </monthContext>
+                               </months>
+                               <days>
+                                       <dayContext type="format">
+                                               <dayWidth type="abbreviated">
+                                                       <day type="sun" draft="unconfirmed">Caw</day>
+                                                       <day type="mon" draft="unconfirmed">Mvu</day>
+                                                       <day type="tue" draft="unconfirmed">Bin</day>
+                                                       <day type="wed" draft="unconfirmed">Tha</day>
+                                                       <day type="thu" draft="unconfirmed">Sin</day>
+                                                       <day type="fri" draft="unconfirmed">Hla</day>
+                                                       <day type="sat" draft="unconfirmed">Mgq</day>
+                                               </dayWidth>
+                                               <dayWidth type="wide">
+                                                       <day type="sun" draft="unconfirmed">Cawe</day>
+                                                       <day type="mon" draft="unconfirmed">Mvulo</day>
+                                                       <day type="tue" draft="unconfirmed">Lwesibini</day>
+                                                       <day type="wed" draft="unconfirmed">Lwesithathu</day>
+                                                       <day type="thu" draft="unconfirmed">Lwesine</day>
+                                                       <day type="fri" draft="unconfirmed">Lwesihlanu</day>
+                                                       <day type="sat" draft="unconfirmed">Mgqibelo</day>
+                                               </dayWidth>
+                                       </dayContext>
+                               </days>
+                               <quarters>
+                                       <quarterContext type="format">
+                                               <quarterWidth type="abbreviated">
+                                                       <quarter type="1" draft="unconfirmed">Q1</quarter>
+                                                       <quarter type="2" draft="unconfirmed">Q2</quarter>
+                                                       <quarter type="3" draft="unconfirmed">Q3</quarter>
+                                                       <quarter type="4" draft="unconfirmed">Q4</quarter>
+                                               </quarterWidth>
+                                               <quarterWidth type="wide">
+                                                       <quarter type="1" draft="unconfirmed">1 unyangantathu</quarter>
+                                                       <quarter type="2" draft="unconfirmed">2 unyangantathu</quarter>
+                                                       <quarter type="3" draft="unconfirmed">3 unyangantathu</quarter>
+                                                       <quarter type="4" draft="unconfirmed">4 unyangantathu</quarter>
+                                               </quarterWidth>
+                                       </quarterContext>
+                               </quarters>
+                               <eras>
+                                       <eraNames>
+                                               <era type="0" draft="unconfirmed">BC</era>
+                                               <era type="1" draft="unconfirmed">umnyaka wokuzalwa kukaYesu</era>
+                                       </eraNames>
+                                       <eraAbbr>
+                                               <era type="0" draft="unconfirmed">BC</era>
+                                               <era type="1" draft="unconfirmed">AD</era>
+                                       </eraAbbr>
+                               </eras>
+                       </calendar>
+               </calendars>
+       </dates>
+       <numbers>
+               <symbols numberSystem="latn">
+                       <decimal>,</decimal>
+                       <group> </group>
+               </symbols>
+               <decimalFormats numberSystem="latn">
+                       <decimalFormatLength>
+                               <decimalFormat>
+                                       <pattern>#,##0.###</pattern>
+                               </decimalFormat>
+                       </decimalFormatLength>
+               </decimalFormats>
+               <scientificFormats numberSystem="latn">
+                       <scientificFormatLength>
+                               <scientificFormat>
+                                       <pattern>#E0</pattern>
+                               </scientificFormat>
+                       </scientificFormatLength>
+               </scientificFormats>
+               <percentFormats numberSystem="latn">
+                       <percentFormatLength>
+                               <percentFormat>
+                                       <pattern>#,##0%</pattern>
+                               </percentFormat>
+                       </percentFormatLength>
+               </percentFormats>
+               <currencyFormats numberSystem="latn">
+                       <currencyFormatLength>
+                               <currencyFormat type="standard">
+                                       <pattern>¤#,##0.00</pattern>
+                               </currencyFormat>
+                       </currencyFormatLength>
+               </currencyFormats>
+               <currencies>
+                       <currency type="ZAR">
+                               <symbol>R</symbol>
+                       </currency>
+               </currencies>
+       </numbers>
+       <posix>
+               <messages>
+                       <yesstr draft="unconfirmed">ewe:e</yesstr>
+                       <nostr draft="unconfirmed">hayi:h</nostr>
+               </messages>
+       </posix>
+</ldml>
+
diff --git a/tools/locale-builder/CLDR/common/main/xh_ZA.xml b/tools/locale-builder/CLDR/common/main/xh_ZA.xml
new file mode 100644 (file)
index 0000000..624c722
--- /dev/null
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
+<!-- Copyright © 1991-2013 Unicode, Inc.
+CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)
+For terms of use, see http://www.unicode.org/copyright.html
+-->
+<ldml>
+       <identity>
+               <version number="$Revision: 9061 $"/>
+               <generation date="$Date: 2013-07-20 12:27:45 -0500 (Sat, 20 Jul 2013) $"/>
+               <language type="xh"/>
+               <territory type="ZA"/>
+       </identity>
+</ldml>
index b9fa1ae43f106775d7e78f336f6230981cb2991e..7830c02b95fe88e60a110a591246d2e2db060f47 100644 (file)
@@ -65,7 +65,7 @@ namespace Mono.Tools.LocaleBuilder
                public void AppendTableRow (StringBuilder builder)
                {
                        builder.Append ("\t{");
-                       builder.Append (EncodeStringIdx (MonthDayPattern) + ", ");
+                       builder.Append (EncodePatternStringIdx (MonthDayPattern) + ", ");
 
                        builder.Append (EncodeStringIdx (AMDesignator) + ", ");
                        builder.Append (EncodeStringIdx (PMDesignator) + ", ");
@@ -106,7 +106,7 @@ namespace Mono.Tools.LocaleBuilder
                                if (i > 0)
                                        builder.Append (',');
 
-                               string s = EncodeStringIdx (patterns[i]);
+                               string s = EncodePatternStringIdx (patterns[i]);
                                builder.Append (s);
                        }
                        if (patterns.Count == 0)
index b922d750ec68547c3029d8034fbeb52adf500361..1da8d743510efdd2cf8446d93e1e673886b04192 100644 (file)
@@ -271,6 +271,33 @@ namespace Mono.Tools.LocaleBuilder
                                        extra_parent_locales.Add (locale, parent);
                        }
 
+                       // CLDR has habits of completely removing cultures data between release but we don't want to break
+                       // existing code
+                       var knownLCIDs = new HashSet<string> () {
+                               "ar", "bg", "ca", "zh_Hans", "zh_CHS", "cs", "da", "de", "el", "en", "es", "fi", "fr", "he", "hu", "is", "it", "ja", "ko", "nl",
+                               "no", "pl", "pt", "rm", "ro", "ru", "hr", "sk", "sq", "sv", "th", "tr", "ur", "id", "uk", "be", "sl", "et", "lv", "lt", "tg", "fa",
+                               "vi", "hy", "az", "eu", "mk", "st", "ts", "tn", "xh", "zu", "af", "ka", "fo", "hi", "mt", "se", "ga", "ms", "kk", "ky", "sw", "uz",
+                               "bn", "pa", "gu", "or", "ta", "te", "kn", "ml", "as", "mr", "mn", "bo", "cy", "km", "lo", "my", "gl", "kok", "si", "chr", "am", "tzm",
+                               "ne", "ps", "fil", "ff", "ha", "yo", "nso", "kl", "ig", "om", "ti", "haw", "so", "ii", "br", "gsw", "sah", "rw", "gd", "ar_SA", "bg_BG",
+                               "ca_ES", "zh_TW", "cs_CZ", "da_DK", "de_DE", "el_GR", "en_US", "fi_FI", "fr_FR", "he_IL", "hu_HU", "is_IS", "it_IT", "ja_JP", "ko_KR",
+                               "nl_NL", "nb_NO", "pl_PL", "pt_BR", "rm_CH", "ro_RO", "ru_RU", "hr_HR", "sk_SK", "sq_AL", "sv_SE", "th_TH", "tr_TR", "ur_PK", "id_ID",
+                               "uk_UA", "be_BY", "sl_SI", "et_EE", "lv_LV", "lt_LT", "tg_Cyrl_TJ", "fa_IR", "vi_VN", "hy_AM", "az_Latn_AZ", "eu_ES", "mk_MK", "st_ZA",
+                               "ts_ZA", "tn_ZA", "xh_ZA", "zu_ZA", "af_ZA", "ka_GE", "fo_FO", "hi_IN", "mt_MT", "se_NO", "sw_KE", "uz_Latn_UZ", "bn_IN", "gu_IN",
+                               "or_IN", "ta_IN", "te_IN", "kn_IN", "ml_IN", "as_IN", "mr_IN", "bo_CN", "cy_GB", "km_KH", "lo_LA", "my_MM", "gl_ES", "kok_IN", "si_LK",
+                               "am_ET", "ne_NP", "ps_AF", "fil_PH", "ha_Latn_NG", "yo_NG", "nso_ZA", "kl_GL", "ig_NG", "om_ET", "ti_ET", "haw_US", "so_SO", "ii_CN",
+                               "br_FR", "sah_RU", "rw_RW", "gd_GB", "ar_IQ", "zh_CN", "de_CH", "en_GB", "es_MX", "fr_BE", "it_CH", "nl_BE", "nn_NO", "pt_PT", "ro_MD",
+                               "ru_MD", "sv_FI", "ur_IN", "az_Cyrl_AZ", "tn_BW", "ga_IE", "uz_Cyrl_UZ", "bn_BD", "pa_Arab_PK", "ta_LK", "ne_IN", "ti_ER", "ar_EG",
+                               "zh_HK", "de_AT", "en_AU", "es_ES", "fr_CA", "se_FI", "ar_LY", "zh_SG", "de_LU", "en_CA", "es_GT", "fr_CH", "hr_BA", "ar_DZ", "zh_MO",
+                               "de_LI", "en_NZ", "es_CR", "fr_LU", "bs_Latn_BA", "ar_MA", "en_IE", "es_PA", "fr_MC", "sr_Latn_BA", "ar_TN", "en_ZA", "es_DO", "sr_Cyrl_BA",
+                               "ar_OM", "en_JM", "es_VE", "fr_RE", "bs_Cyrl_BA", "ar_YE", "es_CO", "fr_CD", "sr_Latn_RS", "ar_SY", "en_BZ", "es_PE", "fr_SN", "sr_Cyrl_RS",
+                               "ar_JO", "en_TT", "es_AR", "fr_CM", "sr_Latn_ME", "ar_LB", "en_ZW", "es_EC", "fr_CI", "sr_Cyrl_ME", "ar_KW", "en_PH", "es_CL", "fr_ML",
+                               "ar_AE", "es_UY", "fr_MA", "ar_BH", "en_HK", "es_PY", "fr_HT", "ar_QA", "en_IN", "es_BO", "es_SV", "en_SG", "es_HN", "es_NI", "es_PR",
+                               "es_US", "es_CU", "bs_Cyrl", "bs_Latn", "sr_Cyrl", "sr_Latn", "az_Cyrl", "zh", "nn", "bs", "az_Latn", "uz_Cyrl", "mn_Cyrl", "zh_Hant",
+                               "zh_CHT", "nb", "sr", "tg_Cyrl", "uz_Latn", "pa_Arab", "tzm_Latn", "ha_Latn",
+                               "hsb", "tk", "fy", "lb", "ug", "hsb_DE", "ms_MY", "kk_KZ", "ky_KG", "tk_TM", "mn_MN", "fy_NL", "lb_LU", "ug_CN", "gsw_FR", "ca_ES_valencia",
+                               "dsb_DE", "se_SE", "ms_BN", "smn_FI", "en_MY", "smn", "dsb"
+                       };
+
                        var lcdids = GetXmlDocument ("lcids.xml");
                        foreach (XmlNode lcid in lcdids.SelectNodes ("lcids/lcid")) {
                                var name = lcid.Attributes["name"].Value;
@@ -288,8 +315,20 @@ namespace Mono.Tools.LocaleBuilder
                                ci.TextInfoEntry = new TextInfoEntry ();
                                ci.NumberFormatEntry = new NumberFormatEntry ();
 
-                               if (!Import (ci, name))
+                               if (!Import (ci, name)) {
+                                       if (knownLCIDs.Contains (name)) {
+                                               Console.WriteLine ($"Missing previously available culture `{ name }' data");
+                                               return;
+                                       }
+
                                        continue;
+                               }
+
+
+                               if (!knownLCIDs.Contains (name)) {
+                                       Console.WriteLine ($"New culture `{ name }' data available");
+                                       return;
+                               }
 
                                cultures.Add (ci);
                        }
@@ -445,17 +484,20 @@ namespace Mono.Tools.LocaleBuilder
                                        };
 
                                        var tc = supplemental.SelectSingleNode (string.Format ("supplementalData/codeMappings/territoryCodes[@type='{0}']", ci.Territory));
-                                       region.ThreeLetterISORegionName = tc.Attributes["alpha3"].Value;
+                                       region.ThreeLetterISORegionName = tc?.Attributes["alpha3"]?.Value ?? "---";
                                        region.ThreeLetterWindowsRegionName = region.ThreeLetterISORegionName;
 
                                        var el = doc_english.SelectSingleNode (string.Format ("ldml/localeDisplayNames/territories/territory[@type='{0}']", ci.Territory));
                                        region.EnglishName = el.InnerText;
                                        region.DisplayName = region.EnglishName;
 
-                                       region.ISOCurrencySymbol = region_currency[ci.Territory];
+                                       string curr;
+                                       if (!region_currency.TryGetValue (ci.Territory, out curr))
+                                               curr = "---";
+                                       region.ISOCurrencySymbol = curr;
 
                                        el = doc_english.SelectSingleNode (string.Format ("ldml/numbers/currencies/currency[@type='{0}']/displayName", region.ISOCurrencySymbol));
-                                       region.CurrencyEnglishName = el.InnerText;
+                                       region.CurrencyEnglishName = el?.InnerText ?? "---";
 
                                        if (non_metric.Contains (ci.Territory))
                                                region.IsMetric = false;
@@ -493,6 +535,7 @@ namespace Mono.Tools.LocaleBuilder
                                        case "bn":
                                        case "sr-Cyrl":
                                        case "sr-Latn":
+                                       case "ta":
                                                dtf.FirstDayOfWeek = (int) DayOfWeek.Monday;
                                                break;
                                        default:
@@ -601,7 +644,27 @@ namespace Mono.Tools.LocaleBuilder
                                        case "zh-Hant":
                                                nfe.CurrencySymbol = "HK$";
                                                break;
-
+                                       case "ru":
+                                               nfe.CurrencySymbol = "₽";
+                                               break;
+                                       case "ur":
+                                               nfe.CurrencySymbol = "Rs";
+                                               break;
+                                       case "tn":
+                                               nfe.CurrencySymbol = "R";
+                                               break;
+                                       case "ta":
+                                               nfe.CurrencySymbol = "₹";
+                                               break;
+                                       case "ne":
+                                               nfe.CurrencySymbol = "रु";
+                                               break;
+                                       case "ti":
+                                               nfe.CurrencySymbol = "Nfk";
+                                               break;
+                                       case "ro":
+                                               nfe.CurrencySymbol = "RON";
+                                               break;
                                        default:
                                                var all_currencies = new List<string> ();
                                                GetAllChildrenValues (ci, all_currencies, l => l.NumberFormatEntry.CurrencySymbol);
@@ -751,7 +814,15 @@ namespace Mono.Tools.LocaleBuilder
                                writer.WriteLine ("};\n\n");
 
                                writer.WriteLine ("static const char locale_strings [] = {");
-                               writer.Write (Entry.GetStrings ());
+                               writer.Write (Entry.General.GetStrings ());
+                               writer.WriteLine ("};\n\n");
+
+                               writer.WriteLine ("static const char patterns [] = {");
+                               writer.Write (Entry.Patterns.GetStrings ());
+                               writer.WriteLine ("};\n\n");
+
+                               writer.WriteLine ("static const char datetime_strings [] = {");
+                               writer.Write (Entry.DateTimeStrings.GetStrings ());
                                writer.WriteLine ("};\n\n");
 
                                writer.WriteLine ("#endif\n");
index 2e7b7be34d5c0458acf95c43f339892e657aac97..69bb43fe5760dbee56b72409dce74358bb9faa23 100644 (file)
@@ -34,41 +34,48 @@ namespace Mono.Tools.LocaleBuilder
 {
        public class Entry
        {
-               // maps strings to indexes
-               static Dictionary<string, int> hash = new Dictionary<string, int> ();
-               static List<string> string_order = new List<string> ();
-               // idx 0 is reserved to indicate null
-               static int curpos = 1;
+               public static readonly Mapping General = new Mapping ();
+               public static readonly Mapping Patterns  = new Mapping ();
+               public static readonly Mapping DateTimeStrings  = new Mapping ();
 
-               // serialize the strings in Hashtable.
-               public static string GetStrings ()
+               public class Mapping
                {
-                       Console.WriteLine ("Total string data size: {0}", curpos);
-                       if (curpos > UInt16.MaxValue)
-                               throw new Exception ("need to increase idx size in culture-info.h");
-                       StringBuilder ret = new StringBuilder ();
-                       // the null entry
-                       ret.Append ("\"\\0\"\n");
-                       foreach (string s in string_order) {
-                               ret.Append ("\t\"");
-                               ret.Append (s);
-                               ret.Append ("\\0\"\n");
-                       }
-                       return ret.ToString ();
-               }
+                       // maps strings to indexes
+                       Dictionary<string, int> hash = new Dictionary<string, int> ();
+                       List<string> string_order = new List<string> ();
+                       // idx 0 is reserved to indicate null
+                       int curpos = 1;
 
-               static int AddString (string s, int size)
-               {
-                       if (!hash.ContainsKey (s)) {
-                               int ret;
-                               string_order.Add (s);
-                               ret = curpos;
-                               hash.Add (s, curpos);
-                               curpos += size + 1; // null terminator
-                               return ret;
+                       // serialize the strings in Hashtable.
+                       public string GetStrings ()
+                       {
+                               Console.WriteLine ("Total string data size: {0}", curpos);
+                               if (curpos > UInt16.MaxValue)
+                                       throw new Exception ("need to increase idx size in culture-info.h");
+                               StringBuilder ret = new StringBuilder ();
+                               // the null entry
+                               ret.Append ("\t\"\\0\"\n");
+                               foreach (string s in string_order) {
+                                       ret.Append ("\t\"");
+                                       ret.Append (s);
+                                       ret.Append ("\\0\"\n");
+                               }
+                               return ret.ToString ();
                        }
 
-                       return hash[s];
+                       public int AddString (string s, int size)
+                       {
+                               if (!hash.ContainsKey (s)) {
+                                       int ret;
+                                       string_order.Add (s);
+                                       ret = curpos;
+                                       hash.Add (s, curpos);
+                                       curpos += size + 1; // null terminator
+                                       return ret;
+                               }
+
+                               return hash[s];
+                       }
                }
 
                protected static StringBuilder AppendNames (StringBuilder builder, IList<string> names)
@@ -78,14 +85,25 @@ namespace Mono.Tools.LocaleBuilder
                                if (i > 0)
                                        builder.Append (", ");
 
-                               builder.Append (EncodeStringIdx (names[i]));
+                               builder.Append (Encode (DateTimeStrings, names[i]));
                        }
                        builder.Append ("}");
 
                        return builder;
                }
 
-               internal static String EncodeStringIdx (string str)
+
+               public static string EncodeStringIdx (string str)
+               {
+                       return Encode (General, str);
+               }
+
+               protected static string EncodePatternStringIdx (string str)
+               {
+                       return Encode (Patterns, str);
+               }
+
+               static string Encode (Mapping mapping, string str)
                {
                        if (str == null)
                                return "0";
@@ -104,11 +122,11 @@ namespace Mono.Tools.LocaleBuilder
                                        in_hex = false;
                                }
                        }
-                       int res = AddString (ret.ToString (), ba.Length);
+                       int res = mapping.AddString (ret.ToString (), ba.Length);
                        return res.ToString ();
                }
 
-               private static bool is_hex (int e)
+               static bool is_hex (int e)
                {
                        return (e >= '0' && e <= '9') || (e >= 'A' && e <= 'F') || (e >= 'a' && e <= 'f');
                }
index 6f07f54588ef0f9e792987f888b468c9ca21c1a4..14186f12383ac2aa595080388af0b197617fab08 100644 (file)
@@ -42,7 +42,7 @@ minimal: locale-builder.exe locale-data
 
 locale-data:
        if ! test -d CLDR/common ; then \
-               curl http://www.unicode.org/Public/cldr/24/core.zip -o core.zip ; \
+               curl http://www.unicode.org/Public/cldr/30.0.2/core.zip -o core.zip ; \
                unzip core.zip -d CLDR ; \
        fi
 
index 793c5f7579df20f29b2f83cbb8d3ab76a9069588..0ccce3ad57e095ad8c8fee3a58c6c0a5c453d76c 100644 (file)
@@ -566,27 +566,29 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0026, new [] { "1257", "500", "0", ";", "10029", "775" } },
                        { 0x0027, new [] { "1257", "500", "0", ";", "10029", "775" } },
                        { 0x0028, new [] { "1251", "20880", "0", ";", "10007", "866" } },
-                       { 0x0029, new [] { "1256", "20420", "1", ";", "10004", "720" } },
+                       { 0x0029, new [] { "1256", "20420", "1", "Ø›", "10004", "720" } },
                        { 0x002a, new [] { "1258", "500", "0", ",", "10000", "1258" } },
                        { 0x002b, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x002c, new [] { "1254", "20905", "0", ";", "10081", "857" } },
-                       { 0x002d, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x002d, new [] { "1252", "500", "0", ";", "2", "850" } },
                        { 0x002e, new [] { "1252", "870", "0", ";", "10000", "850" } },
                        { 0x002f, new [] { "1251", "500", "0", ";", "10007", "866" } },
-                       { 0x0032, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x0034, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x0035, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x0036, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x0030, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0031, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0032, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x0034, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x0035, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x0036, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0037, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0038, new [] { "1252", "20277", "0", ";", "10079", "850" } },
                        { 0x0039, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x003a, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x003a, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x003b, new [] { "1252", "20277", "0", ";", "10000", "850" } },
-                       { 0x003c, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x003c, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x003e, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x003f, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0040, new [] { "1251", "20880", "0", ";", "10007", "866" } },
-                       { 0x0041, new [] { "1252", "500", "0", ",", "10000", "437" } },
+                       { 0x0041, new [] { "1252", "500", "0", ";", "10000", "437" } },
                        { 0x0042, new [] { "1250", "20880", "0", ";", "10029", "852" } },
                        { 0x0043, new [] { "1254", "500", "0", ";", "10029", "857" } },
                        { 0x0044, new [] { "1251", "20880", "0", ";", "10007", "866" } },
@@ -603,34 +605,42 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x004f, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x0050, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x0051, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x0052, new [] { "1252", "20285", "0", ",", "10000", "850" } },
+                       { 0x0052, new [] { "1252", "20285", "0", ";", "10000", "850" } },
                        { 0x0053, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x0054, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0054, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0055, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0056, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0057, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0059, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x005a, new [] { "0", "500", "1", ",", "2", "1" } },
-                       { 0x005b, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x005b, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x005c, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x005d, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x005e, new [] { "0", "500", "0", "á\8d£", "2", "1" } },
+                       { 0x005e, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x005f, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x0061, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x0062, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0063, new [] { "0", "500", "1", ";", "2", "1" } },
-                       { 0x0064, new [] { "1252", "500", "0", ",", "10000", "437" } },
+                       { 0x0064, new [] { "1252", "500", "0", ";", "10000", "437" } },
                        { 0x0065, new [] { "0", "500", "1", "ØŒ", "2", "1" } },
-                       { 0x0068, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x006a, new [] { "1252", "37", "0", ",", "10000", "437" } },
+                       { 0x0067, new [] { "1252", "20297", "0", ";", "10000", "850" } },
+                       { 0x0068, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x006a, new [] { "1252", "37", "0", ";", "10000", "437" } },
                        { 0x006b, new [] { "1252", "20284", "0", ",", "10000", "850" } },
-                       { 0x006c, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x006c, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x006d, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x006e, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x006f, new [] { "1252", "20277", "0", ";", "10000", "850" } },
-                       { 0x0070, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x0078, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0070, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x0072, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0073, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0074, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x0075, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x0077, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0078, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x007a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
                        { 0x007c, new [] { "1252", "37", "0", ",", "10000", "850" } },
                        { 0x007e, new [] { "1252", "20297", "0", ";", "10000", "850" } },
-                       { 0x007f, new [] { "1252", "37", "0", ",", "10000", "437" } },
                        { 0x0080, new [] { "1256", "20420", "1", ",", "10004", "720" } },
                        { 0x0081, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x0082, new [] { "1252", "20297", "0", ";", "10000", "850" } },
@@ -641,7 +651,8 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0087, new [] { "1252", "37", "0", ";", "10000", "437" } },
                        { 0x0088, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x008c, new [] { "1256", "20420", "1", ";", "10004", "720" } },
-                       { 0x0091, new [] { "1252", "20285", "0", ",", "10000", "850" } },
+                       { 0x0091, new [] { "1252", "20285", "0", ";", "10000", "850" } },
+                       { 0x0092, new [] { "1256", "20420", "1", "Ø›", "10004", "720" } },
                        { 0x0401, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x0402, new [] { "1251", "21025", "0", ";", "10007", "866" } },
                        { 0x0403, new [] { "1252", "500", "0", ";", "10000", "850" } },
@@ -681,26 +692,28 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0426, new [] { "1257", "500", "0", ";", "10029", "775" } },
                        { 0x0427, new [] { "1257", "500", "0", ";", "10029", "775" } },
                        { 0x0428, new [] { "1251", "20880", "0", ";", "10007", "866" } },
-                       { 0x0429, new [] { "1256", "20420", "1", ";", "10004", "720" } },
+                       { 0x0429, new [] { "1256", "20420", "1", "Ø›", "10004", "720" } },
                        { 0x042a, new [] { "1258", "500", "0", ",", "10000", "1258" } },
                        { 0x042b, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x042c, new [] { "1254", "20905", "0", ";", "10081", "857" } },
-                       { 0x042d, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x042d, new [] { "1252", "500", "0", ";", "2", "850" } },
                        { 0x042e, new [] { "1252", "870", "0", ";", "10000", "850" } },
                        { 0x042f, new [] { "1251", "500", "0", ";", "10007", "866" } },
-                       { 0x0432, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x0434, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x0435, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x0436, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x0430, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0431, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0432, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x0434, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x0435, new [] { "1252", "500", "0", ";", "10000", "850" } },
+                       { 0x0436, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0437, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0438, new [] { "1252", "20277", "0", ";", "10079", "850" } },
                        { 0x0439, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x043a, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x043a, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x043b, new [] { "1252", "20277", "0", ";", "10000", "850" } },
                        { 0x043e, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x043f, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0440, new [] { "1251", "20880", "0", ";", "10007", "866" } },
-                       { 0x0441, new [] { "1252", "500", "0", ",", "10000", "437" } },
+                       { 0x0441, new [] { "1252", "500", "0", ";", "10000", "437" } },
                        { 0x0442, new [] { "1250", "20880", "0", ";", "10029", "852" } },
                        { 0x0443, new [] { "1254", "500", "0", ";", "10029", "857" } },
                        { 0x0444, new [] { "1251", "20880", "0", ";", "10007", "866" } },
@@ -717,29 +730,36 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x044f, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x0450, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x0451, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x0452, new [] { "1252", "20285", "0", ",", "10000", "850" } },
+                       { 0x0452, new [] { "1252", "20285", "0", ";", "10000", "850" } },
                        { 0x0453, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x0454, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0454, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0455, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0456, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0457, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x045a, new [] { "0", "500", "1", ",", "2", "1" } },
-                       { 0x045b, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x045b, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x045c, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x045d, new [] { "0", "500", "0", ",", "2", "1" } },
-                       { 0x045e, new [] { "0", "500", "0", "á\8d£", "2", "1" } },
+                       { 0x045e, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0461, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x0462, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0463, new [] { "0", "500", "1", ";", "2", "1" } },
-                       { 0x0464, new [] { "1252", "500", "0", ",", "10000", "437" } },
+                       { 0x0464, new [] { "1252", "500", "0", ";", "10000", "437" } },
                        { 0x0465, new [] { "0", "500", "1", "ØŒ", "2", "1" } },
-                       { 0x0468, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x046a, new [] { "1252", "37", "0", ",", "10000", "437" } },
+                       { 0x0468, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x046a, new [] { "1252", "37", "0", ";", "10000", "437" } },
                        { 0x046b, new [] { "1252", "20284", "0", ",", "10000", "850" } },
-                       { 0x046c, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x046c, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x046d, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x046e, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x046f, new [] { "1252", "20277", "0", ";", "10000", "850" } },
-                       { 0x0470, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x0478, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0470, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x0472, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0473, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0474, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x0475, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x0477, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0478, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x047a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
                        { 0x047c, new [] { "1252", "37", "0", ",", "10000", "850" } },
                        { 0x047e, new [] { "1252", "20297", "0", ";", "10000", "850" } },
@@ -753,8 +773,10 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0487, new [] { "1252", "37", "0", ";", "10000", "437" } },
                        { 0x0488, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x048c, new [] { "1256", "20420", "1", ";", "10004", "720" } },
-                       { 0x0491, new [] { "1252", "20285", "0", ",", "10000", "850" } },
+                       { 0x0491, new [] { "1252", "20285", "0", ";", "10000", "850" } },
+                       { 0x0492, new [] { "1256", "20420", "1", "Ø›", "10004", "720" } },
                        { 0x0801, new [] { "1256", "20420", "1", ";", "10004", "720" } },
+                       { 0x0803, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0804, new [] { "936", "500", "0", ",", "10008", "936" } },
                        { 0x0807, new [] { "1252", "20273", "0", ";", "10000", "850" } },
                        { 0x0809, new [] { "1252", "20285", "0", ",", "10000", "850" } },
@@ -764,94 +786,116 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0813, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0814, new [] { "1252", "20277", "0", ";", "10000", "850" } },
                        { 0x0816, new [] { "1252", "500", "0", ";", "10000", "850" } },
-                       { 0x081a, new [] { "1250", "500", "0", ";", "10029", "852" } },
+                       { 0x0818, new [] { "1250", "500", "0", ";", "2", "852" } },
+                       { 0x0819, new [] { "1251", "500", "0", ";", "2", "866" } },
                        { 0x081d, new [] { "1252", "20278", "0", ";", "10000", "850" } },
+                       { 0x0820, new [] { "1256", "500", "1", ";", "2", "720" } },
                        { 0x082c, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x082e, new [] { "1252", "870", "0", ";", "10000", "850" } },
+                       { 0x0832, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x083b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
-                       { 0x083c, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x083c, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x083e, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x0843, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x0845, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0846, new [] { "1256", "20420", "1", ";", "10004", "720" } },
+                       { 0x0849, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0850, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x0859, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x085d, new [] { "1252", "37", "0", ",", "10000", "437" } },
                        { 0x085f, new [] { "1252", "20297", "0", ";", "10000", "850" } },
+                       { 0x0861, new [] { "0", "500", "0", ";", "2", "1" } },
+                       { 0x0867, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x086b, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x0873, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x0c01, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x0c04, new [] { "950", "500", "0", ",", "10002", "950" } },
                        { 0x0c07, new [] { "1252", "20273", "0", ";", "10000", "850" } },
                        { 0x0c09, new [] { "1252", "500", "0", ",", "10000", "850" } },
                        { 0x0c0a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x0c0c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
-                       { 0x0c1a, new [] { "1251", "21025", "0", ";", "10007", "855" } },
                        { 0x0c3b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
+                       { 0x0c50, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x0c6b, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x1000, new [] { "1252", "500", "0", ";", "10000", "850" } },
                        { 0x1001, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x1004, new [] { "936", "500", "0", ",", "10008", "936" } },
                        { 0x1007, new [] { "1252", "20273", "0", ";", "10000", "850" } },
                        { 0x1009, new [] { "1252", "37", "0", ",", "10000", "850" } },
-                       { 0x100a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x100a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x100c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x101a, new [] { "1250", "870", "0", ";", "10082", "852" } },
                        { 0x103b, new [] { "1252", "20277", "0", ";", "10000", "850" } },
+                       { 0x105f, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x1401, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x1404, new [] { "950", "500", "0", ",", "10002", "950" } },
                        { 0x1407, new [] { "1252", "20273", "0", ";", "10000", "850" } },
                        { 0x1409, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x140a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x140a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x140c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x141a, new [] { "1250", "870", "0", ";", "10082", "852" } },
                        { 0x143b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
                        { 0x1801, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x1809, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x180a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x180a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x180c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x181a, new [] { "1250", "870", "0", ";", "10082", "852" } },
                        { 0x183b, new [] { "1252", "20277", "0", ";", "10000", "850" } },
                        { 0x1c01, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x1c09, new [] { "1252", "500", "0", ",", "10000", "437" } },
-                       { 0x1c0a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x1c0a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x1c1a, new [] { "1251", "21025", "0", ";", "10007", "855" } },
                        { 0x1c3b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
                        { 0x2001, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x2009, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x200a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x200a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x200c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x201a, new [] { "1251", "870", "0", ";", "10082", "855" } },
                        { 0x203b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
                        { 0x2401, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x2409, new [] { "1252", "500", "0", ",", "10000", "850" } },
-                       { 0x240a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x240a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x240c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x241a, new [] { "1250", "500", "0", ";", "10029", "852" } },
                        { 0x243b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
                        { 0x2801, new [] { "1256", "20420", "1", ";", "10004", "720" } },
-                       { 0x2809, new [] { "1252", "500", "0", ";", "10000", "850" } },
-                       { 0x280a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x2809, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x280a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x280c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x281a, new [] { "1251", "21025", "0", ";", "10007", "855" } },
                        { 0x2c01, new [] { "1256", "20420", "1", ";", "10004", "720" } },
-                       { 0x2c09, new [] { "1252", "500", "0", ";", "10000", "850" } },
-                       { 0x2c0a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x2c09, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x2c0a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x2c0c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x2c1a, new [] { "1250", "500", "0", ";", "10029", "852" } },
                        { 0x3001, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x3009, new [] { "1252", "500", "0", ",", "10000", "437" } },
-                       { 0x300a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x300a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x300c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x301a, new [] { "1251", "21025", "0", ";", "10007", "855" } },
                        { 0x3401, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x3409, new [] { "1252", "500", "0", ",", "10000", "437" } },
-                       { 0x340a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x340a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x340c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x3801, new [] { "1256", "20420", "1", ";", "10004", "720" } },
-                       { 0x380a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x380a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x380c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x3c01, new [] { "1256", "20420", "1", ";", "10004", "720" } },
-                       { 0x3c0a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x3c09, new [] { "1252", "500", "0", ",", "10000", "850" } },
+                       { 0x3c0a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x3c0c, new [] { "1252", "20297", "0", ";", "10000", "850" } },
                        { 0x4001, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x4009, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x400a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x400a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x4409, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x440a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x440a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x4809, new [] { "1252", "37", "0", ",", "10000", "437" } },
-                       { 0x480a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
-                       { 0x4c0a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
-                       { 0x500a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x480a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x4c0a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x500a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x540a, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x580a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
+                       { 0x5c0a, new [] { "1252", "20284", "0", ";", "10000", "850" } },
                        { 0x641a, new [] { "1251", "870", "0", ";", "10082", "855" } },
                        { 0x681a, new [] { "1250", "870", "0", ";", "10082", "852" } },
                        { 0x6c1a, new [] { "1251", "21025", "0", ";", "10007", "855" } },
@@ -867,6 +911,7 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x7843, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x7850, new [] { "1251", "20880", "0", ";", "10007", "866" } },
                        { 0x785d, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x785f, new [] { "0", "500", "0", ";", "2", "1" } },
                        { 0x7c04, new [] { "950", "500", "0", ",", "10002", "950" } },
                        { 0x7c14, new [] { "1252", "20277", "0", ";", "10000", "850" } },
                        { 0x7c1a, new [] { "1250", "500", "0", ";", "10029", "852" } },
@@ -874,10 +919,16 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x7c2e, new [] { "1252", "870", "0", ";", "10000", "850" } },
                        { 0x7c3b, new [] { "1252", "20278", "0", ";", "10000", "850" } },
                        { 0x7c43, new [] { "1254", "500", "0", ";", "10029", "857" } },
+                       { 0x7c46, new [] { "1256", "20420", "1", ";", "10004", "720" } },
                        { 0x7c50, new [] { "0", "500", "0", ",", "2", "1" } },
+                       { 0x7c59, new [] { "1256", "20420", "1", ";", "10004", "720" } },
+                       { 0x7c5c, new [] { "0", "500", "0", ",", "2", "1" } },
                        { 0x7c5d, new [] { "1252", "37", "0", ",", "10000", "437" } },
                        { 0x7c5f, new [] { "1252", "20297", "0", ";", "10000", "850" } },
-                       { 0x7c68, new [] { "1252", "37", "0", ",", "10000", "437" } },
+                       { 0x7c67, new [] { "1252", "20297", "0", ";", "10000", "850" } },
+                       { 0x7c68, new [] { "1252", "37", "0", ";", "10000", "437" } },
+                       { 0x7c86, new [] { "1252", "20284", "0", ",", "10000", "850" } },
+                       { 0x7c92, new [] { "1256", "20420", "1", "Ø›", "10004", "720" } }
                };
 
                static readonly Dictionary<int, string[]> Numbers = new Dictionary<int, string[]> {
@@ -1357,6 +1408,8 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x042d, "217" },
                        { 0x042e, "94" },
                        { 0x042f, "19618" },
+                       { 0x0430, "209" },
+                       { 0x0431, "209" },
                        { 0x0432, "209" },
                        { 0x0434, "209" },
                        { 0x0435, "209" },
@@ -1389,10 +1442,12 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0452, "242" },
                        { 0x0453, "40" },
                        { 0x0454, "138" },
+                       { 0x0455, "27" },
                        { 0x0456, "217" },
                        { 0x0457, "113" },
                        { 0x045a, "222" },
                        { 0x045b, "42" },
+                       { 0x045c, "244" },
                        { 0x045d, "39" },
                        { 0x045e, "73" },
                        { 0x0461, "178" },
@@ -1408,6 +1463,11 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x046e, "147" },
                        { 0x046f, "93" },
                        { 0x0470, "175" },
+                       { 0x0472, "73" },
+                       { 0x0473, "73" },
+                       { 0x0474, "185" },
+                       { 0x0475, "244" },
+                       { 0x0477, "216" },
                        { 0x0478, "45" },
                        { 0x047a, "46" },
                        { 0x047c, "39" },
@@ -1423,7 +1483,9 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0488, "210" },
                        { 0x048c, "3" },
                        { 0x0491, "242" },
+                       { 0x0492, "121" },
                        { 0x0801, "121" },
+                       { 0x0803, "217" },
                        { 0x0804, "45" },
                        { 0x0807, "223" },
                        { 0x0809, "242" },
@@ -1433,27 +1495,36 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x0813, "21" },
                        { 0x0814, "177" },
                        { 0x0816, "193" },
-                       { 0x081a, "269" },
+                       { 0x0818, "152" },
+                       { 0x0819, "152" },
                        { 0x081d, "77" },
+                       { 0x0820, "113" },
                        { 0x082c, "5" },
                        { 0x082e, "94" },
+                       { 0x0832, "19" },
                        { 0x083b, "221" },
                        { 0x083c, "68" },
                        { 0x083e, "37" },
                        { 0x0843, "247" },
                        { 0x0845, "23" },
-                       { 0x0850, "154" },
+                       { 0x0846, "190" },
+                       { 0x0849, "42" },
+                       { 0x0850, "45" },
+                       { 0x0859, "190" },
                        { 0x085d, "39" },
                        { 0x085f, "4" },
+                       { 0x0861, "113" },
+                       { 0x0867, "210" },
                        { 0x086b, "66" },
+                       { 0x0873, "71" },
                        { 0x0c01, "67" },
                        { 0x0c04, "104" },
                        { 0x0c07, "14" },
                        { 0x0c09, "12" },
                        { 0x0c0a, "217" },
                        { 0x0c0c, "39" },
-                       { 0x0c1a, "269" },
                        { 0x0c3b, "77" },
+                       { 0x0c50, "154" },
                        { 0x0c6b, "187" },
                        { 0x1001, "148" },
                        { 0x1004, "215" },
@@ -1463,6 +1534,7 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x100c, "223" },
                        { 0x101a, "25" },
                        { 0x103b, "177" },
+                       { 0x105f, "159" },
                        { 0x1401, "4" },
                        { 0x1404, "151" },
                        { 0x1407, "145" },
@@ -1485,32 +1557,41 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x2001, "164" },
                        { 0x2009, "124" },
                        { 0x200a, "249" },
+                       { 0x200c, "198" },
                        { 0x201a, "25" },
                        { 0x203b, "77" },
                        { 0x2401, "261" },
-                       { 0x2409, "124" },
+                       { 0x2409, "10039880" },
                        { 0x240a, "51" },
+                       { 0x240c, "44" },
                        { 0x241a, "271" },
                        { 0x243b, "77" },
                        { 0x2801, "222" },
                        { 0x2809, "24" },
                        { 0x280a, "187" },
+                       { 0x280c, "210" },
                        { 0x281a, "271" },
                        { 0x2c01, "126" },
                        { 0x2c09, "225" },
                        { 0x2c0a, "11" },
+                       { 0x2c0c, "49" },
                        { 0x2c1a, "270" },
                        { 0x3001, "139" },
                        { 0x3009, "264" },
                        { 0x300a, "66" },
+                       { 0x300c, "119" },
                        { 0x301a, "270" },
                        { 0x3401, "136" },
                        { 0x3409, "201" },
                        { 0x340a, "46" },
+                       { 0x340c, "157" },
                        { 0x3801, "224" },
                        { 0x380a, "246" },
+                       { 0x380c, "159" },
                        { 0x3c01, "17" },
+                       { 0x3c09, "104" },
                        { 0x3c0a, "185" },
+                       { 0x3c0c, "103" },
                        { 0x4001, "197" },
                        { 0x4009, "113" },
                        { 0x400a, "26" },
@@ -1521,7 +1602,9 @@ namespace Mono.Tools.LocaleBuilder
                        { 0x4c0a, "182" },
                        { 0x500a, "202" },
                        { 0x540a, "244" },
-                       };
+                       { 0x580a, "161832257" },
+                       { 0x5c0a, "56" },
+               };
 
 
                public static void FillValues (int lcid, CultureInfoEntry ci)
index d5e2a6075b182aaba08ab9b516f79f6d3312eff1..700ddbb26a11322a305ff0555132a8c437e90ef1 100644 (file)
@@ -10,7 +10,7 @@
 
        CLDR specificatin can be found at http://www.unicode.org/reports/tr35/
 
-       All content has to me extracted into CLDR folder. The latest version used is 21.
+       All content has to me extracted into CLDR folder. The latest version used is 30.0.2.
 
        There is an extra mono resource included in this directory called lcids.xml for LCIDs. It's
        extracted from National Language Support (NLS) API Reference.
index 6f22bab868152bf5d8794cf5e21757c6f1737f1b..825df53ef91f2207bccf7ddc7c295d541400efb0 100644 (file)
@@ -47,6 +47,8 @@
   <lcid name="eu" id="0x002D" parent="0x007F" iso2="eu" iso3="eus" win="EUQ" />\r
   <lcid name="hsb" id="0x002E" parent="0x007F" iso2="hsb" iso3="hsb" win="HSB" />\r
   <lcid name="mk" id="0x002F" parent="0x007F" iso2="mk" iso3="mkd" win="MKI" />\r
+  <lcid name="st" id="0x0030" parent="0x007F" iso2="st" iso3="sot" win="SOT" />\r
+  <lcid name="ts" id="0x0031" parent="0x007F" iso2="ts" iso3="tso" win="TSO" />\r
   <lcid name="tn" id="0x0032" parent="0x007F" iso2="tn" iso3="tsn" win="TSN" />\r
   <lcid name="xh" id="0x0034" parent="0x007F" iso2="xh" iso3="xho" win="XHO" />\r
   <lcid name="zu" id="0x0035" parent="0x007F" iso2="zu" iso3="zul" win="ZUL" />\r
   <lcid name="tk" id="0x0042" parent="0x007F" iso2="tk" iso3="tuk" win="TUK" />\r
   <lcid name="uz" id="0x0043" parent="0x007F" iso2="uz" iso3="uzb" win="UZB" />\r
   <lcid name="tt" id="0x0044" parent="0x007F" iso2="tt" iso3="tat" win="TTT" />\r
-  <lcid name="bn" id="0x0045" parent="0x007F" iso2="bn" iso3="bng" win="BNG" />\r
+  <lcid name="bn" id="0x0045" parent="0x007F" iso2="bn" iso3="ben" win="BNG" />\r
   <lcid name="pa" id="0x0046" parent="0x007F" iso2="pa" iso3="pan" win="PAN" />\r
   <lcid name="gu" id="0x0047" parent="0x007F" iso2="gu" iso3="guj" win="GUJ" />\r
   <lcid name="or" id="0x0048" parent="0x007F" iso2="or" iso3="ori" win="ORI" />\r
-  <lcid name="ta" id="0x0049" parent="0x007F" iso2="ta" iso3="tam" win="TAM" />\r
+  <lcid name="ta" id="0x0049" parent="0x007F" iso2="ta" iso3="tam" win="TAI" />\r
   <lcid name="te" id="0x004A" parent="0x007F" iso2="te" iso3="tel" win="TEL" />\r
   <lcid name="kn" id="0x004B" parent="0x007F" iso2="kn" iso3="kan" win="KDI" />\r
-  <lcid name="ml" id="0x004C" parent="0x007F" iso2="ml" iso3="mym" win="MYM" />\r
+  <lcid name="ml" id="0x004C" parent="0x007F" iso2="ml" iso3="mal" win="MYM" />\r
   <lcid name="as" id="0x004D" parent="0x007F" iso2="as" iso3="asm" win="ASM" />\r
   <lcid name="mr" id="0x004E" parent="0x007F" iso2="mr" iso3="mar" win="MAR" />\r
   <lcid name="sa" id="0x004F" parent="0x007F" iso2="sa" iso3="san" win="SAN" />\r
   <lcid name="cy" id="0x0052" parent="0x007F" iso2="cy" iso3="cym" win="CYM" />\r
   <lcid name="km" id="0x0053" parent="0x007F" iso2="km" iso3="khm" win="KHM" />\r
   <lcid name="lo" id="0x0054" parent="0x007F" iso2="lo" iso3="lao" win="LAO" />\r
+  <lcid name="my" id="0x0055" parent="0x007F" iso2="my" iso3="mya" win="MYA" />\r
   <lcid name="gl" id="0x0056" parent="0x007F" iso2="gl" iso3="glg" win="GLC" />\r
   <lcid name="kok" id="0x0057" parent="0x007F" iso2="kok" iso3="kok" win="KNK" />\r
+  <lcid name="sd" id="0x0059" parent="0x007F" iso2="sd" iso3="sin" win="SIP" />\r
   <lcid name="syr" id="0x005A" parent="0x007F" iso2="syr" iso3="syr" win="SYR" />\r
   <lcid name="si" id="0x005B" parent="0x007F" iso2="si" iso3="sin" win="SIN" />\r
+  <lcid name="chr" id="0x005C" parent="0x007F" iso2="chr" iso3="chr" win="CRE" />\r
   <lcid name="iu" id="0x005D" parent="0x007F" iso2="iu" iso3="iku" win="IUK" />\r
   <lcid name="am" id="0x005E" parent="0x007F" iso2="am" iso3="amh" win="AMH" />\r
-  <lcid name="tzm" id="0x005F" parent="0x007F" iso2="tzm" iso3="tzm" win="TZM" />\r
+  <lcid name="tzm" id="0x005F" parent="0x007F" iso2="tzm" iso3="tzm" win="TZA" />\r
   <lcid name="ne" id="0x0061" parent="0x007F" iso2="ne" iso3="nep" win="NEP" />\r
   <lcid name="fy" id="0x0062" parent="0x007F" iso2="fy" iso3="fry" win="FYN" />\r
   <lcid name="ps" id="0x0063" parent="0x007F" iso2="ps" iso3="pus" win="PAS" />\r
   <lcid name="fil" id="0x0064" parent="0x007F" iso2="fil" iso3="fil" win="FPO" />\r
   <lcid name="dv" id="0x0065" parent="0x007F" iso2="dv" iso3="div" win="DIV" />\r
+  <lcid name="ff" id="0x0067" parent="0x007F" iso2="ff" iso3="ful" win="FUL" />\r
   <lcid name="ha" id="0x0068" parent="0x007F" iso2="ha" iso3="hau" win="HAU" />\r
   <lcid name="yo" id="0x006A" parent="0x007F" iso2="yo" iso3="yor" win="YOR" />\r
   <lcid name="quz" id="0x006B" parent="0x007F" iso2="quz" iso3="qub" win="QUB" />\r
   <lcid name="lb" id="0x006E" parent="0x007F" iso2="lb" iso3="ltz" win="LBX" />\r
   <lcid name="kl" id="0x006F" parent="0x007F" iso2="kl" iso3="kal" win="KAL" />\r
   <lcid name="ig" id="0x0070" parent="0x007F" iso2="ig" iso3="ibo" win="IBO" />\r
+  <lcid name="om" id="0x0072" parent="0x007F" iso2="om" iso3="orm" win="ORM" />\r
+  <lcid name="ti" id="0x0073" parent="0x007F" iso2="ti" iso3="tir" win="TIR" />\r
+  <lcid name="gn" id="0x0074" parent="0x007F" iso2="gn" iso3="grn" win="GRN" />\r
+  <lcid name="haw" id="0x0075" parent="0x007F" iso2="haw" iso3="haw" win="HAW" />\r
+  <lcid name="so" id="0x0077" parent="0x007F" iso2="so" iso3="som" win="SOM" />\r
   <lcid name="ii" id="0x0078" parent="0x007F" iso2="ii" iso3="iii" win="III" />\r
   <lcid name="arn" id="0x007A" parent="0x007F" iso2="arn" iso3="arn" win="MPD" />\r
   <lcid name="moh" id="0x007C" parent="0x007F" iso2="moh" iso3="moh" win="MWK" />\r
   <lcid name="co" id="0x0083" parent="0x007F" iso2="co" iso3="cos" win="COS" />\r
   <lcid name="gsw" id="0x0084" parent="0x007F" iso2="gsw" iso3="gsw" win="GSW" />\r
   <lcid name="sah" id="0x0085" parent="0x007F" iso2="sah" iso3="sah" win="SAH" />\r
-  <lcid name="qut" id="0x0086" parent="0x007F" iso2="qut" iso3="qut" win="QUT" />\r
+  <lcid name="quc" id="0x0086" parent="0x007F" iso2="quc" iso3="quc" win="QUT" />\r
   <lcid name="rw" id="0x0087" parent="0x007F" iso2="rw" iso3="kin" win="KIN" />\r
   <lcid name="wo" id="0x0088" parent="0x007F" iso2="wo" iso3="wol" win="WOL" />\r
   <lcid name="prs" id="0x008C" parent="0x007F" iso2="prs" iso3="prs" win="PRS" />\r
   <lcid name="gd" id="0x0091" parent="0x007F" iso2="gd" iso3="gla" win="GLA" />\r
+  <lcid name="ku" id="0x0092" parent="0x007F" iso2="ku" iso3="kur" win="KUR" />\r
   <lcid name="ar_SA" id="0x0401" parent="0x0001" iso2="ar" iso3="ara" win="ARA" />\r
   <lcid name="bg_BG" id="0x0402" parent="0x0002" iso2="bg" iso3="bul" win="BGR" />\r
   <lcid name="ca_ES" id="0x0403" parent="0x0003" iso2="ca" iso3="cat" win="CAT" />\r
   <lcid name="eu_ES" id="0x042D" parent="0x002D" iso2="eu" iso3="eus" win="EUQ" />\r
   <lcid name="hsb_DE" id="0x042E" parent="0x002E" iso2="hsb" iso3="hsb" win="HSB" />\r
   <lcid name="mk_MK" id="0x042F" parent="0x002F" iso2="mk" iso3="mkd" win="MKI" />\r
+  <lcid name="st_ZA" id="0x0430" parent="0x0030" iso2="st" iso3="sot" win="SOT" />\r
+  <lcid name="ts_ZA" id="0x0431" parent="0x0031" iso2="ts" iso3="tso" win="TSO" />\r
   <lcid name="tn_ZA" id="0x0432" parent="0x0032" iso2="tn" iso3="tsn" win="TSN" />\r
   <lcid name="xh_ZA" id="0x0434" parent="0x0034" iso2="xh" iso3="xho" win="XHO" />\r
   <lcid name="zu_ZA" id="0x0435" parent="0x0035" iso2="zu" iso3="zul" win="ZUL" />\r
   <lcid name="tk_TM" id="0x0442" parent="0x0042" iso2="tk" iso3="tuk" win="TUK" />\r
   <lcid name="uz_Latn_UZ" id="0x0443" parent="0x7C43" iso2="uz" iso3="uzb" win="UZB" />\r
   <lcid name="tt_RU" id="0x0444" parent="0x0044" iso2="tt" iso3="tat" win="TTT" />\r
-  <lcid name="bn_IN" id="0x0445" parent="0x0045" iso2="bn" iso3="bng" win="BNG" />\r
+  <lcid name="bn_IN" id="0x0445" parent="0x0045" iso2="bn" iso3="ben" win="BNG" />\r
   <lcid name="pa_IN" id="0x0446" parent="0x0046" iso2="pa" iso3="pan" win="PAN" />\r
   <lcid name="gu_IN" id="0x0447" parent="0x0047" iso2="gu" iso3="guj" win="GUJ" />\r
   <lcid name="or_IN" id="0x0448" parent="0x0048" iso2="or" iso3="ori" win="ORI" />\r
-  <lcid name="ta_IN" id="0x0449" parent="0x0049" iso2="ta" iso3="tam" win="TAM" />\r
+  <lcid name="ta_IN" id="0x0449" parent="0x0049" iso2="ta" iso3="tam" win="TAI" />\r
   <lcid name="te_IN" id="0x044A" parent="0x004A" iso2="te" iso3="tel" win="TEL" />\r
   <lcid name="kn_IN" id="0x044B" parent="0x004B" iso2="kn" iso3="kan" win="KDI" />\r
-  <lcid name="ml_IN" id="0x044C" parent="0x004C" iso2="ml" iso3="mym" win="MYM" />\r
+  <lcid name="ml_IN" id="0x044C" parent="0x004C" iso2="ml" iso3="mal" win="MYM" />\r
   <lcid name="as_IN" id="0x044D" parent="0x004D" iso2="as" iso3="asm" win="ASM" />\r
   <lcid name="mr_IN" id="0x044E" parent="0x004E" iso2="mr" iso3="mar" win="MAR" />\r
   <lcid name="sa_IN" id="0x044F" parent="0x004F" iso2="sa" iso3="san" win="SAN" />\r
   <lcid name="cy_GB" id="0x0452" parent="0x0052" iso2="cy" iso3="cym" win="CYM" />\r
   <lcid name="km_KH" id="0x0453" parent="0x0053" iso2="km" iso3="khm" win="KHM" />\r
   <lcid name="lo_LA" id="0x0454" parent="0x0054" iso2="lo" iso3="lao" win="LAO" />\r
+  <lcid name="my_MM" id="0x0455" parent="0x0055" iso2="my" iso3="mya" win="MYA" />\r
   <lcid name="gl_ES" id="0x0456" parent="0x0056" iso2="gl" iso3="glg" win="GLC" />\r
   <lcid name="kok_IN" id="0x0457" parent="0x0057" iso2="kok" iso3="kok" win="KNK" />\r
   <lcid name="syr_SY" id="0x045A" parent="0x005A" iso2="syr" iso3="syr" win="SYR" />\r
   <lcid name="si_LK" id="0x045B" parent="0x005B" iso2="si" iso3="sin" win="SIN" />\r
+  <lcid name="chr_Cher_US" id="0x045C" parent="0x7C5C" iso2="chr" iso3="chr" win="CRE" />\r
   <lcid name="iu_Cans_CA" id="0x045D" parent="0x785D" iso2="iu" iso3="iku" win="IUS" />\r
   <lcid name="am_ET" id="0x045E" parent="0x005E" iso2="am" iso3="amh" win="AMH" />\r
   <lcid name="ne_NP" id="0x0461" parent="0x0061" iso2="ne" iso3="nep" win="NEP" />\r
   <lcid name="lb_LU" id="0x046E" parent="0x006E" iso2="lb" iso3="ltz" win="LBX" />\r
   <lcid name="kl_GL" id="0x046F" parent="0x006F" iso2="kl" iso3="kal" win="KAL" />\r
   <lcid name="ig_NG" id="0x0470" parent="0x0070" iso2="ig" iso3="ibo" win="IBO" />\r
+  <lcid name="om_ET" id="0x0472" parent="0x0072" iso2="om" iso3="orm" win="ORM" />\r
+  <lcid name="ti_ET" id="0x0473" parent="0x0073" iso2="ti" iso3="tir" win="TIE" />\r
+  <lcid name="gn_PY" id="0x0474" parent="0x0074" iso2="gn" iso3="grn" win="GRN" />\r
+  <lcid name="haw_US" id="0x0475" parent="0x0075" iso2="haw" iso3="haw" win="HAW" />\r
+  <lcid name="so_SO" id="0x0477" parent="0x0077" iso2="so" iso3="som" win="SOM" />\r
   <lcid name="ii_CN" id="0x0478" parent="0x0078" iso2="ii" iso3="iii" win="III" />\r
   <lcid name="arn_CL" id="0x047A" parent="0x007A" iso2="arn" iso3="arn" win="MPD" />\r
   <lcid name="moh_CA" id="0x047C" parent="0x007C" iso2="moh" iso3="moh" win="MWK" />\r
   <lcid name="co_FR" id="0x0483" parent="0x0083" iso2="co" iso3="cos" win="COS" />\r
   <lcid name="gsw_FR" id="0x0484" parent="0x0084" iso2="gsw" iso3="gsw" win="GSW" />\r
   <lcid name="sah_RU" id="0x0485" parent="0x0085" iso2="sah" iso3="sah" win="SAH" />\r
-  <lcid name="qut_GT" id="0x0486" parent="0x0086" iso2="qut" iso3="qut" win="QUT" />\r
+  <lcid name="quc_Latn_GT" id="0x0486" parent="0x7C86" iso2="quc" iso3="quc" win="QUT" />\r
   <lcid name="rw_RW" id="0x0487" parent="0x0087" iso2="rw" iso3="kin" win="KIN" />\r
   <lcid name="wo_SN" id="0x0488" parent="0x0088" iso2="wo" iso3="wol" win="WOL" />\r
   <lcid name="prs_AF" id="0x048C" parent="0x008C" iso2="prs" iso3="prs" win="PRS" />\r
   <lcid name="gd_GB" id="0x0491" parent="0x0091" iso2="gd" iso3="gla" win="GLA" />\r
+  <lcid name="ku_Arab_IQ" id="0x0492" parent="0x7C92" iso2="ku" iso3="kur" win="KUR" />\r
   <lcid name="ar_IQ" id="0x0801" parent="0x0001" iso2="ar" iso3="ara" win="ARI" />\r
+  <lcid name="ca_ES_valencia" id="0x0803" parent="0x0403" iso2="ca" iso3="cat" win="VAL" />\r
   <lcid name="zh_CN" id="0x0804" parent="0x0004" iso2="zh" iso3="zho" win="CHS" />\r
   <lcid name="de_CH" id="0x0807" parent="0x0007" iso2="de" iso3="deu" win="DES" />\r
   <lcid name="en_GB" id="0x0809" parent="0x0009" iso2="en" iso3="eng" win="ENG" />\r
   <lcid name="nl_BE" id="0x0813" parent="0x0013" iso2="nl" iso3="nld" win="NLB" />\r
   <lcid name="nn_NO" id="0x0814" parent="0x7814" iso2="nn" iso3="nno" win="NON" />\r
   <lcid name="pt_PT" id="0x0816" parent="0x0016" iso2="pt" iso3="por" win="PTG" />\r
-  <lcid name="sr_Latn_CS" id="0x081A" parent="0x701A" iso2="sr" iso3="srp" win="SRL" />\r
+  <lcid name="ro_MD" id="0x0818" parent="0x0018" iso2="ro" iso3="ron" win="ROD" />\r
+  <lcid name="ru_MD" id="0x0819" parent="0x0019" iso2="ru" iso3="rus" win="RUM" />\r
   <lcid name="sv_FI" id="0x081D" parent="0x001D" iso2="sv" iso3="swe" win="SVF" />\r
+  <lcid name="ur_IN" id="0x0820" parent="0x0020" iso2="ur" iso3="urd" win="URI" />\r
   <lcid name="az_Cyrl_AZ" id="0x082C" parent="0x742C" iso2="az" iso3="aze" win="AZC" />\r
   <lcid name="dsb_DE" id="0x082E" parent="0x7C2E" iso2="dsb" iso3="dsb" win="DSB" />\r
-  <lcid name="se_SE" id="0x083B" parent="0x003B" iso2="se" iso3="smf" win="SMF" />\r
+  <lcid name="tn_BW" id="0x0832" parent="0x0032" iso2="tn" iso3="tsn" win="TSB" />\r
+  <lcid name="se_SE" id="0x083B" parent="0x003B" iso2="se" iso3="sme" win="SMF" />\r
   <lcid name="ga_IE" id="0x083C" parent="0x003C" iso2="ga" iso3="gle" win="IRE" />\r
   <lcid name="ms_BN" id="0x083E" parent="0x003E" iso2="ms" iso3="msa" win="MSB" />\r
-  <lcid name="uz_Cyrl_UZ" id="0x0843" parent="0x7843" iso2="uz" iso3="uzb" win="UZB" />\r
-  <lcid name="bn_BD" id="0x0845" parent="0x0045" iso2="bn" iso3="bng" win="BNB" />\r
+  <lcid name="uz_Cyrl_UZ" id="0x0843" parent="0x7843" iso2="uz" iso3="uzb" win="UZC" />\r
+  <lcid name="bn_BD" id="0x0845" parent="0x0045" iso2="bn" iso3="ben" win="BNB" />\r
+  <lcid name="pa_Arab_PK" id="0x0846" parent="0x7C46" iso2="pa" iso3="pan" win="PAP" />\r
+  <lcid name="ta_LK" id="0x0849" parent="0x0049" iso2="ta" iso3="tam" win="TAM" />\r
   <lcid name="mn_Mong_CN" id="0x0850" parent="0x7C50" iso2="mn" iso3="mon" win="MNG" />\r
+  <lcid name="sd_Arab_PK" id="0x0859" parent="0x7C59" iso2="sd" iso3="sin" win="SIP" />\r
   <lcid name="iu_Latn_CA" id="0x085D" parent="0x7C5D" iso2="iu" iso3="iku" win="IUK" />\r
-  <lcid name="tzm_Latn_DZ" id="0x085F" parent="0x7C5F" iso2="tzm" iso3="tzm" win="TZM" />\r
+  <lcid name="tzm_Latn_DZ" id="0x085F" parent="0x7C5F" iso2="tzm" iso3="tzm" win="TZA" />\r
+  <lcid name="ne_IN" id="0x0861" parent="0x0061" iso2="ne" iso3="nep" win="NEI" />\r
+  <lcid name="ff_Latn_SN" id="0x0867" parent="0x7C67" iso2="ff" iso3="ful" win="FUL" />\r
   <lcid name="quz_EC" id="0x086B" parent="0x006B" iso2="quz" iso3="que" win="QUE" />\r
+  <lcid name="ti_ER" id="0x0873" parent="0x0073" iso2="ti" iso3="tir" win="TIR" />\r
   <lcid name="ar_EG" id="0x0C01" parent="0x0001" iso2="ar" iso3="ara" win="ARE" />\r
   <lcid name="zh_HK" id="0x0C04" parent="0x7C04" iso2="zh" iso3="zho" win="ZHH" />\r
   <lcid name="de_AT" id="0x0C07" parent="0x0007" iso2="de" iso3="deu" win="DEA" />\r
   <lcid name="en_AU" id="0x0C09" parent="0x0009" iso2="en" iso3="eng" win="ENA" />\r
   <lcid name="es_ES" id="0x0C0A" parent="0x000A" iso2="es" iso3="spa" win="ESN" />\r
   <lcid name="fr_CA" id="0x0C0C" parent="0x000C" iso2="fr" iso3="fra" win="FRC" />\r
-  <lcid name="sr_Cyrl_CS" id="0x0C1A" parent="0x6C1A" iso2="sr" iso3="srp" win="SRB" />\r
-  <lcid name="se_FI" id="0x0C3B" parent="0x003B" iso2="se" iso3="smg" win="SMG" />\r
+  <lcid name="se_FI" id="0x0C3B" parent="0x003B" iso2="se" iso3="sme" win="SMG" />\r
+  <lcid name="mn_Mong_MN" id="0x0C50" parent="0x7C50" iso2="mn" iso3="mon" win="MNM" />\r
   <lcid name="quz_PE" id="0x0C6B" parent="0x006B" iso2="quz" iso3="qup" win="QUP" />\r
+  <lcid name="jv" id="0x1000" parent="0x007F" iso2="jv" iso3="jav" win="JAV" />\r
   <lcid name="ar_LY" id="0x1001" parent="0x0001" iso2="ar" iso3="ara" win="ARL" />\r
   <lcid name="zh_SG" id="0x1004" parent="0x0004" iso2="zh" iso3="zho" win="ZHI" />\r
   <lcid name="de_LU" id="0x1007" parent="0x0007" iso2="de" iso3="deu" win="DEL" />\r
   <lcid name="en_CA" id="0x1009" parent="0x0009" iso2="en" iso3="eng" win="ENC" />\r
   <lcid name="es_GT" id="0x100A" parent="0x000A" iso2="es" iso3="spa" win="ESG" />\r
   <lcid name="fr_CH" id="0x100C" parent="0x000C" iso2="fr" iso3="fra" win="FRS" />\r
-  <lcid name="hr_BA" id="0x101A" parent="0x001A" iso2="hr" iso3="hrb" win="HRB" />\r
+  <lcid name="hr_BA" id="0x101A" parent="0x001A" iso2="hr" iso3="hrv" win="HRB" />\r
   <lcid name="smj_NO" id="0x103B" parent="0x7C3B" iso2="smj" iso3="smj" win="SMJ" />\r
+  <lcid name="tzm_Tfng_MA" id="0x105F" parent="0x785F" iso2="tzm" iso3="tzm" win="TZM" />\r
   <lcid name="ar_DZ" id="0x1401" parent="0x0001" iso2="ar" iso3="ara" win="ARG" />\r
   <lcid name="zh_MO" id="0x1404" parent="0x7C04" iso2="zh" iso3="zho" win="ZHM" />\r
   <lcid name="de_LI" id="0x1407" parent="0x0007" iso2="de" iso3="deu" win="DEC" />\r
   <lcid name="en_NZ" id="0x1409" parent="0x0009" iso2="en" iso3="eng" win="ENZ" />\r
   <lcid name="es_CR" id="0x140A" parent="0x000A" iso2="es" iso3="spa" win="ESC" />\r
   <lcid name="fr_LU" id="0x140C" parent="0x000C" iso2="fr" iso3="fra" win="FRL" />\r
-  <lcid name="bs_Latn_BA" id="0x141A" parent="0x681A" iso2="bs" iso3="bsb" win="BSB" />\r
-  <lcid name="smj_SE" id="0x143B" parent="0x7C3B" iso2="smj" iso3="smk" win="SMK" />\r
+  <lcid name="bs_Latn_BA" id="0x141A" parent="0x681A" iso2="bs" iso3="bos" win="BSB" />\r
+  <lcid name="smj_SE" id="0x143B" parent="0x7C3B" iso2="smj" iso3="smj" win="SMK" />\r
   <lcid name="ar_MA" id="0x1801" parent="0x0001" iso2="ar" iso3="ara" win="ARM" />\r
   <lcid name="en_IE" id="0x1809" parent="0x0009" iso2="en" iso3="eng" win="ENI" />\r
   <lcid name="es_PA" id="0x180A" parent="0x000A" iso2="es" iso3="spa" win="ESA" />\r
   <lcid name="fr_MC" id="0x180C" parent="0x000C" iso2="fr" iso3="fra" win="FRM" />\r
-  <lcid name="sr_Latn_BA" id="0x181A" parent="0x701A" iso2="sr" iso3="srs" win="SRS" />\r
+  <lcid name="sr_Latn_BA" id="0x181A" parent="0x701A" iso2="sr" iso3="srp" win="SRS" />\r
   <lcid name="sma_NO" id="0x183B" parent="0x783B" iso2="sma" iso3="sma" win="SMA" />\r
   <lcid name="ar_TN" id="0x1C01" parent="0x0001" iso2="ar" iso3="ara" win="ART" />\r
   <lcid name="en_ZA" id="0x1C09" parent="0x0009" iso2="en" iso3="eng" win="ENS" />\r
   <lcid name="es_DO" id="0x1C0A" parent="0x000A" iso2="es" iso3="spa" win="ESD" />\r
-  <lcid name="sr_Cyrl_BA" id="0x1C1A" parent="0x6C1A" iso2="sr" iso3="srn" win="SRN" />\r
-  <lcid name="sma_SE" id="0x1C3B" parent="0x783B" iso2="sma" iso3="smb" win="SMB" />\r
+  <lcid name="sr_Cyrl_BA" id="0x1C1A" parent="0x6C1A" iso2="sr" iso3="srp" win="SRN" />\r
+  <lcid name="sma_SE" id="0x1C3B" parent="0x783B" iso2="sma" iso3="sma" win="SMB" />\r
   <lcid name="ar_OM" id="0x2001" parent="0x0001" iso2="ar" iso3="ara" win="ARO" />\r
   <lcid name="en_JM" id="0x2009" parent="0x0009" iso2="en" iso3="eng" win="ENJ" />\r
   <lcid name="es_VE" id="0x200A" parent="0x000A" iso2="es" iso3="spa" win="ESV" />\r
-  <lcid name="bs_Cyrl_BA" id="0x201A" parent="0x641A" iso2="bs" iso3="bsc" win="BSC" />\r
+  <lcid name="fr_RE" id="0x200C" parent="0x000C" iso2="fr" iso3="fra" win="FRR" />\r
+  <lcid name="bs_Cyrl_BA" id="0x201A" parent="0x641A" iso2="bs" iso3="bos" win="BSC" />\r
   <lcid name="sms_FI" id="0x203B" parent="0x743B" iso2="sms" iso3="sms" win="SMS" />\r
   <lcid name="ar_YE" id="0x2401" parent="0x0001" iso2="ar" iso3="ara" win="ARY" />\r
-  <lcid name="en_029" id="0x2409" parent="0x0009" iso2="en" iso3="eng" win="ENB" />\r
   <lcid name="es_CO" id="0x240A" parent="0x000A" iso2="es" iso3="spa" win="ESO" />\r
+  <lcid name="fr_CD" id="0x240C" parent="0x000C" iso2="fr" iso3="fra" win="FRD" />\r
   <lcid name="sr_Latn_RS" id="0x241A" parent="0x701A" iso2="sr" iso3="srp" win="SRM" />\r
   <lcid name="smn_FI" id="0x243B" parent="0x703B" iso2="smn" iso3="smn" win="SMN" />\r
   <lcid name="ar_SY" id="0x2801" parent="0x0001" iso2="ar" iso3="ara" win="ARS" />\r
   <lcid name="en_BZ" id="0x2809" parent="0x0009" iso2="en" iso3="eng" win="ENL" />\r
   <lcid name="es_PE" id="0x280A" parent="0x000A" iso2="es" iso3="spa" win="ESR" />\r
+  <lcid name="fr_SN" id="0x280C" parent="0x000C" iso2="fr" iso3="fra" win="FRN" />\r
   <lcid name="sr_Cyrl_RS" id="0x281A" parent="0x6C1A" iso2="sr" iso3="srp" win="SRO" />\r
   <lcid name="ar_JO" id="0x2C01" parent="0x0001" iso2="ar" iso3="ara" win="ARJ" />\r
   <lcid name="en_TT" id="0x2C09" parent="0x0009" iso2="en" iso3="eng" win="ENT" />\r
-  <lcid name="es_AR" id="0x2C0A" parent="0x000A" iso2="es" iso3="spa" win="ESS"  />\r
+  <lcid name="es_AR" id="0x2C0A" parent="0x000A" iso2="es" iso3="spa" win="ESS" />\r
+  <lcid name="fr_CM" id="0x2C0C" parent="0x000C" iso2="fr" iso3="fra" win="FRE" />\r
   <lcid name="sr_Latn_ME" id="0x2C1A" parent="0x701A" iso2="sr" iso3="srp" win="SRP" />\r
   <lcid name="ar_LB" id="0x3001" parent="0x0001" iso2="ar" iso3="ara" win="ARB" />\r
   <lcid name="en_ZW" id="0x3009" parent="0x0009" iso2="en" iso3="eng" win="ENW" />\r
   <lcid name="es_EC" id="0x300A" parent="0x000A" iso2="es" iso3="spa" win="ESF" />\r
+  <lcid name="fr_CI" id="0x300C" parent="0x000C" iso2="fr" iso3="fra" win="FRI" />\r
   <lcid name="sr_Cyrl_ME" id="0x301A" parent="0x6C1A" iso2="sr" iso3="srp" win="SRQ" />\r
   <lcid name="ar_KW" id="0x3401" parent="0x0001" iso2="ar" iso3="ara" win="ARK" />\r
   <lcid name="en_PH" id="0x3409" parent="0x0009" iso2="en" iso3="eng" win="ENP" />\r
   <lcid name="es_CL" id="0x340A" parent="0x000A" iso2="es" iso3="spa" win="ESL" />\r
+  <lcid name="fr_ML" id="0x340C" parent="0x000C" iso2="fr" iso3="fra" win="FRF" />\r
   <lcid name="ar_AE" id="0x3801" parent="0x0001" iso2="ar" iso3="ara" win="ARU" />\r
   <lcid name="es_UY" id="0x380A" parent="0x000A" iso2="es" iso3="spa" win="ESY" />\r
+  <lcid name="fr_MA" id="0x380C" parent="0x000C" iso2="fr" iso3="fra" win="FRO" />\r
   <lcid name="ar_BH" id="0x3C01" parent="0x0001" iso2="ar" iso3="ara" win="ARH" />\r
+  <lcid name="en_HK" id="0x3C09" parent="0x0009" iso2="en" iso3="eng" win="ENH" />\r
   <lcid name="es_PY" id="0x3C0A" parent="0x000A" iso2="es" iso3="spa" win="ESZ" />\r
+  <lcid name="fr_HT" id="0x3C0C" parent="0x000C" iso2="fr" iso3="fra" win="FRH" />\r
   <lcid name="ar_QA" id="0x4001" parent="0x0001" iso2="ar" iso3="ara" win="ARQ" />\r
   <lcid name="en_IN" id="0x4009" parent="0x0009" iso2="en" iso3="eng" win="ENN" />\r
   <lcid name="es_BO" id="0x400A" parent="0x000A" iso2="es" iso3="spa" win="ESB" />\r
   <lcid name="es_NI" id="0x4C0A" parent="0x000A" iso2="es" iso3="spa" win="ESI" />\r
   <lcid name="es_PR" id="0x500A" parent="0x000A" iso2="es" iso3="spa" win="ESU" />\r
   <lcid name="es_US" id="0x540A" parent="0x000A" iso2="es" iso3="spa" win="EST" />\r
-  <lcid name="bs_Cyrl" id="0x641A" parent="0x781A" iso2="bs" iso3="bsc" win="BSC" />\r
-  <lcid name="bs_Latn" id="0x681A" parent="0x781A" iso2="bs" iso3="bsb" win="BSB" />\r
+  <lcid name="es_CU" id="0x5C0A" parent="0x000A" iso2="es" iso3="spa" win="ESK" />\r
+  <lcid name="bs_Cyrl" id="0x641A" parent="0x781A" iso2="bs" iso3="bos" win="BSC" />\r
+  <lcid name="bs_Latn" id="0x681A" parent="0x781A" iso2="bs" iso3="bos" win="BSB" />\r
   <lcid name="sr_Cyrl" id="0x6C1A" parent="0x7C1A" iso2="sr" iso3="srp" win="SRO" />\r
   <lcid name="sr_Latn" id="0x701A" parent="0x7C1A" iso2="sr" iso3="srp" win="SRM" />\r
-  <lcid name="smn" id="0x703B" parent="0x003B" iso2="smn" iso3="smn" win="SMN"  />\r
+  <lcid name="smn" id="0x703B" parent="0x003B" iso2="smn" iso3="smn" win="SMN" />\r
   <lcid name="az_Cyrl" id="0x742C" parent="0x002C" iso2="az" iso3="aze" win="AZC" />\r
   <lcid name="sms" id="0x743B" parent="0x003B" iso2="sms" iso3="sms" win="SMS" />\r
   <lcid name="zh" id="0x7804" parent="0x007F" iso2="zh" iso3="zho" win="CHS" />\r
   <lcid name="nn" id="0x7814" parent="0x0014" iso2="nn" iso3="nno" win="NON" />\r
-  <lcid name="bs" id="0x781A" parent="0x007F" iso2="bs" iso3="bsb" win="BSB" />\r
+  <lcid name="bs" id="0x781A" parent="0x007F" iso2="bs" iso3="bos" win="BSB" />\r
   <lcid name="az_Latn" id="0x782C" parent="0x002C" iso2="az" iso3="aze" win="AZE" />\r
-  <lcid name="sma" id="0x783B" parent="0x003B" iso2="sma" iso3="smb" win="SMB" />\r
-  <lcid name="uz_Cyrl" id="0x7843" parent="0x0043" iso2="uz" iso3="uzb" win="UZB" />\r
+  <lcid name="sma" id="0x783B" parent="0x003B" iso2="sma" iso3="sma" win="SMB" />\r
+  <lcid name="uz_Cyrl" id="0x7843" parent="0x0043" iso2="uz" iso3="uzb" win="UZC" />\r
   <lcid name="mn_Cyrl" id="0x7850" parent="0x0050" iso2="mn" iso3="mon" win="MNN" />\r
   <lcid name="iu_Cans" id="0x785D" parent="0x005D" iso2="iu" iso3="iku" win="IUS" />\r
+  <lcid name="tzm_Tfng" id="0x785F" parent="0x005F" iso2="tzm" iso3="tzm" win="TZM" />\r
   <lcid name="zh_Hant" id="0x7C04" parent="0x7804" iso2="zh" iso3="zho" win="CHT" />\r
-  <lcid name="zh_CHT" id="0x7C04" parent="0x7C04" iso2="zh" iso3="zho" win="CHT" />\r
+  <lcid name="zh_CHT" id="0x7C04" parent="0x7C04" iso2="zh" iso3="zho" win="CHT" />  \r
   <lcid name="nb" id="0x7C14" parent="0x0014" iso2="nb" iso3="nob" win="NOR" />\r
   <lcid name="sr" id="0x7C1A" parent="0x007F" iso2="sr" iso3="srp" win="SRB" />\r
   <lcid name="tg_Cyrl" id="0x7C28" parent="0x0028" iso2="tg" iso3="tgk" win="TAJ" />\r
   <lcid name="dsb" id="0x7C2E" parent="0x002E" iso2="dsb" iso3="dsb" win="DSB" />\r
-  <lcid name="smj" id="0x7C3B" parent="0x003B" iso2="smj" iso3="smk" win="SMK" />\r
+  <lcid name="smj" id="0x7C3B" parent="0x003B" iso2="smj" iso3="smj" win="SMK" />\r
   <lcid name="uz_Latn" id="0x7C43" parent="0x0043" iso2="uz" iso3="uzb" win="UZB" />\r
+  <lcid name="pa_Arab" id="0x7C46" parent="0x0046" iso2="pa" iso3="pan" win="PAP" />\r
   <lcid name="mn_Mong" id="0x7C50" parent="0x0050" iso2="mn" iso3="mon" win="MNG" />\r
+  <lcid name="sd_Arab" id="0x7C59" parent="0x0059" iso2="sd" iso3="sin" win="SIP" />\r
+  <lcid name="chr_Cher" id="0x7C5C" parent="0x005C" iso2="chr" iso3="chr" win="CRE" />\r
   <lcid name="iu_Latn" id="0x7C5D" parent="0x005D" iso2="iu" iso3="iku" win="IUK" />\r
-  <lcid name="tzm_Latn" id="0x7C5F" parent="0x005F" iso2="tzm" iso3="tzm" win="TZM" />\r
+  <lcid name="tzm_Latn" id="0x7C5F" parent="0x005F" iso2="tzm" iso3="tzm" win="TZA" />\r
+  <lcid name="ff_Latn" id="0x7C67" parent="0x0067" iso2="ff" iso3="ful" win="FUL" />\r
   <lcid name="ha_Latn" id="0x7C68" parent="0x0068" iso2="ha" iso3="hau" win="HAU" />\r
-</lcids>
\ No newline at end of file
+  <lcid name="quc_Latn" id="0x7C86" parent="0x0086" iso2="quc" iso3="quc" win="QUT" />\r
+  <lcid name="ku_Arab" id="0x7C92" parent="0x0092" iso2="ku" iso3="kur" win="KUR" />\r
+</lcids>\r